From 4c536aef8c915e6215a4c19f5de41f7585556aee Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 19 Jul 2004 11:21:10 +0000 Subject: [PATCH] whitespace and style cleanup Original commit message from CVS: whitespace and style cleanup --- sys/ximage/ximagesink.c | 11 +++++------ sys/ximage/ximagesink.h | 34 +++++++++++++++++----------------- sys/xvimage/xvimagesink.c | 8 ++++---- sys/xvimage/xvimagesink.h | 42 +++++++++++++++++++++--------------------- 4 files changed, 47 insertions(+), 48 deletions(-) diff --git a/sys/ximage/ximagesink.c b/sys/ximage/ximagesink.c index b5d05f7..0d232d5 100644 --- a/sys/ximage/ximagesink.c +++ b/sys/ximage/ximagesink.c @@ -617,9 +617,9 @@ gst_ximagesink_handle_xevents (GstXImageSink * ximagesink, GstPad * pad) g_mutex_unlock (ximagesink->x_lock); } -/* This function get the X Display and global infos about it. Everything is +/* This function gets the X Display and global info about it. Everything is stored in our object and will be cleaned when the object is disposed. Note - here that caps for supported format are generated without any window or + here that caps for supported format are generated without any window or image creation */ static GstXContext * gst_ximagesink_xcontext_get (GstXImageSink * ximagesink) @@ -837,8 +837,7 @@ gst_ximagesink_sink_link (GstPad * pad, const GstCaps * caps) if ((ximagesink->ximage) && ((GST_VIDEOSINK_WIDTH (ximagesink) != ximagesink->ximage->width) - || (GST_VIDEOSINK_HEIGHT (ximagesink) != - ximagesink->ximage->height))) { + || (GST_VIDEOSINK_HEIGHT (ximagesink) != ximagesink->ximage->height))) { /* We renew our ximage only if size changed */ gst_ximagesink_ximage_destroy (ximagesink, ximagesink->ximage); @@ -1079,7 +1078,7 @@ gst_ximagesink_navigation_send_event (GstNavigation * navigation, event = gst_event_new (GST_EVENT_NAVIGATION); event->event_data.structure.structure = structure; - /* We are not converting the pointer coordinates as there's no hardware + /* We are not converting the pointer coordinates as there's no hardware scaling done here. The only possible scaling is done by videoscale and videoscale will have to catch those events and tranform the coordinates to match the applied scaling. So here we just add the offset if the image @@ -1170,7 +1169,7 @@ gst_ximagesink_set_xwindow_id (GstXOverlay * overlay, XID xwindow_id) xwindow->gc = XCreateGC (ximagesink->xcontext->disp, xwindow->win, 0, NULL); g_mutex_unlock (ximagesink->x_lock); - /* If that new window geometry differs from our one we try to + /* If that new window geometry differs from our one we try to renegotiate caps */ if (gst_pad_is_negotiated (GST_VIDEOSINK_PAD (ximagesink)) && (xwindow->width != GST_VIDEOSINK_WIDTH (ximagesink) || diff --git a/sys/ximage/ximagesink.h b/sys/ximage/ximagesink.h index 74e773d..81925f8 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; }; diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c index 7b16cd5..af4f7be 100644 --- a/sys/xvimage/xvimagesink.c +++ b/sys/xvimage/xvimagesink.c @@ -629,7 +629,7 @@ gst_xvimagesink_handle_xevents (GstXvImageSink * xvimagesink, GstPad * pad) /* This function generates a caps with all supported format by the first Xv grabable port we find. We store each one of the supported formats in a - format list and append the format to a newly created caps that we return + format list and append the format to a newly created caps that we return If this function does not return NULL because of an error, it also grabs the port via XvGrabPort */ static GstCaps * @@ -732,7 +732,7 @@ gst_xvimagesink_get_xv_support (GstXvImageSink * xvimagesink, "height", GST_TYPE_INT_RANGE, 1, G_MAXINT, "framerate", GST_TYPE_DOUBLE_RANGE, 0.0, G_MAXDOUBLE, NULL); - /* For RGB caps we store them and the image + /* For RGB caps we store them and the image format so that we can get back the format when sinkconnect will give us a caps without format property */ @@ -780,9 +780,9 @@ gst_xvimagesink_get_xv_support (GstXvImageSink * xvimagesink, return caps; } -/* This function get the X Display and global infos about it. Everything is +/* This function gets the X Display and global info about it. Everything is stored in our object and will be cleaned when the object is disposed. Note - here that caps for supported format are generated without any window or + here that caps for supported format are generated without any window or image creation */ static GstXContext * gst_xvimagesink_xcontext_get (GstXvImageSink * xvimagesink) diff --git a/sys/xvimage/xvimagesink.h b/sys/xvimage/xvimagesink.h index b3f382e..0935762 100644 --- a/sys/xvimage/xvimagesink.h +++ b/sys/xvimage/xvimagesink.h @@ -16,7 +16,7 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ - + #ifndef __GST_XVIMAGESINK_H__ #define __GST_XVIMAGESINK_H__ @@ -58,35 +58,35 @@ typedef struct _GstXContext GstXContext; typedef struct _GstXWindow GstXWindow; typedef struct _GstXvImage GstXvImage; typedef struct _GstXvImageFormat GstXvImageFormat; - + typedef struct _GstXvImageSink GstXvImageSink; typedef struct _GstXvImageSinkClass GstXvImageSinkClass; /* 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; - + XvPortID xv_port_id; gint im_format; - + GList *formats_list; GList *channels_list; - + GstCaps *caps; }; @@ -108,42 +108,42 @@ struct _GstXvImageFormat { struct _GstXvImage { /* Reference to the xvimagesink we belong to */ GstXvImageSink *xvimagesink; - + XvImage *xvimage; - + #ifdef HAVE_XSHM XShmSegmentInfo SHMInfo; #endif /* HAVE_XSHM */ - + gint width, height, size; }; struct _GstXvImageSink { /* Our element stuff */ GstVideoSink videosink; - + char *display_name; - + GstXContext *xcontext; GstXWindow *xwindow; GstXvImage *xvimage; GstXvImage *cur_image; - + gdouble framerate; - + gint brightness; gint contrast; gint hue; gint saturation; gboolean cb_changed; - + GMutex *x_lock; - + /* Unused */ gint pixel_width, pixel_height; GstClockTime time; - + GMutex *pool_lock; GSList *image_pool; -- 2.7.4