Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-07-04 04:05:22 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-07-04 06:17:00 +0400
commita54bc1ebb8b0fe31b6088c19ff0c8e53b94a70ad (patch)
tree32bf1d4affdc7f1f1a80858b76103f81b22df258
parent776a4e42a7524630bcfc46bbd23f26b7dc7f65ca (diff)
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.c1
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') },