mirror of
https://github.com/taglib/taglib.git
synced 2025-09-07 05:44:16 -04:00
Comment on a weird workaround for duplicate ID3v2 tags.
This commit is contained in:
@ -434,8 +434,12 @@ long MPEG::File::firstFrameOffset()
|
||||
long position = 0;
|
||||
|
||||
if(ID3v2Tag()) {
|
||||
|
||||
// Skip duplicate ID3v2 tags.
|
||||
|
||||
// Workaround for some faulty files that have duplicate ID3v2 tags.
|
||||
// Combination of EAC and LAME creates such files when configured incorrectly.
|
||||
|
||||
position = d->ID3v2Location + ID3v2Tag()->header()->completeTagSize();
|
||||
|
||||
long location;
|
||||
|
Reference in New Issue
Block a user