Commit c68b11ee authored by reimar's avatar reimar

Simplify r20025: use align_get_bits instead of reimplementing it.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20079 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d1417443
......@@ -302,8 +302,8 @@ int ff_ccitt_unpack(AVCodecContext *avctx,
ret = decode_group3_1d_line(avctx, &gb, avctx->width, runs, runend);
else
ret = decode_group3_2d_line(avctx, &gb, avctx->width, runs, runend, ref);
if(compr==TIFF_CCITT_RLE && (get_bits_count(&gb) & 7))
skip_bits(&gb, 8 - (get_bits_count(&gb) & 7));
if(compr==TIFF_CCITT_RLE)
align_get_bits(&gb);
}
if(ret < 0){
put_line(dst, stride, avctx->width, ref);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment