avformat/adtsenc: return value check for init_get_bits in adts_decode_extradata

As the second argument for init_get_bits (buf) can be crafted, a return value check for this function call is necessary.
'buf' is  part of  'AVPacket pkt'.
replace init_get_bits with init_get_bits8.

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
maryam ebrahimzadeh 2021-08-04 16:15:18 -04:00 committed by Michael Niedermayer
parent 89505d38de
commit 9ffa49496d
1 changed files with 4 additions and 2 deletions

View File

@ -53,9 +53,11 @@ static int adts_decode_extradata(AVFormatContext *s, ADTSContext *adts, const ui
GetBitContext gb; GetBitContext gb;
PutBitContext pb; PutBitContext pb;
MPEG4AudioConfig m4ac; MPEG4AudioConfig m4ac;
int off; int off, ret;
init_get_bits(&gb, buf, size * 8); ret = init_get_bits8(&gb, buf, size);
if (ret < 0)
return ret;
off = avpriv_mpeg4audio_get_config2(&m4ac, buf, size, 1, s); off = avpriv_mpeg4audio_get_config2(&m4ac, buf, size, 1, s);
if (off < 0) if (off < 0)
return off; return off;