mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
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
This commit is contained in:
parent
43ba8f3545
commit
e3a54b6694
@ -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++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user