diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c index c8f58f7a96..e8ab7bbf38 100644 --- a/gst/matroska/matroska-mux.c +++ b/gst/matroska/matroska-mux.c @@ -959,7 +959,7 @@ gst_matroska_mux_video_pad_setcaps (GstPad * pad, GstCaps * caps) if (mux->state >= GST_MATROSKA_MUX_STATE_HEADER && !gst_caps_is_equal (caps, old_caps)) { GST_ELEMENT_ERROR (mux, STREAM, MUX, (NULL), - ("Caps changed are not supported by Matroska")); + ("Caps changes are not supported by Matroska")); gst_caps_unref (old_caps); goto refuse_caps; } @@ -1800,7 +1800,7 @@ gst_matroska_mux_audio_pad_setcaps (GstPad * pad, GstCaps * caps) if (mux->state >= GST_MATROSKA_MUX_STATE_HEADER && !gst_caps_is_equal (caps, old_caps)) { GST_ELEMENT_ERROR (mux, STREAM, MUX, (NULL), - ("Caps changed are not supported by Matroska")); + ("Caps changes are not supported by Matroska")); gst_caps_unref (old_caps); goto refuse_caps; } @@ -2236,7 +2236,7 @@ gst_matroska_mux_subtitle_pad_setcaps (GstPad * pad, GstCaps * caps) if (mux->state >= GST_MATROSKA_MUX_STATE_HEADER && !gst_caps_is_equal (caps, old_caps)) { GST_ELEMENT_ERROR (mux, STREAM, MUX, (NULL), - ("Caps changed are not supported by Matroska")); + ("Caps changes are not supported by Matroska")); gst_caps_unref (old_caps); goto refuse_caps; }