Fix id3v2.2 frame size parsing.
Fixes issue1202. Originally committed as revision 19276 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
47f42aec38
commit
1cd4422163
@ -159,7 +159,7 @@ void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags)
|
|||||||
get_be16(s->pb); /* flags */
|
get_be16(s->pb); /* flags */
|
||||||
} else {
|
} else {
|
||||||
tag = get_be24(s->pb);
|
tag = get_be24(s->pb);
|
||||||
tlen = get_size(s->pb, 3);
|
tlen = get_be24(s->pb);
|
||||||
}
|
}
|
||||||
len -= taghdrlen + tlen;
|
len -= taghdrlen + tlen;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user