Commit 47f42aec authored by Michael Niedermayer's avatar Michael Niedermayer

Fix id3v2.3/4 tag size parsing.

Fixes issue1106

Originally committed as revision 19275 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 57011a13
......@@ -155,7 +155,7 @@ void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags)
while (len >= taghdrlen) {
if (isv34) {
tag = get_be32(s->pb);
tlen = get_size(s->pb, 4);
tlen = get_be32(s->pb);
get_be16(s->pb); /* flags */
} else {
tag = get_be24(s->pb);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment