mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
matroskamux: allow width+height caps changes for VP8/9
For VP8 and VP9, width+height changes are signalled inband. Refs https://github.com/Kurento/bugtracker/issues/535 and https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/1047/diffs?commit Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1657>
This commit is contained in:
parent
c6ba57eb8e
commit
9d0d001d19
1 changed files with 4 additions and 0 deletions
|
@ -1011,6 +1011,10 @@ check_field (GQuark field_id, const GValue * value, gpointer user_data)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
else if (field_id == g_quark_from_static_string ("profile"))
|
else if (field_id == g_quark_from_static_string ("profile"))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
else if (field_id == g_quark_from_static_string ("width"))
|
||||||
|
return FALSE;
|
||||||
|
else if (field_id == g_quark_from_static_string ("height"))
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This fields aren't used and are not retained into the bitstream so we can
|
/* This fields aren't used and are not retained into the bitstream so we can
|
||||||
|
|
Loading…
Reference in a new issue