Commit 11d94c60 authored by michael's avatar michael

Fix id3v2.2 frame size parsing.

Fixes issue1202.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19276 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3ce5f4ed
......@@ -159,7 +159,7 @@ void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags)
get_be16(s->pb); /* flags */
} else {
tag = get_be24(s->pb);
tlen = get_size(s->pb, 3);
tlen = get_be24(s->pb);
}
len -= taghdrlen + tlen;
......
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