lavf/mxfdec: Set codec_tag AVup for Avid 1:1 input.

This commit is contained in:
Carl Eugen Hoyos
2015-07-22 10:23:18 +02:00
parent d373b508b5
commit 35b33f1a19
3 changed files with 10 additions and 0 deletions

View File

@@ -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];