Change the comment for TagLib::MPEG:File

This commit is contained in:
Chocobozzz 2014-06-05 15:48:20 +02:00
parent 357a9ff194
commit 2595df9779
1 changed files with 1 additions and 1 deletions

View File

@ -950,7 +950,7 @@ bool TagReader::ReadCloudFile(const QUrl& download_url, const QString& title,
stream->Precache();
std::unique_ptr<TagLib::File> tag;
if (mime_type == "audio/mpeg" && title.endsWith(".mp3")) {
tag.reset(new TagLib::MPEG::File(stream, // Takes ownership.
tag.reset(new TagLib::MPEG::File(stream, // Doesn't take ownership.
TagLib::ID3v2::FrameFactory::instance(),
TagLib::AudioProperties::Accurate));
} else if (mime_type == "audio/mp4" ||