[FFmpeg-cvslog] r16340 - trunk/libavcodec/faxcompr.c
michael
subversion
Fri Dec 26 17:59:10 CET 2008
Author: michael
Date: Fri Dec 26 17:59:10 2008
New Revision: 16340
Log:
Get rid of impossible condition (run_off < avctx->width).
Modified:
trunk/libavcodec/faxcompr.c
Modified: trunk/libavcodec/faxcompr.c
==============================================================================
--- trunk/libavcodec/faxcompr.c Fri Dec 26 17:57:35 2008 (r16339)
+++ trunk/libavcodec/faxcompr.c Fri Dec 26 17:59:10 2008 (r16340)
@@ -171,7 +171,7 @@ static int decode_group3_2d_line(AVCodec
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++;
}
More information about the ffmpeg-cvslog
mailing list