[FFmpeg-devel] [PATCH 06/11] libavformat/mxfdec.c: Parse source clip data_definition_ul.
Alexis Ballier
aballier at gentoo.org
Wed Oct 21 18:01:00 CEST 2015
---
libavformat/mxfdec.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index e16c678..1320fad 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -722,6 +722,9 @@ static int mxf_read_source_clip(void *arg, AVIOContext *pb, int tag, int size, U
{
MXFStructuralComponent *source_clip = arg;
switch(tag) {
+ case 0x0201:
+ avio_read(pb, source_clip->data_definition_ul, 16);
+ break;
case 0x0202:
source_clip->duration = avio_rb64(pb);
break;
--
2.6.2
More information about the ffmpeg-devel
mailing list