Browse Source

id3v2.4.0 uses syncsafe integers for sizes of frames.

Fixes issue1234
Fixes regression introduced in r19275

Originally committed as revision 19291 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 16 years ago
parent
commit
3fd5a75b07
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/id3v2.c

+ 3
- 0
libavformat/id3v2.c View File

@@ -155,7 +155,10 @@ void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags)
while (len >= taghdrlen) {
if (isv34) {
tag = get_be32(s->pb);
if(version==3){
tlen = get_be32(s->pb);
}else
tlen = get_size(s->pb, 4);
get_be16(s->pb); /* flags */
} else {
tag = get_be24(s->pb);


Loading…
Cancel
Save