mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 04:52:28 +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/2640>
This commit is contained in:
parent
2746ded2e1
commit
c77e8c1407
1 changed files with 4 additions and 0 deletions
|
@ -1001,6 +1001,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