diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2009-06-12 17:39:56 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2009-06-12 17:39:56 +0000 |
commit | fc3fc0293d78c6ca61aba775c08266ad96240d5b (patch) | |
tree | 3ab213339ef54a12f247b1560f02ab2c622adeb8 /libavformat/riff.c | |
parent | c0e9b2e84fecbc4cc8efb78ced8fd1eaafae7a9d (diff) | |
download | ffmpeg-fc3fc0293d78c6ca61aba775c08266ad96240d5b.tar.gz |
Add new FOURCC (0x0003) for raw DIB video, set flip flag accordingly.
Fixes a few AVI files from what is probably a mobile phone video camera.
Originally committed as revision 19172 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 5b8c272f93..a279121369 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -133,6 +133,7 @@ const AVCodecTag codec_bmp_tags[] = { { CODEC_ID_FFVHUFF, MKTAG('F', 'F', 'V', 'H') }, { CODEC_ID_CYUV, MKTAG('C', 'Y', 'U', 'V') }, { CODEC_ID_RAWVIDEO, MKTAG( 0 , 0 , 0 , 0 ) }, + { CODEC_ID_RAWVIDEO, MKTAG( 3 , 0 , 0 , 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') }, |