appsink: Fix 'steaming' typo in API doc
There are several occurrences of 'steaming' where 'streaming' was meant.
This commit is contained in:
parent
4ed6c9a8d3
commit
f096f1f9d3
@ -215,7 +215,7 @@ gst_app_sink_class_init (GstAppSinkClass * klass)
|
|||||||
* @appsink: the appsink element that emitted the signal
|
* @appsink: the appsink element that emitted the signal
|
||||||
*
|
*
|
||||||
* Signal that the end-of-stream has been reached. This signal is emitted from
|
* 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] =
|
gst_app_sink_signals[SIGNAL_EOS] =
|
||||||
g_signal_new ("eos", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
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.
|
* 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.
|
* "emit-signals" property is %TRUE.
|
||||||
*
|
*
|
||||||
* The new preroll sample can be retrieved with the "pull-preroll" action
|
* 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.
|
* 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.
|
* "emit-signals" property is %TRUE.
|
||||||
*
|
*
|
||||||
* The new sample can be retrieved with the "pull-sample" action
|
* The new sample can be retrieved with the "pull-sample" action
|
||||||
|
@ -47,14 +47,14 @@ typedef struct _GstAppSinkPrivate GstAppSinkPrivate;
|
|||||||
/**
|
/**
|
||||||
* GstAppSinkCallbacks: (skip)
|
* GstAppSinkCallbacks: (skip)
|
||||||
* @eos: Called when the end-of-stream has been reached. This callback
|
* @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.
|
* @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
|
* The new preroll sample can be retrieved with
|
||||||
* gst_app_sink_pull_preroll() either from this callback
|
* gst_app_sink_pull_preroll() either from this callback
|
||||||
* or from any other thread.
|
* or from any other thread.
|
||||||
* @new_sample: Called when a new sample is available.
|
* @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
|
* The new sample can be retrieved with
|
||||||
* gst_app_sink_pull_sample() either from this callback
|
* gst_app_sink_pull_sample() either from this callback
|
||||||
* or from any other thread.
|
* or from any other thread.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user