app: fix headers
authorWim Taymans <wim.taymans@collabora.co.uk>
Fri, 11 Nov 2011 16:52:36 +0000 (17:52 +0100)
committerWim Taymans <wim.taymans@collabora.co.uk>
Fri, 11 Nov 2011 16:52:36 +0000 (17:52 +0100)
gst-libs/gst/app/gstappsink.h
gst-libs/gst/app/gstappsrc.h

index fde70a0..4bca82b 100644 (file)
@@ -47,17 +47,17 @@ typedef struct _GstAppSinkPrivate GstAppSinkPrivate;
  * GstAppSinkCallbacks:
  * @eos: Called when the end-of-stream has been reached. This callback
  *       is called from the steaming thread.
- * @new_preroll: Called when a new preroll buffer is available. 
+ * @new_preroll: Called when a new preroll buffer is available.
  *       This callback is called from the steaming thread.
  *       The new preroll buffer can be retrieved with
  *       gst_app_sink_pull_preroll() either from this callback
  *       or from any other thread.
- * @new_buffer: Called when a new buffer is available. 
+ * @new_buffer: Called when a new buffer is available.
  *       This callback is called from the steaming thread.
  *       The new buffer can be retrieved with
  *       gst_app_sink_pull_buffer() either from this callback
  *       or from any other thread.
- * @new_buffer_list: Called when a new bufferlist is available. 
+ * @new_buffer_list: Called when a new bufferlist is available.
  *       This callback is called from the steaming thread.
  *       The new bufferlist can be retrieved with
  *       gst_app_sink_pull_buffer_list() either from this callback
@@ -130,8 +130,8 @@ GstBufferList * gst_app_sink_pull_buffer_list (GstAppSink *appsink);
 
 void            gst_app_sink_set_callbacks    (GstAppSink * appsink,
                                                GstAppSinkCallbacks *callbacks,
-                                              gpointer user_data,
-                                              GDestroyNotify notify);
+                                               gpointer user_data,
+                                               GDestroyNotify notify);
 
 G_END_DECLS
 
index 041cb68..3ccf3b4 100644 (file)
@@ -74,7 +74,7 @@ typedef struct {
  * @GST_APP_STREAM_TYPE_STREAM: No seeking is supported in the stream, such as a
  * live stream.
  * @GST_APP_STREAM_TYPE_SEEKABLE: The stream is seekable but seeking might not
- * be very fast, such as data from a webserver. 
+ * be very fast, such as data from a webserver.
  * @GST_APP_STREAM_TYPE_RANDOM_ACCESS: The stream is seekable and seeking is fast,
  * such as in a local file.
  *