1
0
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:
Michael Niedermayer 2008-12-26 16:59:10 +00:00
parent 43ba8f3545
commit e3a54b6694

View File

@ -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++;
}