diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-07-22 10:23:18 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-07-22 10:23:18 +0200 |
commit | 35b33f1a195c392bca374b3a49b7a18811effe56 (patch) | |
tree | 8d6fca083fe3c0dc9ea97590ebb5918d118026e6 /libavformat/mxf.c | |
parent | d373b508b540aa18d13ad97bc330530fa8219421 (diff) | |
download | ffmpeg-35b33f1a195c392bca374b3a49b7a18811effe56.tar.gz |
lavf/mxfdec: Set codec_tag AVup for Avid 1:1 input.
Diffstat (limited to 'libavformat/mxf.c')
-rw-r--r-- | libavformat/mxf.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c index ecfb8a2393..dc712bb29e 100644 --- a/libavformat/mxf.c +++ b/libavformat/mxf.c @@ -69,6 +69,11 @@ const MXFCodecUL ff_mxf_pixel_format_uls[] = { { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, 0, AV_PIX_FMT_NONE }, }; +const MXFCodecUL ff_mxf_codec_tag_uls[] = { + { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0E,0x04,0x03,0x01,0x01,0x03,0x01,0x00 }, 15, MKTAG('A', 'V', 'u', 'p') }, /* Avid 1:1 */ + { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, 0, 0 }, +}; + static const struct { enum AVPixelFormat pix_fmt; const char data[16]; |