aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorami_stuff <ami_stuff@o2.pl>2011-05-11 22:18:15 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-05-11 22:43:30 +0200
commit4f038fdc23108adeab42bd06dfadf10f91cd80d5 (patch)
tree97346319ca6d2986b8bb92c763538adc0c64020f /libavformat/riff.c
parent99e07a4453732058df90885f80b3db3b4f37cb3c (diff)
downloadffmpeg-4f038fdc23108adeab42bd06dfadf10f91cd80d5.tar.gz
Add "DAVC" FourCC
This FourCC is used by "mpegable AVC" codec and the file encoded with this codec decodes correctly with FFmpeg's H264 decoder. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r--libavformat/riff.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index a6359efb37..833a6bf9e8 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -33,6 +33,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ CODEC_ID_H264, MKTAG('X', '2', '6', '4') },
{ CODEC_ID_H264, MKTAG('x', '2', '6', '4') },
{ CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') },
+ { CODEC_ID_H264, MKTAG('D', 'A', 'V', 'C') },
{ CODEC_ID_H264, MKTAG('V', 'S', 'S', 'H') },
{ CODEC_ID_H263, MKTAG('H', '2', '6', '3') },
{ CODEC_ID_H263, MKTAG('X', '2', '6', '3') },