summaryrefslogtreecommitdiff
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorPhilippe De Muyter <phdm@macqel.be>2006-09-15 09:42:51 +0000
committerGuillaume Poirier <gpoirier@mplayerhq.hu>2006-09-15 09:42:51 +0000
commit3c61983828c65d74ef84b4df8467c30696e2a1aa (patch)
treeb1fd96fb91b47d28aa0bef36c11682fc9bdf537a /libavformat/riff.c
parent93a319f13ba94c783afe5eb832f4de8980e6baa5 (diff)
add support for grayscale rawvideo avi
patch by Philippe De Muyter %phdm A macqel P be% Original thread: Date: Sep 15, 2006 10:18 AM Subject: [Ffmpeg-devel] [PATCH] ffmpeg does not recognize his own grayscale rawvideo avi's Originally committed as revision 6255 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r--libavformat/riff.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index cb11980cc6..2ab1ec18a9 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -110,6 +110,7 @@ const CodecTag codec_bmp_tags[] = {
{ 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_RAWVIDEO, MKTAG('Y', '8', '0', '0') },
{ CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') },
{ CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') },
{ CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },