id3v2: don't explicitly skip padding

It's pointless, since there's a seek to the end of tag later.
This commit is contained in:
Anton Khirnov 2011-03-22 10:35:34 +01:00 committed by Justin Ruggles
parent b58b9fa3b5
commit 1885488757
1 changed files with 0 additions and 4 deletions

View File

@ -279,10 +279,6 @@ static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t
avio_seek(s->pb, next, SEEK_SET);
}
if (len > 0) {
/* Skip padding */
avio_skip(s->pb, len);
}
if (version == 4 && flags & 0x10) /* Footer preset, always 10 bytes, skip over it */
end += 10;