diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-07-04 02:05:22 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-04 04:17:00 +0200 |
commit | a54bc1ebb8b0fe31b6088c19ff0c8e53b94a70ad (patch) | |
tree | 32bf1d4affdc7f1f1a80858b76103f81b22df258 | |
parent | 776a4e42a7524630bcfc46bbd23f26b7dc7f65ca (diff) | |
download | ffmpeg-a54bc1ebb8b0fe31b6088c19ff0c8e53b94a70ad.tar.gz |
riff: add "YUV8" FourCC
sample:
http://samples.mplayerhq.hu/V-codecs/yuv8/MAILTEST.AVI
Reviewed-by: compn <tempn@twmi.rr.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 a9715b5186..fe8b49fc28 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -262,6 +262,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_VC1IMAGE, MKTAG('W', 'V', 'P', '2') }, { CODEC_ID_LOCO, MKTAG('L', 'O', 'C', 'O') }, { CODEC_ID_WNV1, MKTAG('W', 'N', 'V', '1') }, + { CODEC_ID_WNV1, MKTAG('Y', 'U', 'V', '8') }, { CODEC_ID_AASC, MKTAG('A', 'A', 'S', '4') }, { CODEC_ID_AASC, MKTAG('A', 'A', 'S', 'C') }, { CODEC_ID_INDEO2, MKTAG('R', 'T', '2', '1') }, |