app: fix headers

This commit is contained in:
Wim Taymans 2011-11-11 17:52:36 +01:00
parent 06a6ab3e32
commit b12aabc9da
2 changed files with 6 additions and 6 deletions

View 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

View 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.
*