mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
mxfvc3: Also accept clip-wrapped vc-3
We can now handle this fine Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2434>
This commit is contained in:
parent
14d1235288
commit
837d880e2f
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ mxf_vc3_handle_essence_element (const MXFUL * key, GstBuffer * buffer,
|
|||
*outbuf = buffer;
|
||||
|
||||
/* SMPTE 2019-4 6.1 */
|
||||
if (key->u[12] != 0x15 || (key->u[14] != 0x05 && key->u[14] != 0x0C
|
||||
&& key->u[14] != 0x0D)) {
|
||||
if (key->u[12] != 0x15 || (key->u[14] != 0x05 && key->u[14] != 0x06
|
||||
&& key->u[14] != 0x0C && key->u[14] != 0x0D)) {
|
||||
GST_ERROR ("Invalid VC-3 essence element");
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue