Commit 4b7668c0 authored by michael's avatar michael

Get rid of impossible condition (run_off < avctx->width).


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16340 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 707dd310
......@@ -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