summaryrefslogtreecommitdiff
path: root/libavformat/id3v2.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-22 10:35:34 +0100
committerJustin Ruggles <justin.ruggles@gmail.com>2011-03-22 09:08:59 -0400
commit1885488757dc4c6b2d275e4524ed6dd19e97f9b0 (patch)
treecbaddb8cb4ec72f71ed5480180768ffba62e78f1 /libavformat/id3v2.c
parentb58b9fa3b5243f02e5212db9171b2f02de4524ea (diff)
id3v2: don't explicitly skip padding
It's pointless, since there's a seek to the end of tag later.
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r--libavformat/id3v2.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c
index 13272a493f..96f3e1c61a 100644
--- a/libavformat/id3v2.c
+++ b/libavformat/id3v2.c
@@ -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;