asfmux: Fix typo in property description
authorrubenrua <rgonzalez@fluendo.com>
Thu, 12 Mar 2020 11:13:10 +0000 (12:13 +0100)
committerrubenrua <rgonzalez@fluendo.com>
Thu, 12 Mar 2020 17:38:11 +0000 (18:38 +0100)
s/milisecs/milliseconds/g

docs/plugins/gst_plugins_cache.json
gst/asfmux/gstasfmux.c
gst/asfmux/gstasfmux.h
sys/msdk/gstmsdkcontext.c

index f1bd410..3a241ad 100644 (file)
                         "writable": true
                     },
                     "preroll": {
-                        "blurb": "The preroll time (milisecs)",
+                        "blurb": "The preroll time (milliseconds)",
                         "construct": true,
                         "construct-only": false,
                         "default": "5000",
index 731600f..dbc87ab 100644 (file)
@@ -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));
index 0fd3bc3..f5ebb07 100644 (file)
@@ -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;
index 7be6cb4..c31f73a 100644 (file)
@@ -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?
    */