From 0f812f5291850bc7471bfa5ecbb01313b01899a9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 14 Aug 2006 17:58:30 +0000 Subject: fix h261 parsing bug Originally committed as revision 5997 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h261.c | 1 - 1 file changed, 1 deletion(-) (limited to 'libavcodec/h261.c') 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; } -- cgit v1.2.3