summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2015-09-18 17:48:49 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2015-09-18 17:48:49 +0200
commitf096f1f9d314d8be82a10d3d0a90114aa0953bcc (patch)
tree611b2d6976f3937d6717d20041834dbd2dff4ddc
parent4ed6c9a8d37e94c4236d8fd8ef629427c7f319b6 (diff)
downloadgstreamer-plugins-base-f096f1f9d314d8be82a10d3d0a90114aa0953bcc.tar.gz
appsink: Fix 'steaming' typo in API doc
There are several occurrences of 'steaming' where 'streaming' was meant.
-rw-r--r--gst-libs/gst/app/gstappsink.c6
-rw-r--r--gst-libs/gst/app/gstappsink.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/gst-libs/gst/app/gstappsink.c b/gst-libs/gst/app/gstappsink.c
index b31c2f76a..9a7fcb418 100644
--- a/gst-libs/gst/app/gstappsink.c
+++ b/gst-libs/gst/app/gstappsink.c
@@ -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
diff --git a/gst-libs/gst/app/gstappsink.h b/gst-libs/gst/app/gstappsink.h
index 040a4e1b4..4e8485896 100644
--- a/gst-libs/gst/app/gstappsink.h
+++ b/gst-libs/gst/app/gstappsink.h
@@ -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.