Commit 8870cf82 authored by Michael Niedermayer's avatar Michael Niedermayer

This fixes the code so it is correct on both sides of the if().

Originally committed as revision 12902 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7bc5f6e5
......@@ -51,8 +51,10 @@ get_next:
}else{
i-= s->header_size -1;
s->remaining_size = len;
if(!new_frame_start)
if(!new_frame_start){
s->remaining_size += i;
goto get_next;
}
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment