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 /libavcodec/rawdec.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 'libavcodec/rawdec.c')
-rw-r--r-- | libavcodec/rawdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index 89e9ea936b..2f29271c9a 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -87,7 +87,8 @@ static av_cold int raw_init_decoder(AVCodecContext *avctx) if (!context->buffer) return -1; - if(avctx->extradata_size >= 9 && !memcmp(avctx->extradata + avctx->extradata_size - 9, "BottomUp", 9)) + if((avctx->extradata_size >= 9 && !memcmp(avctx->extradata + avctx->extradata_size - 9, "BottomUp", 9)) || + avctx->codec_tag == MKTAG( 3 , 0 , 0 , 0 )) context->flip=1; return 0; |