From f096f1f9d314d8be82a10d3d0a90114aa0953bcc Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Fri, 18 Sep 2015 17:48:49 +0200 Subject: appsink: Fix 'steaming' typo in API doc There are several occurrences of 'steaming' where 'streaming' was meant. --- gst-libs/gst/app/gstappsink.c | 6 +++--- gst-libs/gst/app/gstappsink.h | 6 +++--- 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. -- cgit v1.2.1