From: Sebastian Dröge Date: Mon, 12 Aug 2019 17:26:51 +0000 (+0300) Subject: mxfdemux: Also allow picture essence element type 0x05 for VC-3 X-Git-Tag: 1.16.2~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=898441a2db256b2ceef75a9d34ad8569a4c2e7d1;p=platform%2Fupstream%2Fgst-plugins-bad.git 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. --- diff --git a/gst/mxf/mxfvc3.c b/gst/mxf/mxfvc3.c index 4200d118c..c64ef908d 100644 --- a/gst/mxf/mxfvc3.c +++ b/gst/mxf/mxfvc3.c @@ -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; }