diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-08-14 17:58:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-08-14 17:58:30 +0000 |
commit | 0f812f5291850bc7471bfa5ecbb01313b01899a9 (patch) | |
tree | 2f1f1b58f23ffe7ec614f7dc9ab70add1946212c /libavcodec/h261.c | |
parent | 732692d94cf3048799c848799ee601ffc2f768b0 (diff) | |
download | ffmpeg-0f812f5291850bc7471bfa5ecbb01313b01899a9.tar.gz |
fix h261 parsing bug
Originally committed as revision 5997 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h261.c')
-rw-r--r-- | libavcodec/h261.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h261.c b/libavcodec/h261.c index e56978e611..0f0abef1e9 100644 --- a/libavcodec/h261.c +++ b/libavcodec/h261.c @@ -859,7 +859,6 @@ static int h261_find_frame_end(ParseContext *pc, AVCodecContext* avctx, const ui state= (state<<8) | buf[i]; for(j=0; j<8; j++){ if(((state>>j)&0xFFFFF) == 0x00010){ - i++; vop_found=1; break; } |