avcodec/diracdec: use init_get_bits8()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-08-05 10:13:48 +02:00
parent 6ed1aa4f85
commit 5dff269998

View File

@ -567,7 +567,7 @@ static av_always_inline void decode_subband_internal(DiracContext *s, SubBand *b
if (!b->length)
return;
init_get_bits(&gb, b->coeff_data, b->length*8);
init_get_bits8(&gb, b->coeff_data, b->length);
if (is_arith)
ff_dirac_init_arith_decoder(&c, &gb, b->length);