From 0c7c31d19791ad1ee26baf9787c3a63fb5837f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 25 Apr 2019 21:52:42 +0300 Subject: [PATCH] matroskamux: Fix typo in error message --- gst/matroska/matroska-mux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }