Commit 5dff2699 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/diracdec: use init_get_bits8()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6ed1aa4f
......@@ -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);
......
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