From 6c3f092afc4402d035da75cbc73a5493b377d6a0 Mon Sep 17 00:00:00 2001 From: rubenrua Date: Thu, 12 Mar 2020 12:13:10 +0100 Subject: [PATCH] asfmux: Fix typo in property description s/milisecs/milliseconds/g --- docs/plugins/gst_plugins_cache.json | 2 +- gst/asfmux/gstasfmux.c | 2 +- gst/asfmux/gstasfmux.h | 2 +- sys/msdk/gstmsdkcontext.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/plugins/gst_plugins_cache.json b/docs/plugins/gst_plugins_cache.json index f1bd410..3a241ad 100644 --- a/docs/plugins/gst_plugins_cache.json +++ b/docs/plugins/gst_plugins_cache.json @@ -843,7 +843,7 @@ "writable": true }, "preroll": { - "blurb": "The preroll time (milisecs)", + "blurb": "The preroll time (milliseconds)", "construct": true, "construct-only": false, "default": "5000", diff --git a/gst/asfmux/gstasfmux.c b/gst/asfmux/gstasfmux.c index 731600f..dbc87ab 100644 --- a/gst/asfmux/gstasfmux.c +++ b/gst/asfmux/gstasfmux.c @@ -242,7 +242,7 @@ gst_asf_mux_class_init (GstAsfMuxClass * klass) G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_PREROLL, g_param_spec_uint64 ("preroll", "Preroll", - "The preroll time (milisecs)", + "The preroll time (milliseconds)", 0, G_MAXUINT64, DEFAULT_PREROLL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS)); diff --git a/gst/asfmux/gstasfmux.h b/gst/asfmux/gstasfmux.h index 0fd3bc3..f5ebb07 100644 --- a/gst/asfmux/gstasfmux.h +++ b/gst/asfmux/gstasfmux.h @@ -135,7 +135,7 @@ struct _GstAsfMux /* same as properties, but those are stored here to be * used without modification while muxing a single file */ guint32 packet_size; - guint64 preroll; /* milisecs */ + guint64 preroll; /* milliseconds */ gboolean merge_stream_tags; GstClockTime first_ts; diff --git a/sys/msdk/gstmsdkcontext.c b/sys/msdk/gstmsdkcontext.c index 7be6cb4..c31f73a 100644 --- a/sys/msdk/gstmsdkcontext.c +++ b/sys/msdk/gstmsdkcontext.c @@ -537,7 +537,7 @@ retry: * upstream msdk element sometimes needs to wait for a gst buffer * to be released in downstream. * - * Poll the pool for a maximum of 20 milisecnds. + * Poll the pool for a maximum of 20 millisecond. * * FIXME: Is there any better way to handle this case? */ -- 2.7.4