From: ami_stuff Date: Wed, 11 May 2011 20:18:15 +0000 (+0200) Subject: riff: Add DAVC fourcc. X-Git-Tag: v0.8b1~2397 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ea1ca1714f655a463b941b115e45a1a2f031f7b;p=platform%2Fupstream%2Flibav.git riff: Add DAVC fourcc. This fourcc is used by the "mpegable AVC" codec and files encoded with this codec decode correctly with our H.264 decoder. --- diff --git a/libavformat/riff.c b/libavformat/riff.c index 95e08b2..b2e8414 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') },