summaryrefslogtreecommitdiff
path: root/gst/matroska/matroska-mux.c
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2019-04-25 21:52:42 +0300
committerSebastian Dröge <sebastian@centricular.com>2019-04-25 21:52:42 +0300
commit0c7c31d19791ad1ee26baf9787c3a63fb5837f99 (patch)
tree9623a1458bc112bb8f6eeca99fd51f13c4fb00b1 /gst/matroska/matroska-mux.c
parent4881ea95b0cf531e0213bc5012066197be04fe28 (diff)
matroskamux: Fix typo in error message
Diffstat (limited to 'gst/matroska/matroska-mux.c')
-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 c8f58f7a9..e8ab7bbf3 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;
}