diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 622cc5c087..b8779c01a6 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -3178,7 +3178,7 @@ static int aac_decode_frame(AVCodecContext *avctx, void *data, if (INT_MAX / 8 <= buf_size) return AVERROR_INVALIDDATA; - if ((err = init_get_bits(&gb, buf, buf_size * 8)) < 0) + if ((err = init_get_bits8(&gb, buf, buf_size)) < 0) return err; switch (ac->oc[1].m4ac.object_type) {