Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-08-14 21:58:30 +0400
committerMichael Niedermayer <michaelni@gmx.at>2006-08-14 21:58:30 +0400
commit0f812f5291850bc7471bfa5ecbb01313b01899a9 (patch)
tree2f1f1b58f23ffe7ec614f7dc9ab70add1946212c /libavcodec/h261.c
parent732692d94cf3048799c848799ee601ffc2f768b0 (diff)
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.c1
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;
}