diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2013-08-15 14:12:47 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-04 01:29:23 +0200 |
commit | 32b0942c99d4ea9242b23c0781571a0837779689 (patch) | |
tree | 6746f2d6a995d96d32aeaa1c37083eaa6266aac6 | |
parent | fa6a021121326777e70176047faa0d8de2ea48ac (diff) | |
download | ffmpeg-32b0942c99d4ea9242b23c0781571a0837779689.tar.gz |
riff: add DM4V FourCC
-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 bb2b82d334..03a894ee00 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -86,6 +86,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_MPEG4, MKTAG('G', '2', '6', '4') }, /* 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') }, |