mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
make sure the mpeg audio header is valid before passing it to ff_mpegaudio_decode_header()
Originally committed as revision 10925 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f9def9ccc6
commit
5b5bd7c9ee
@ -435,7 +435,11 @@ static void mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, offset_t base)
|
||||
const offset_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
|
||||
MPADecodeContext c;
|
||||
|
||||
ff_mpegaudio_decode_header(&c, get_be32(&s->pb));
|
||||
v = get_be32(&s->pb);
|
||||
if(ff_mpa_check_header(v) < 0)
|
||||
return;
|
||||
|
||||
ff_mpegaudio_decode_header(&c, v);
|
||||
if(c.layer != 3)
|
||||
return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user