提交 17230c9d 编写于 作者: B Baptiste Coudurier

dont skip too many bytes if tag is TAG_STREAMHEAD2 and mp3

Originally committed as revision 7408 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 bc9a4597
......@@ -822,13 +822,10 @@ static int swf_read_header(AVFormatContext *s, AVFormatParameters *ap)
get_byte(pb);
v = get_byte(pb);
swf->samples_per_frame = get_le16(pb);
if (len!=4)
if (len > 4)
url_fskip(pb,len-4);
/* if mp3 streaming found, OK */
if ((v & 0x20) != 0) {
if ( tag == TAG_STREAMHEAD2 ) {
get_le16(pb);
}
ast = av_new_stream(s, 1);
if (!ast)
return -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册