Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- tagsreaderwriter.cpp: In member function ‘void TagsReaderWriter::readTags(int)’:
- tagsreaderwriter.cpp:166:48: warning: ‘virtual int TagLib::AudioProperties::length() const’ is deprecated [-Wdeprecated-declarations]
- 166 | tag->d->length = properties->length();
- | ~~~~~~~~~~~~~~~~~~^~
- In file included from /usr/include/taglib/mpcproperties.h:31,
- from /usr/include/taglib/mpcfile.h:32,
- from tagsreaderwriter.cpp:16:
- /usr/include/taglib/audioproperties.h:82:17: note: declared here
- 82 | virtual int length() const;
- | ^~~~~~
- tagsreaderwriter.cpp: In member function ‘TagLib::File* TagsReaderWriter::readResolver(int)’:
- tagsreaderwriter.cpp:338:37: error: invalid conversion from ‘TagLib::Tag*’ to ‘TagLib::ID3v2::Tag*’ [-fpermissive]
- 338 | readID3v2(f->tag());
- | ~~~~~~^~
- | |
- | TagLib::Tag*
- In file included from tagsreaderwriter.cpp:1:
- tagsreaderwriter.h:42:20: note: initializing argument 1 of ‘void TagsReaderWriter::readID3v2(TagLib::ID3v2::Tag*)’
- 42 | void readID3v2(TagLib::ID3v2::Tag *);
- | ^~~~~~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp:356:21: error: ‘readAsf’ was not declared in this scope; did you mean ‘readAPE’?
- 356 | readAsf(f->tag());
- | ^~~~~~~
- | readAPE
- tagsreaderwriter.cpp:368:21: error: ‘readMP4’ was not declared in this scope; did you mean ‘readAPE’?
- 368 | readMP4(f->tag());
- | ^~~~~~~
- | readAPE
- tagsreaderwriter.cpp: At global scope:
- tagsreaderwriter.cpp:1079:6: error: no declaration matches ‘void TagsReaderWriter::readAsf(TagLib::ASF::Tag*)’
- 1079 | void TagsReaderWriter::readAsf(TagLib::ASF::Tag *asftag)
- | ^~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp:1079:6: note: no functions named ‘void TagsReaderWriter::readAsf(TagLib::ASF::Tag*)’
- tagsreaderwriter.h:26:7: note: ‘class TagsReaderWriter’ defined here
- 26 | class TagsReaderWriter
- | ^~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp:1121:6: error: no declaration matches ‘void TagsReaderWriter::writeAsf(TagLib::ASF::Tag*)’
- 1121 | void TagsReaderWriter::writeAsf(TagLib::ASF::Tag *asftag)
- | ^~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp:1121:6: note: no functions named ‘void TagsReaderWriter::writeAsf(TagLib::ASF::Tag*)’
- tagsreaderwriter.h:26:7: note: ‘class TagsReaderWriter’ defined here
- 26 | class TagsReaderWriter
- | ^~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp:1181:6: error: no declaration matches ‘void TagsReaderWriter::readMP4(TagLib::MP4::Tag*)’
- 1181 | void TagsReaderWriter::readMP4(TagLib::MP4::Tag *mp4tag)
- | ^~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp:1181:6: note: no functions named ‘void TagsReaderWriter::readMP4(TagLib::MP4::Tag*)’
- tagsreaderwriter.h:26:7: note: ‘class TagsReaderWriter’ defined here
- 26 | class TagsReaderWriter
- | ^~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp: In function ‘void writeMp4Item(TagLib::MP4::Tag*, const QString&, const QString&, bool)’:
- tagsreaderwriter.cpp:1271:18: error: ‘ItemListMap’ is not a member of ‘TagLib::MP4’; did you mean ‘ItemMap’?
- 1271 | TagLib::MP4::ItemListMap &map=tag->itemListMap();
- | ^~~~~~~~~~~
- | ItemMap
- tagsreaderwriter.cpp:1271:31: error: ‘map’ was not declared in this scope
- 1271 | TagLib::MP4::ItemListMap &map=tag->itemListMap();
- | ^~~
- tagsreaderwriter.cpp:1271:31: note: suggested alternatives:
- In file included from /usr/include/c++/14.2.1/map:63,
- from /usr/include/qt6/QtCore/qmap.h:19,
- from /usr/include/qt6/QtCore/QMap:1,
- from tagger.h:32,
- from tagsreaderwriter.h:24:
- /usr/include/c++/14.2.1/bits/stl_map.h:102:11: note: ‘std::map’
- 102 | class map
- | ^~~
- /usr/include/c++/14.2.1/map:89:13: note: ‘std::pmr::map’
- 89 | using map
- | ^~~
- tagsreaderwriter.cpp:1271:40: error: ‘class TagLib::MP4::Tag’ has no member named ‘itemListMap’; did you mean ‘itemMap’?
- 1271 | TagLib::MP4::ItemListMap &map=tag->itemListMap();
- | ^~~~~~~~~~~
- | itemMap
- tagsreaderwriter.cpp: At global scope:
- tagsreaderwriter.cpp:1334:6: error: no declaration matches ‘void TagsReaderWriter::writeMP4(TagLib::MP4::Tag*)’
- 1334 | void TagsReaderWriter::writeMP4(TagLib::MP4::Tag *mp4tag)
- | ^~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp:1334:6: note: no functions named ‘void TagsReaderWriter::writeMP4(TagLib::MP4::Tag*)’
- tagsreaderwriter.h:26:7: note: ‘class TagsReaderWriter’ defined here
- 26 | class TagsReaderWriter
- | ^~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp: In member function ‘bool TagsReaderWriter::writeTags()’:
- tagsreaderwriter.cpp:1617:26: error: no matching function for call to ‘TagLib::MPEG::File::save(int&, bool, int&)’
- 1617 | b=f->save(savingTypes,true,App->id3v2version);
- | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from tagsreaderwriter.cpp:21:
- /usr/include/taglib/mpegfile.h:212:12: note: candidate: ‘virtual bool TagLib::MPEG::File::save()’
- 212 | bool save() override;
- | ^~~~
- /usr/include/taglib/mpegfile.h:212:12: note: candidate expects 0 arguments, 3 provided
- /usr/include/taglib/mpegfile.h:227:12: note: candidate: ‘bool TagLib::MPEG::File::save(int, TagLib::File::StripTags, TagLib::ID3v2::Version, TagLib::File::DuplicateTags)’
- 227 | bool save(int tags, StripTags strip = StripOthers,
- | ^~~~
- /usr/include/taglib/mpegfile.h:227:37: note: no known conversion for argument 2 from ‘bool’ to ‘TagLib::File::StripTags’
- 227 | bool save(int tags, StripTags strip = StripOthers,
- | ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
- tagsreaderwriter.cpp:1692:55: error: ‘null’ is not a member of ‘TagLib::String’
- 1692 | tag->setAlbum(TagLib::String::null);
- | ^~~~
- tagsreaderwriter.cpp:1693:56: error: ‘null’ is not a member of ‘TagLib::String’
- 1693 | tag->setArtist(TagLib::String::null);
- | ^~~~
- tagsreaderwriter.cpp:1695:55: error: ‘null’ is not a member of ‘TagLib::String’
- 1695 | tag->setTitle(TagLib::String::null);
- | ^~~~
- tagsreaderwriter.cpp:1696:57: error: ‘null’ is not a member of ‘TagLib::String’
- 1696 | tag->setComment(TagLib::String::null);
- | ^~~~
- tagsreaderwriter.cpp:1697:55: error: ‘null’ is not a member of ‘TagLib::String’
- 1697 | tag->setGenre(TagLib::String::null);
- | ^~~~
- tagsreaderwriter.cpp:1760:34: error: invalid conversion from ‘TagLib::Tag*’ to ‘TagLib::ID3v2::Tag*’ [-fpermissive]
- 1760 | writeID3v2(f->tag());
- | ~~~~~~^~
- | |
- | TagLib::Tag*
- tagsreaderwriter.cpp:675:55: note: initializing argument 1 of ‘void TagsReaderWriter::writeID3v2(TagLib::ID3v2::Tag*)’
- 675 | void TagsReaderWriter::writeID3v2(TagLib::ID3v2::Tag *id3v2tag)
- | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~
- tagsreaderwriter.cpp:1770:17: error: ‘writeAsf’ was not declared in this scope; did you mean ‘writeAPE’?
- 1770 | writeAsf(f->tag());
- | ^~~~~~~~
- | writeAPE
- tagsreaderwriter.cpp:1790:17: error: ‘writeMP4’ was not declared in this scope; did you mean ‘writeAPE’?
- 1790 | writeMP4(f->tag());
- | ^~~~~~~~
- | writeAPE
- g++ -c -pipe -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -Wp,-D_GLIBCXX_ASSERTIONS -flto=auto -Wall -Wextra -mno-direct-extern-access -D_REENTRANT -DQOOBAR_VERSION=\"1.7.0\" -DQOOBAR_SHARED_PATH=\"/share/qoobar\" -DQOOBAR_DOC_PATH=\"/share/doc/qoobar-doc\" -DQOOBAR_ENABLE_CLI -DQT_NO_DEBUG -DQT_NO_KEYWORDS -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CONCURRENT_LIB -DQT_NETWORK_LIB -DQT_CORE5COMPAT_LIB -DQT_DBUS_LIB -DQT_CORE_LIB -I. -Iqocoa -I/usr/include/taglib -I/usr/include/qt6 -I/usr/include/qt6/QtWidgets -I/usr/include/qt6/QtGui -I/usr/include/qt6/QtConcurrent -I/usr/include/qt6/QtNetwork -I/usr/include/qt6/QtCore5Compat -I/usr/include/qt6/QtDBus -I/usr/include/qt6/QtCore -I../../release/build -I/usr/include/ffmpeg4.4 -I/usr/lib/qt6/mkspecs/linux-g++ -o ../../release/build/model.o model.cpp
- make[1]: *** [Makefile:2518: ../../release/build/tagsreaderwriter.o] Error 1
- make[1]: *** Waiting for unfinished jobs....
- make[1]: Leaving directory '/home/ben/.cache/yay/qoobar-git/src/qoobar/src/qoobar_app'
- make: *** [Makefile:53: sub-src-qoobar_app-make_first] Error 2
- ==> ERROR: A failure occurred in build().
- Aborting...
- -> error making: qoobar-git-exit status 4
- -> Failed to install the following packages. Manual intervention is required:
- qoobar-git - exit status 4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement