summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2019-04-25 21:52:42 +0300
committerTim-Philipp Müller <tim@centricular.com>2019-05-06 23:43:08 +0200
commit2ac1a9c0f006ee97a5939181f36ae50df53e180b (patch)
treec6ed67b1670a0d0c1dda73ea2075bf636428192b
parentc958a91430c8150c22c6d4d2d98c5f7b7676e382 (diff)
downloadgstreamer-plugins-good-2ac1a9c0f006ee97a5939181f36ae50df53e180b.tar.gz
matroskamux: Fix typo in error message
-rw-r--r--gst/matroska/matroska-mux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c
index ea5ad2c72..df85f7a01 100644
--- a/gst/matroska/matroska-mux.c
+++ b/gst/matroska/matroska-mux.c
@@ -983,7 +983,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;
}
@@ -1813,7 +1813,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;
}
@@ -2249,7 +2249,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;
}