I'm using Taglib and writing the cover art to the mp3. The following code here works:
bool MediaHelper::AddCoverArt(const QString &media, const QString &image_file)
{
TagLib::MPEG::File mpeg(media.toStdString().c_str());
TagLib::ID3v2::Tag *id3v2Tag = mpeg.ID3v2Tag(true);
TagLib::ID3v2::AttachedPictureFrame *frame = new TagLib::ID3v2::AttachedPictureFrame;
frame->setMimeType("image/jpeg");
frame->setPicture(image.data());
id3v2Tag->addFrame(frame);
mpeg.save();
delete frame;
return true;
}
but once i leave the function the app crashes with read access violation
I then tried it with a QScopedPointer:
bool MediaHelper::AddCoverArt(const QString &media, const QString &image_file)
{
TagLib::ID3v2::Tag *id3v2Tag = mpeg.ID3v2Tag(true);
QScopedPointer<TagLib::ID3v2::AttachedPictureFrame> frame(new TagLib::ID3v2::AttachedPictureFrame);
frame->setMimeType("image/jpeg");
frame->setPicture(image.data());
id3v2Tag->addFrame(frame.data());
mpeg.save();
return true;
}
But same thing happens when I leave the function. I'm kinda stumped because if I dont take care of deleting frame then I will be creating a big problem for myself. If anyone can give me some insight.
From the TagLib API documentation:
The tag takes care of deleting the frame. If you delete the frame yourself as well, you end up with a double-delete, and if the tag accesses the frame before deleting it in its destructor, that would result in an access violation as well.