diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-08-02 13:03:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-08-02 13:03:58 +0000 |
commit | 9b434875f1248119be417b4cf0c0773af4db5942 (patch) | |
tree | 6ffeba367cc66c17aa39752f2bb0c9c632afb5ab /libavcodec | |
parent | 13859ac9da5f097ae35c530dc6193dcd4f93e531 (diff) | |
download | ffmpeg-9b434875f1248119be417b4cf0c0773af4db5942.tar.gz |
fix one file, will probably break some others but i cant find any samples which need this ...
Originally committed as revision 3371 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/rv10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 58c5db7f44..68679cd20d 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -388,7 +388,7 @@ static int rv20_decode_picture_header(MpegEncContext *s) // return -1; } seq= get_bits(&s->gb, 15); - if (s->avctx->sub_id == 0x20201002 && get_bits(&s->gb, 1)){ + if (s->avctx->sub_id == 0x20201002 && 0 && get_bits(&s->gb, 1)){ av_log(s->avctx, AV_LOG_ERROR, "unknown bit4 set\n"); // return -1; } |