diff options
author | Steve L'Homme <slhomme@divxcorp.com> | 2006-08-18 07:55:08 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-08-18 07:55:08 +0000 |
commit | 0b23d689d850c636ba4594b578007aa2b0fdc88a (patch) | |
tree | 31bd53305df1c548b1c40d25749f4ebd9065bc71 /libavformat/riff.c | |
parent | 751b9004793c28a50ff6acd4d3981e0cbb530b88 (diff) | |
download | ffmpeg-0b23d689d850c636ba4594b578007aa2b0fdc88a.tar.gz |
Add YV12 support, patch by Steve Lhomme % steve P lhomme A free P fr %
Original thread:
Date: Aug 17, 2006 5:45 PM
Subject: Re: [Ffmpeg-devel] [PATCH] AVISynth support
Originally committed as revision 6018 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-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 2ccbc8c567..0be0be7620 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -106,6 +106,7 @@ const CodecTag codec_bmp_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('I', '4', '2', '0') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'Y', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', '2') }, + { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'V', 'Y') }, { CODEC_ID_RAWVIDEO, MKTAG('I', 'Y', 'U', 'V') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') }, |