appsink: Fix 'steaming' typo in API doc

There are several occurrences of 'steaming' where 'streaming' was meant.
This commit is contained in:
Christophe Fergeau 2015-09-18 17:48:49 +02:00
parent 4ed6c9a8d3
commit f096f1f9d3
2 changed files with 6 additions and 6 deletions

View file

@ -215,7 +215,7 @@ gst_app_sink_class_init (GstAppSinkClass * klass)
* @appsink: the appsink element that emitted the signal
*
* Signal that the end-of-stream has been reached. This signal is emitted from
* the steaming thread.
* the streaming thread.
*/
gst_app_sink_signals[SIGNAL_EOS] =
g_signal_new ("eos", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
@ -227,7 +227,7 @@ gst_app_sink_class_init (GstAppSinkClass * klass)
*
* Signal that a new preroll sample is available.
*
* This signal is emitted from the steaming thread and only when the
* This signal is emitted from the streaming thread and only when the
* "emit-signals" property is %TRUE.
*
* The new preroll sample can be retrieved with the "pull-preroll" action
@ -248,7 +248,7 @@ gst_app_sink_class_init (GstAppSinkClass * klass)
*
* Signal that a new sample is available.
*
* This signal is emitted from the steaming thread and only when the
* This signal is emitted from the streaming thread and only when the
* "emit-signals" property is %TRUE.
*
* The new sample can be retrieved with the "pull-sample" action

View file

@ -47,14 +47,14 @@ typedef struct _GstAppSinkPrivate GstAppSinkPrivate;
/**
* GstAppSinkCallbacks: (skip)
* @eos: Called when the end-of-stream has been reached. This callback
* is called from the steaming thread.
* is called from the streaming thread.
* @new_preroll: Called when a new preroll sample is available.
* This callback is called from the steaming thread.
* This callback is called from the streaming thread.
* The new preroll sample can be retrieved with
* gst_app_sink_pull_preroll() either from this callback
* or from any other thread.
* @new_sample: Called when a new sample is available.
* This callback is called from the steaming thread.
* This callback is called from the streaming thread.
* The new sample can be retrieved with
* gst_app_sink_pull_sample() either from this callback
* or from any other thread.