mp4mux: fix spelling
authorTristan Matthews <tmatth@videolan.org>
Tue, 19 Apr 2022 22:40:31 +0000 (18:40 -0400)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Fri, 22 Apr 2022 14:07:57 +0000 (14:07 +0000)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2241>

subprojects/gst-plugins-good/docs/gst_plugins_cache.json
subprojects/gst-plugins-good/gst/isomp4/gstqtmux.c

index 3797c8d..83f6ee1 100644 (file)
                         "writable": true
                     },
                     "fragment-mode": {
-                        "blurb": "How to to write fragments to the file.  Only used when 'fragment-duration' is greather than 0",
+                        "blurb": "How to to write fragments to the file.  Only used when 'fragment-duration' is greater than 0",
                         "conditionally-available": false,
                         "construct": false,
                         "construct-only": false,
index 74eaf5e..9e9eab5 100644 (file)
@@ -605,9 +605,9 @@ gst_qt_mux_class_init (GstQTMuxClass * klass)
    *
    * Currently, two options exist:
    * - "dash-or-mss": for the original fragmented mode that supports dash or
-   *   mocrosoft smoothstreaming with a single input stream
+   *   microsoft smoothstreaming with a single input stream
    * - "first-moov-then-finalise" is a fragmented mode that will start with a
-   *   self-contained 'moov' atom fo the first fragment, then produce fragments.
+   *   self-contained 'moov' atom for the first fragment, then produce fragments.
    *   When the file is finalised, the initial 'moov' is invalidated and a
    *   new 'moov' is written covering the entire file.
    *
@@ -616,7 +616,7 @@ gst_qt_mux_class_init (GstQTMuxClass * klass)
   g_object_class_install_property (gobject_class, PROP_FRAGMENT_MODE,
       g_param_spec_enum ("fragment-mode", "Fragment Mode",
           "How to to write fragments to the file.  Only used when "
-          "\'fragment-duration\' is greather than 0",
+          "\'fragment-duration\' is greater than 0",
           GST_TYPE_QT_MUX_FRAGMENT_MODE, DEFAULT_FRAGMENT_MODE,
           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));