mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
matroskamux: Fix typo in error message
This commit is contained in:
parent
4881ea95b0
commit
0c7c31d197
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue