summaryrefslogtreecommitdiff
path: root/libavformat/id3v2.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-01-20 09:06:58 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-01-21 20:36:00 +0100
commitd4cc1f5b97793430bb14e25dbe2bb9f04e8ed540 (patch)
tree94e7842151075527e801eea30e0e928f4cbaeca3 /libavformat/id3v2.c
parent189665d927ffd352bb5dea302b9b9997a7804f21 (diff)
id3v2: don't overwrite existing tags
Apparently some broken taggers prepend a new ID3v2 tag leaving the existing one intact. Our parser currently reads all tags and overwrites existing values with supposedly outdated ones. fixes issue2419 Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 75aded8328e35c9391e25a1c857eb6e3b801a8d8)
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r--libavformat/id3v2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c
index 4da7ec66d1..95ec0b05cb 100644
--- a/libavformat/id3v2.c
+++ b/libavformat/id3v2.c
@@ -132,7 +132,7 @@ static void read_ttag(AVFormatContext *s, ByteIOContext *pb, int taglen, const c
val = dst;
if (val)
- av_metadata_set2(&s->metadata, key, val, 0);
+ av_metadata_set2(&s->metadata, key, val, AV_METADATA_DONT_OVERWRITE);
}
static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags)