From 770d94f4b51d80cfc87984ef43bfa9131493b1c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 21 Oct 2015 17:21:09 +0300 Subject: [PATCH] mxfvc3: The wrapping is the 15th byte of the essence container UL, not the 16th In other mappings it is the 16th though. --- gst/mxf/mxfvc3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/mxf/mxfvc3.c b/gst/mxf/mxfvc3.c index bd2ca2937c..2f2e5b074b 100644 --- a/gst/mxf/mxfvc3.c +++ b/gst/mxf/mxfvc3.c @@ -120,7 +120,7 @@ mxf_vc3_get_track_wrapping (const MXFMetadataTimelineTrack * track) parent.descriptor[i]))) continue; - switch (track->parent.descriptor[i]->essence_container.u[15]) { + switch (track->parent.descriptor[i]->essence_container.u[14]) { case 0x01: return MXF_ESSENCE_WRAPPING_FRAME_WRAPPING; break;