summaryrefslogtreecommitdiff
path: root/sys/ximage/ximagesink.h
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-07-19 11:21:10 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-07-19 11:21:10 +0000
commit4c536aef8c915e6215a4c19f5de41f7585556aee (patch)
tree624df2c43524a52160946bd1993cd33aedef309b /sys/ximage/ximagesink.h
parente8adc3fbf083ec43959305305a659a44596c4751 (diff)
whitespace and style cleanup
Original commit message from CVS: whitespace and style cleanup
Diffstat (limited to 'sys/ximage/ximagesink.h')
-rw-r--r--sys/ximage/ximagesink.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/sys/ximage/ximagesink.h b/sys/ximage/ximagesink.h
index 74e773d1f..81925f8c5 100644
--- a/sys/ximage/ximagesink.h
+++ b/sys/ximage/ximagesink.h
@@ -16,7 +16,7 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
-
+
#ifndef __GST_XIMAGESINK_H__
#define __GST_XIMAGESINK_H__
@@ -61,22 +61,22 @@ typedef struct _GstXImageSinkClass GstXImageSinkClass;
/* Global X Context stuff */
struct _GstXContext {
Display *disp;
-
+
Screen *screen;
gint screen_num;
-
+
Visual *visual;
-
+
Window root;
-
+
gulong white, black;
-
+
gint depth;
gint bpp;
gint endianness;
-
+
gboolean use_xshm;
-
+
GstCaps *caps;
};
@@ -92,13 +92,13 @@ struct _GstXWindow {
struct _GstXImage {
/* Reference to the ximagesink we belong to */
GstXImageSink *ximagesink;
-
+
XImage *ximage;
-
+
#ifdef HAVE_XSHM
XShmSegmentInfo SHMInfo;
#endif /* HAVE_XSHM */
-
+
gint width, height, size;
};
@@ -107,23 +107,23 @@ struct _GstXImageSink {
GstVideoSink videosink;
char *display_name;
-
+
GstXContext *xcontext;
GstXWindow *xwindow;
GstXImage *ximage;
GstXImage *cur_image;
-
+
gdouble framerate;
GMutex *x_lock;
-
+
/* Unused */
gint pixel_width, pixel_height;
-
+
GstClockTime time;
-
+
GMutex *pool_lock;
GSList *image_pool;
-
+
gboolean synchronous;
gboolean sw_scaling_failed;
};