Simplify r20025: use align_get_bits instead of reimplementing it.

Originally committed as revision 20079 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Reimar Döffinger 15 years ago
parent 076a9dea1e
commit badce93dad
  1. 4
      libavcodec/faxcompr.c

@ -302,8 +302,8 @@ int ff_ccitt_unpack(AVCodecContext *avctx,
ret = decode_group3_1d_line(avctx, &gb, avctx->width, runs, runend); ret = decode_group3_1d_line(avctx, &gb, avctx->width, runs, runend);
else else
ret = decode_group3_2d_line(avctx, &gb, avctx->width, runs, runend, ref); ret = decode_group3_2d_line(avctx, &gb, avctx->width, runs, runend, ref);
if(compr==TIFF_CCITT_RLE && (get_bits_count(&gb) & 7)) if(compr==TIFF_CCITT_RLE)
skip_bits(&gb, 8 - (get_bits_count(&gb) & 7)); align_get_bits(&gb);
} }
if(ret < 0){ if(ret < 0){
put_line(dst, stride, avctx->width, ref); put_line(dst, stride, avctx->width, ref);

Loading…
Cancel
Save