mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 13:04:18 -04:00
Don't append a framing bit when writing Xiph comments to FLAC files since this
renders them unplayable with some players. Thanks to Jason Lee for tracking this down! CCMAIL:75880-done@bugs.kde.org git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@308437 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
@ -132,7 +132,7 @@ void FLAC::File::save()
|
||||
Tag::duplicate(d->tag, d->comment, true);
|
||||
}
|
||||
|
||||
d->xiphCommentData = d->comment->render();
|
||||
d->xiphCommentData = d->comment->render(false);
|
||||
|
||||
ByteVector v = ByteVector::fromUInt(d->xiphCommentData.size());
|
||||
|
||||
|
Reference in New Issue
Block a user