mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avcodec/diracdec: use init_get_bits8()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6ed1aa4f85
commit
5dff269998
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user