diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-01-17 14:12:44 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-01-17 21:41:18 +0100 |
commit | 80ac87c13dc8c6c063e26a464c5c542357c0583f (patch) | |
tree | e94ff97860d81f41341e5283cbb60631bbed47a9 /libavformat | |
parent | 43e0e0c4e56d754988f6d2d7eec1c302cee5d5ec (diff) | |
download | ffmpeg-80ac87c13dc8c6c063e26a464c5c542357c0583f.tar.gz |
lavc: support ZenoXVID custom tag
Looks like this kind of samples are produced by certain Russian
equipment.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 95c079e561..d24231a50b 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -55,6 +55,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_MPEG4, MKTAG('M', 'P', '4', 'S') }, { AV_CODEC_ID_MPEG4, MKTAG('M', '4', 'S', '2') }, { AV_CODEC_ID_MPEG4, MKTAG( 4 , 0 , 0 , 0 ) }, /* some broken avi use this */ + { AV_CODEC_ID_MPEG4, MKTAG('Z', 'M', 'P', '4') }, /* some broken avi use this */ { AV_CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', '1') }, { AV_CODEC_ID_MPEG4, MKTAG('B', 'L', 'Z', '0') }, { AV_CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') }, |