Mercurial > libavcodec.hg
changeset 10315:27cb9c2c0c6b libavcodec
Simplify r20025: use align_get_bits instead of reimplementing it.
author | reimar |
---|---|
date | Tue, 29 Sep 2009 11:06:04 +0000 |
parents | ab687351bfef |
children | 7bfcc66f807d |
files | faxcompr.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/faxcompr.c Tue Sep 29 10:38:34 2009 +0000 +++ b/faxcompr.c Tue Sep 29 11:06:04 2009 +0000 @@ -302,8 +302,8 @@ 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);