diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2013-08-15 14:12:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-15 15:46:25 +0200 |
commit | 165b65771de966f0d47eb236d2135f1beddfcac1 (patch) | |
tree | 3eab15bbb9cb415e4375b000a14ae30221658091 /libavformat | |
parent | 23606f27f081661c72f87620761d664c0c2c61ec (diff) | |
download | ffmpeg-165b65771de966f0d47eb236d2135f1beddfcac1.tar.gz |
avformat/riff: add DM4V FourCC
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 a1e86eccc5..38d12fd64f 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -84,6 +84,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_MPEG4, MKTAG('G', 'E', 'O', 'X') }, /* flipped video */ { AV_CODEC_ID_MPEG4, MKTAG('H', 'D', 'X', '4') }, + { AV_CODEC_ID_MPEG4, MKTAG('D', 'M', '4', 'V') }, { AV_CODEC_ID_MPEG4, MKTAG('D', 'M', 'K', '2') }, { AV_CODEC_ID_MPEG4, MKTAG('D', 'I', 'G', 'I') }, { AV_CODEC_ID_MPEG4, MKTAG('I', 'N', 'M', 'C') }, |