appsink: Fix 'steaming' typo in API doc
authorChristophe Fergeau <cfergeau@redhat.com>
Fri, 18 Sep 2015 15:48:49 +0000 (17:48 +0200)
committerChristophe Fergeau <cfergeau@redhat.com>
Fri, 18 Sep 2015 15:48:49 +0000 (17:48 +0200)
There are several occurrences of 'steaming' where 'streaming' was meant.

gst-libs/gst/app/gstappsink.c
gst-libs/gst/app/gstappsink.h

index b31c2f7..9a7fcb4 100644 (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
index 040a4e1..4e84858 100644 (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.