From 4e60b64324c807eb7333f6586f4c2b38b83be835 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 26 Dec 2008 13:48:09 +0000 Subject: Factorize mode switching in put_line(). Originally committed as revision 16326 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/faxcompr.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libavcodec/faxcompr.c') diff --git a/libavcodec/faxcompr.c b/libavcodec/faxcompr.c index 9f1da4d279..417e0b6cb9 100644 --- a/libavcodec/faxcompr.c +++ b/libavcodec/faxcompr.c @@ -232,20 +232,19 @@ static int decode_group3_2d_line(AVCodecContext *avctx, GetBitContext *gb, static void put_line(uint8_t *dst, int size, int width, const int *runs) { PutBitContext pb; - int run, mode = 0, pix_left = width, run_idx = 0; + int run, mode = 1, pix_left = width, run_idx = 0; init_put_bits(&pb, dst, size*8); while(pix_left > 0){ run = runs[run_idx++]; + mode = !mode; if(!run){ - mode = !mode; continue; } pix_left -= run; for(; run > 16; run -= 16) put_sbits(&pb, 16, -mode); put_sbits(&pb, run, -mode); - mode = !mode; } } -- cgit v1.2.3