From b3504a0192d47766d5c1d4a29594c03275a24ed3 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Tue, 27 Jul 2021 12:13:43 +0200 Subject: mxf: Handle D10 "picture only" variant Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/80 Part-of: --- gst/mxf/mxfd10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/mxf') diff --git a/gst/mxf/mxfd10.c b/gst/mxf/mxfd10.c index 21401cf52..66c071372 100644 --- a/gst/mxf/mxfd10.c +++ b/gst/mxf/mxfd10.c @@ -64,7 +64,7 @@ mxf_is_d10_essence_track (const MXFMetadataTimelineTrack * track) if (mxf_is_generic_container_essence_container_label (key) && key->u[12] == 0x02 && key->u[13] == 0x01 && (key->u[14] >= 0x01 && key->u[14] <= 0x06) && - (key->u[15] == 0x01 || key->u[15] == 0x02)) + (key->u[15] == 0x01 || key->u[15] == 0x02 || key->u[15] == 0x7f)) return TRUE; } -- cgit v1.2.1