mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
qtmux: refuse incomplete legacy h264 caps
Refuse h264 caps without stream-format and codec_data fields for now, to avoid creating broken files. This might cause some pipelines that worked previously to fail. However, the move from -bad to -good is our only chance to fix this up, so make it strict for now. We can always change it back to be less strict in future. https://bugzilla.gnome.org/show_bug.cgi?id=647919
This commit is contained in:
parent
86d8c8162e
commit
cf953fe923
1 changed files with 2 additions and 0 deletions
|
@ -2991,10 +2991,12 @@ gst_qt_mux_video_sink_set_caps (GstPad * pad, GstCaps * caps)
|
|||
}
|
||||
} else {
|
||||
GST_WARNING_OBJECT (qtmux, "no stream-format field in h264 caps");
|
||||
goto refuse_caps;
|
||||
}
|
||||
|
||||
if (!codec_data) {
|
||||
GST_WARNING_OBJECT (qtmux, "no codec_data in h264 caps");
|
||||
goto refuse_caps;
|
||||
}
|
||||
|
||||
entry.fourcc = FOURCC_avc1;
|
||||
|
|
Loading…
Reference in a new issue