mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
mxfdemux: Also allow picture essence element type 0x05 for VC-3
It's found like this in various files out there even if it does not conform to SMPTE 2019-4.
This commit is contained in:
parent
1181436545
commit
b0470e2c98
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +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] != 0x0C && key->u[14] != 0x0D)) {
|
||||
if (key->u[12] != 0x15 || (key->u[14] != 0x05 && 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