comparison faxcompr.c @ 8471:4185a779d449 libavcodec

indent
author michael
date Fri, 26 Dec 2008 13:52:07 +0000
parents e765aa020de9
children 771f97593234
comparison
equal deleted inserted replaced
8470:e765aa020de9 8471:4185a779d449
240 mode = ~mode; 240 mode = ~mode;
241 pix_left -= run; 241 pix_left -= run;
242 for(; run > 16; run -= 16) 242 for(; run > 16; run -= 16)
243 put_sbits(&pb, 16, mode); 243 put_sbits(&pb, 16, mode);
244 if(run) 244 if(run)
245 put_sbits(&pb, run, mode); 245 put_sbits(&pb, run, mode);
246 } 246 }
247 } 247 }
248 248
249 static int find_group3_syncmarker(GetBitContext *gb, int srcsize) 249 static int find_group3_syncmarker(GetBitContext *gb, int srcsize)
250 { 250 {