You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
libavcodec/aacdec_template: Use init_get_bits8() in aac_decode_frame()
related to ticket4749 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
committed by
Michael Niedermayer
parent
0508657f42
commit
7ab1c57a64
@@ -3122,7 +3122,7 @@ static int aac_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
if (INT_MAX / 8 <= buf_size)
|
if (INT_MAX / 8 <= buf_size)
|
||||||
return AVERROR_INVALIDDATA;
|
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;
|
return err;
|
||||||
|
|
||||||
switch (ac->oc[1].m4ac.object_type) {
|
switch (ac->oc[1].m4ac.object_type) {
|
||||||
|
Reference in New Issue
Block a user