Commit e3a54b66 authored by Michael Niedermayer's avatar Michael Niedermayer

Get rid of check for condition that is always true (run_off < avctx->width).

Originally committed as revision 16340 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 43ba8f35
......@@ -171,7 +171,7 @@ static int decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb,
return -1;
}
//sync line pointers
if(runs != run_start)while(run_off <= offs && run_off < avctx->width){
if(runs != run_start)while(run_off <= offs){
run_off += *ref++;
run_off += *ref++;
}
......
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