diff options
author | Javier Garcia <garcofra@hotmail.com> | 2006-09-06 09:00:11 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-09-06 09:00:11 +0000 |
commit | af5ba08e83afcb851e4d1f71e6a6a03daa55e862 (patch) | |
tree | 9720191b2d9b2878c49f19f337dd380a4d42a776 | |
parent | 837f0ad7aac63c8a00a8cd78617dabfdf9061ac7 (diff) | |
download | ffmpeg-af5ba08e83afcb851e4d1f71e6a6a03daa55e862.tar.gz |
Allow RGB Raw encoding
Patch by Javier garcia % garcofra A hotmail P com %
Original thread:
Date: Aug 30, 2006 1:49 PM
Subject: [Ffmpeg-devel] [PATCH] RGB Raw ecoding
Originally committed as revision 6180 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/riff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index c89da5c00b..cc2113965c 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -103,6 +103,7 @@ const CodecTag codec_bmp_tags[] = { { CODEC_ID_HUFFYUV, MKTAG('H', 'F', 'Y', 'U') }, { CODEC_ID_FFVHUFF, MKTAG('F', 'F', 'V', 'H') }, { CODEC_ID_CYUV, MKTAG('C', 'Y', 'U', 'V') }, + { CODEC_ID_RAWVIDEO, 0 }, { CODEC_ID_RAWVIDEO, MKTAG('I', '4', '2', '0') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'Y', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', '2') }, @@ -156,7 +157,6 @@ const CodecTag codec_bmp_tags[] = { { CODEC_ID_CAVS, MKTAG('C', 'A', 'V', 'S') }, { CODEC_ID_JPEG2000, MKTAG('M', 'J', '2', 'C') }, { CODEC_ID_VMNC, MKTAG('V', 'M', 'n', 'c') }, - { CODEC_ID_RAWVIDEO, 0 }, { CODEC_ID_NONE, 0 }, }; |