├── .astylerc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── 3rdparty └── utf8-cpp │ ├── checked.h │ └── core.h ├── AUTHORS ├── CMakeLists.txt ├── COPYING.LGPL ├── COPYING.MPL ├── ConfigureChecks.cmake ├── Doxyfile.cmake ├── INSTALL.md ├── NEWS ├── README.md ├── bindings ├── CMakeLists.txt ├── README └── c │ ├── CMakeLists.txt │ ├── tag_c.cpp │ ├── tag_c.h │ └── taglib_c.pc.cmake ├── cmake └── modules │ ├── FindCppUnit.cmake │ └── MacroEnsureVersion.cmake ├── cmake_uninstall.cmake.in ├── config.h.cmake ├── doc ├── README ├── api-footer.html ├── api-header.html ├── taglib-api.css └── taglib.png ├── examples ├── CMakeLists.txt ├── framelist.cpp ├── strip-id3v1.cpp ├── tagreader.cpp ├── tagreader_c.c └── tagwriter.cpp ├── taglib-config.cmake ├── taglib-config.cmd.cmake ├── taglib.pc.cmake ├── taglib ├── CMakeLists.txt ├── ape │ ├── ape-tag-format.txt │ ├── apefile.cpp │ ├── apefile.h │ ├── apefooter.cpp │ ├── apefooter.h │ ├── apeitem.cpp │ ├── apeitem.h │ ├── apeproperties.cpp │ ├── apeproperties.h │ ├── apetag.cpp │ └── apetag.h ├── asf │ ├── asfattribute.cpp │ ├── asfattribute.h │ ├── asffile.cpp │ ├── asffile.h │ ├── asfpicture.cpp │ ├── asfpicture.h │ ├── asfproperties.cpp │ ├── asfproperties.h │ ├── asftag.cpp │ ├── asftag.h │ └── asfutils.h ├── audioproperties.cpp ├── audioproperties.h ├── fileref.cpp ├── fileref.h ├── flac │ ├── flacfile.cpp │ ├── flacfile.h │ ├── flacmetadatablock.cpp │ ├── flacmetadatablock.h │ ├── flacpicture.cpp │ ├── flacpicture.h │ ├── flacproperties.cpp │ ├── flacproperties.h │ ├── flacunknownmetadatablock.cpp │ └── flacunknownmetadatablock.h ├── it │ ├── itfile.cpp │ ├── itfile.h │ ├── itproperties.cpp │ └── itproperties.h ├── mod │ ├── modfile.cpp │ ├── modfile.h │ ├── modfilebase.cpp │ ├── modfilebase.h │ ├── modfileprivate.h │ ├── modproperties.cpp │ ├── modproperties.h │ ├── modtag.cpp │ └── modtag.h ├── mp4 │ ├── mp4atom.cpp │ ├── mp4atom.h │ ├── mp4coverart.cpp │ ├── mp4coverart.h │ ├── mp4file.cpp │ ├── mp4file.h │ ├── mp4item.cpp │ ├── mp4item.h │ ├── mp4properties.cpp │ ├── mp4properties.h │ ├── mp4tag.cpp │ └── mp4tag.h ├── mpc │ ├── mpcfile.cpp │ ├── mpcfile.h │ ├── mpcproperties.cpp │ └── mpcproperties.h ├── mpeg │ ├── id3v1 │ │ ├── id3v1genres.cpp │ │ ├── id3v1genres.h │ │ ├── id3v1tag.cpp │ │ └── id3v1tag.h │ ├── id3v2 │ │ ├── frames │ │ │ ├── attachedpictureframe.cpp │ │ │ ├── attachedpictureframe.h │ │ │ ├── chapterframe.cpp │ │ │ ├── chapterframe.h │ │ │ ├── commentsframe.cpp │ │ │ ├── commentsframe.h │ │ │ ├── eventtimingcodesframe.cpp │ │ │ ├── eventtimingcodesframe.h │ │ │ ├── generalencapsulatedobjectframe.cpp │ │ │ ├── generalencapsulatedobjectframe.h │ │ │ ├── ownershipframe.cpp │ │ │ ├── ownershipframe.h │ │ │ ├── podcastframe.cpp │ │ │ ├── podcastframe.h │ │ │ ├── popularimeterframe.cpp │ │ │ ├── popularimeterframe.h │ │ │ ├── privateframe.cpp │ │ │ ├── privateframe.h │ │ │ ├── relativevolumeframe.cpp │ │ │ ├── relativevolumeframe.h │ │ │ ├── synchronizedlyricsframe.cpp │ │ │ ├── synchronizedlyricsframe.h │ │ │ ├── tableofcontentsframe.cpp │ │ │ ├── tableofcontentsframe.h │ │ │ ├── textidentificationframe.cpp │ │ │ ├── textidentificationframe.h │ │ │ ├── uniquefileidentifierframe.cpp │ │ │ ├── uniquefileidentifierframe.h │ │ │ ├── unknownframe.cpp │ │ │ ├── unknownframe.h │ │ │ ├── unsynchronizedlyricsframe.cpp │ │ │ ├── unsynchronizedlyricsframe.h │ │ │ ├── urllinkframe.cpp │ │ │ └── urllinkframe.h │ │ ├── id3v2.2.0.txt │ │ ├── id3v2.3.0.txt │ │ ├── id3v2.4.0-frames.txt │ │ ├── id3v2.4.0-structure.txt │ │ ├── id3v2extendedheader.cpp │ │ ├── id3v2extendedheader.h │ │ ├── id3v2footer.cpp │ │ ├── id3v2footer.h │ │ ├── id3v2frame.cpp │ │ ├── id3v2frame.h │ │ ├── id3v2framefactory.cpp │ │ ├── id3v2framefactory.h │ │ ├── id3v2header.cpp │ │ ├── id3v2header.h │ │ ├── id3v2synchdata.cpp │ │ ├── id3v2synchdata.h │ │ ├── id3v2tag.cpp │ │ └── id3v2tag.h │ ├── mpegfile.cpp │ ├── mpegfile.h │ ├── mpegheader.cpp │ ├── mpegheader.h │ ├── mpegproperties.cpp │ ├── mpegproperties.h │ ├── mpegutils.h │ ├── xingheader.cpp │ └── xingheader.h ├── ogg │ ├── flac │ │ ├── oggflacfile.cpp │ │ └── oggflacfile.h │ ├── oggfile.cpp │ ├── oggfile.h │ ├── oggpage.cpp │ ├── oggpage.h │ ├── oggpageheader.cpp │ ├── oggpageheader.h │ ├── opus │ │ ├── opusfile.cpp │ │ ├── opusfile.h │ │ ├── opusproperties.cpp │ │ └── opusproperties.h │ ├── speex │ │ ├── speexfile.cpp │ │ ├── speexfile.h │ │ ├── speexproperties.cpp │ │ └── speexproperties.h │ ├── vorbis │ │ ├── vorbisfile.cpp │ │ ├── vorbisfile.h │ │ ├── vorbisproperties.cpp │ │ └── vorbisproperties.h │ ├── xiphcomment.cpp │ └── xiphcomment.h ├── riff │ ├── aiff │ │ ├── aifffile.cpp │ │ ├── aifffile.h │ │ ├── aiffproperties.cpp │ │ └── aiffproperties.h │ ├── rifffile.cpp │ ├── rifffile.h │ ├── riffutils.h │ └── wav │ │ ├── infotag.cpp │ │ ├── infotag.h │ │ ├── wavfile.cpp │ │ ├── wavfile.h │ │ ├── wavproperties.cpp │ │ └── wavproperties.h ├── s3m │ ├── s3mfile.cpp │ ├── s3mfile.h │ ├── s3mproperties.cpp │ └── s3mproperties.h ├── tag.cpp ├── tag.h ├── taglib_config.h.cmake ├── taglib_export.h ├── tagunion.cpp ├── tagunion.h ├── tagutils.cpp ├── tagutils.h ├── toolkit │ ├── taglib.h │ ├── tbytevector.cpp │ ├── tbytevector.h │ ├── tbytevectorlist.cpp │ ├── tbytevectorlist.h │ ├── tbytevectorstream.cpp │ ├── tbytevectorstream.h │ ├── tdebug.cpp │ ├── tdebug.h │ ├── tdebuglistener.cpp │ ├── tdebuglistener.h │ ├── tfile.cpp │ ├── tfile.h │ ├── tfilestream.cpp │ ├── tfilestream.h │ ├── tiostream.cpp │ ├── tiostream.h │ ├── tlist.h │ ├── tlist.tcc │ ├── tmap.h │ ├── tmap.tcc │ ├── tpropertymap.cpp │ ├── tpropertymap.h │ ├── trefcounter.cpp │ ├── trefcounter.h │ ├── tstring.cpp │ ├── tstring.h │ ├── tstringlist.cpp │ ├── tstringlist.h │ ├── tutils.h │ ├── tzlib.cpp │ └── tzlib.h ├── trueaudio │ ├── trueaudiofile.cpp │ ├── trueaudiofile.h │ ├── trueaudioproperties.cpp │ └── trueaudioproperties.h ├── wavpack │ ├── wavpackfile.cpp │ ├── wavpackfile.h │ ├── wavpackproperties.cpp │ └── wavpackproperties.h └── xm │ ├── xmfile.cpp │ ├── xmfile.h │ ├── xmproperties.cpp │ └── xmproperties.h └── tests ├── CMakeLists.txt ├── data ├── 005411.id3 ├── 64bit.mp4 ├── alaw.aifc ├── alaw.wav ├── ape-id3v1.mp3 ├── ape-id3v2.mp3 ├── ape.mp3 ├── bladeenc.mp3 ├── blank_video.m4v ├── broken-tenc.id3 ├── changed.mod ├── changed.s3m ├── changed.xm ├── click.mpc ├── click.wv ├── compressed_id3_frame.mp3 ├── correctness_gain_silent_output.opus ├── covr-junk.m4a ├── duplicate_id3v2.aiff ├── duplicate_id3v2.mp3 ├── duplicate_tags.wav ├── empty-seektable.flac ├── empty.aiff ├── empty.ogg ├── empty.spx ├── empty.tta ├── empty.wav ├── empty_alac.m4a ├── empty_flac.oga ├── empty_vorbis.oga ├── excessive_alloc.aif ├── excessive_alloc.mp3 ├── float64.wav ├── four_channels.wv ├── garbage.mp3 ├── gnre.m4a ├── has-tags.m4a ├── id3v22-tda.mp3 ├── ilst-is-last.m4a ├── infloop.m4a ├── infloop.mpc ├── infloop.wav ├── infloop.wv ├── invalid-frames1.mp3 ├── invalid-frames2.mp3 ├── invalid-frames3.mp3 ├── lame_cbr.mp3 ├── lame_vbr.mp3 ├── longloop.ape ├── lossless.wma ├── lowercase-fields.ogg ├── mac-390-hdr.ape ├── mac-396.ape ├── mac-399-id3v2.ape ├── mac-399-tagged.ape ├── mac-399.ape ├── mpeg2.mp3 ├── multiple-vc.flac ├── no-extension ├── no-tags.3g2 ├── no-tags.flac ├── no-tags.m4a ├── no_length.wv ├── noise.aif ├── noise_odd.aif ├── pcm_with_fact_chunk.wav ├── rare_frames.mp3 ├── segfault.aif ├── segfault.mpc ├── segfault.oga ├── segfault.wav ├── segfault2.mpc ├── silence-1.wma ├── silence-44-s.flac ├── sinewave.flac ├── stripped.xm ├── sv4_header.mpc ├── sv5_header.mpc ├── sv8_header.mpc ├── tagged.tta ├── tagged.wv ├── test.it ├── test.mod ├── test.ogg ├── test.s3m ├── test.xm ├── toc_many_children.mp3 ├── unsupported-extension.xx ├── unsynch.id3 ├── w000.mp3 ├── xing.mp3 ├── zero-length-mdat.m4a ├── zero-size-chunk.wav ├── zero-sized-padding.flac ├── zerodiv.ape └── zerodiv.mpc ├── main.cpp ├── test_aiff.cpp ├── test_ape.cpp ├── test_apetag.cpp ├── test_asf.cpp ├── test_bytevector.cpp ├── test_bytevectorlist.cpp ├── test_bytevectorstream.cpp ├── test_file.cpp ├── test_fileref.cpp ├── test_flac.cpp ├── test_flacpicture.cpp ├── test_flacunknownmetadatablock.cpp ├── test_id3v1.cpp ├── test_id3v2.cpp ├── test_info.cpp ├── test_it.cpp ├── test_list.cpp ├── test_map.cpp ├── test_mod.cpp ├── test_mp4.cpp ├── test_mp4coverart.cpp ├── test_mp4item.cpp ├── test_mpc.cpp ├── test_mpeg.cpp ├── test_ogg.cpp ├── test_oggflac.cpp ├── test_opus.cpp ├── test_propertymap.cpp ├── test_riff.cpp ├── test_s3m.cpp ├── test_speex.cpp ├── test_string.cpp ├── test_synchdata.cpp ├── test_trueaudio.cpp ├── test_wav.cpp ├── test_wavpack.cpp ├── test_xiphcomment.cpp ├── test_xm.cpp └── utils.h /.astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/.astylerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/utf8-cpp/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/3rdparty/utf8-cpp/checked.h -------------------------------------------------------------------------------- /3rdparty/utf8-cpp/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/3rdparty/utf8-cpp/core.h -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/COPYING.LGPL -------------------------------------------------------------------------------- /COPYING.MPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/COPYING.MPL -------------------------------------------------------------------------------- /ConfigureChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/ConfigureChecks.cmake -------------------------------------------------------------------------------- /Doxyfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/Doxyfile.cmake -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/INSTALL.md -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/README.md -------------------------------------------------------------------------------- /bindings/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(c) 2 | -------------------------------------------------------------------------------- /bindings/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/bindings/README -------------------------------------------------------------------------------- /bindings/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/bindings/c/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/c/tag_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/bindings/c/tag_c.cpp -------------------------------------------------------------------------------- /bindings/c/tag_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/bindings/c/tag_c.h -------------------------------------------------------------------------------- /bindings/c/taglib_c.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/bindings/c/taglib_c.pc.cmake -------------------------------------------------------------------------------- /cmake/modules/FindCppUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/cmake/modules/FindCppUnit.cmake -------------------------------------------------------------------------------- /cmake/modules/MacroEnsureVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/cmake/modules/MacroEnsureVersion.cmake -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/config.h.cmake -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/doc/README -------------------------------------------------------------------------------- /doc/api-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/doc/api-footer.html -------------------------------------------------------------------------------- /doc/api-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/doc/api-header.html -------------------------------------------------------------------------------- /doc/taglib-api.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/doc/taglib-api.css -------------------------------------------------------------------------------- /doc/taglib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/doc/taglib.png -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/framelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/examples/framelist.cpp -------------------------------------------------------------------------------- /examples/strip-id3v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/examples/strip-id3v1.cpp -------------------------------------------------------------------------------- /examples/tagreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/examples/tagreader.cpp -------------------------------------------------------------------------------- /examples/tagreader_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/examples/tagreader_c.c -------------------------------------------------------------------------------- /examples/tagwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/examples/tagwriter.cpp -------------------------------------------------------------------------------- /taglib-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib-config.cmake -------------------------------------------------------------------------------- /taglib-config.cmd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib-config.cmd.cmake -------------------------------------------------------------------------------- /taglib.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib.pc.cmake -------------------------------------------------------------------------------- /taglib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/CMakeLists.txt -------------------------------------------------------------------------------- /taglib/ape/ape-tag-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/ape-tag-format.txt -------------------------------------------------------------------------------- /taglib/ape/apefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apefile.cpp -------------------------------------------------------------------------------- /taglib/ape/apefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apefile.h -------------------------------------------------------------------------------- /taglib/ape/apefooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apefooter.cpp -------------------------------------------------------------------------------- /taglib/ape/apefooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apefooter.h -------------------------------------------------------------------------------- /taglib/ape/apeitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apeitem.cpp -------------------------------------------------------------------------------- /taglib/ape/apeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apeitem.h -------------------------------------------------------------------------------- /taglib/ape/apeproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apeproperties.cpp -------------------------------------------------------------------------------- /taglib/ape/apeproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apeproperties.h -------------------------------------------------------------------------------- /taglib/ape/apetag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apetag.cpp -------------------------------------------------------------------------------- /taglib/ape/apetag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ape/apetag.h -------------------------------------------------------------------------------- /taglib/asf/asfattribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asfattribute.cpp -------------------------------------------------------------------------------- /taglib/asf/asfattribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asfattribute.h -------------------------------------------------------------------------------- /taglib/asf/asffile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asffile.cpp -------------------------------------------------------------------------------- /taglib/asf/asffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asffile.h -------------------------------------------------------------------------------- /taglib/asf/asfpicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asfpicture.cpp -------------------------------------------------------------------------------- /taglib/asf/asfpicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asfpicture.h -------------------------------------------------------------------------------- /taglib/asf/asfproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asfproperties.cpp -------------------------------------------------------------------------------- /taglib/asf/asfproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asfproperties.h -------------------------------------------------------------------------------- /taglib/asf/asftag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asftag.cpp -------------------------------------------------------------------------------- /taglib/asf/asftag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asftag.h -------------------------------------------------------------------------------- /taglib/asf/asfutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/asf/asfutils.h -------------------------------------------------------------------------------- /taglib/audioproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/audioproperties.cpp -------------------------------------------------------------------------------- /taglib/audioproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/audioproperties.h -------------------------------------------------------------------------------- /taglib/fileref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/fileref.cpp -------------------------------------------------------------------------------- /taglib/fileref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/fileref.h -------------------------------------------------------------------------------- /taglib/flac/flacfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacfile.cpp -------------------------------------------------------------------------------- /taglib/flac/flacfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacfile.h -------------------------------------------------------------------------------- /taglib/flac/flacmetadatablock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacmetadatablock.cpp -------------------------------------------------------------------------------- /taglib/flac/flacmetadatablock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacmetadatablock.h -------------------------------------------------------------------------------- /taglib/flac/flacpicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacpicture.cpp -------------------------------------------------------------------------------- /taglib/flac/flacpicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacpicture.h -------------------------------------------------------------------------------- /taglib/flac/flacproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacproperties.cpp -------------------------------------------------------------------------------- /taglib/flac/flacproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacproperties.h -------------------------------------------------------------------------------- /taglib/flac/flacunknownmetadatablock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacunknownmetadatablock.cpp -------------------------------------------------------------------------------- /taglib/flac/flacunknownmetadatablock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/flac/flacunknownmetadatablock.h -------------------------------------------------------------------------------- /taglib/it/itfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/it/itfile.cpp -------------------------------------------------------------------------------- /taglib/it/itfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/it/itfile.h -------------------------------------------------------------------------------- /taglib/it/itproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/it/itproperties.cpp -------------------------------------------------------------------------------- /taglib/it/itproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/it/itproperties.h -------------------------------------------------------------------------------- /taglib/mod/modfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mod/modfile.cpp -------------------------------------------------------------------------------- /taglib/mod/modfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mod/modfile.h -------------------------------------------------------------------------------- /taglib/mod/modfilebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mod/modfilebase.cpp -------------------------------------------------------------------------------- /taglib/mod/modfilebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mod/modfilebase.h -------------------------------------------------------------------------------- /taglib/mod/modfileprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mod/modfileprivate.h -------------------------------------------------------------------------------- /taglib/mod/modproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mod/modproperties.cpp -------------------------------------------------------------------------------- /taglib/mod/modproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mod/modproperties.h -------------------------------------------------------------------------------- /taglib/mod/modtag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mod/modtag.cpp -------------------------------------------------------------------------------- /taglib/mod/modtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mod/modtag.h -------------------------------------------------------------------------------- /taglib/mp4/mp4atom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4atom.cpp -------------------------------------------------------------------------------- /taglib/mp4/mp4atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4atom.h -------------------------------------------------------------------------------- /taglib/mp4/mp4coverart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4coverart.cpp -------------------------------------------------------------------------------- /taglib/mp4/mp4coverart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4coverart.h -------------------------------------------------------------------------------- /taglib/mp4/mp4file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4file.cpp -------------------------------------------------------------------------------- /taglib/mp4/mp4file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4file.h -------------------------------------------------------------------------------- /taglib/mp4/mp4item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4item.cpp -------------------------------------------------------------------------------- /taglib/mp4/mp4item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4item.h -------------------------------------------------------------------------------- /taglib/mp4/mp4properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4properties.cpp -------------------------------------------------------------------------------- /taglib/mp4/mp4properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4properties.h -------------------------------------------------------------------------------- /taglib/mp4/mp4tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4tag.cpp -------------------------------------------------------------------------------- /taglib/mp4/mp4tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mp4/mp4tag.h -------------------------------------------------------------------------------- /taglib/mpc/mpcfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpc/mpcfile.cpp -------------------------------------------------------------------------------- /taglib/mpc/mpcfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpc/mpcfile.h -------------------------------------------------------------------------------- /taglib/mpc/mpcproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpc/mpcproperties.cpp -------------------------------------------------------------------------------- /taglib/mpc/mpcproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpc/mpcproperties.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v1/id3v1genres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v1/id3v1genres.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v1/id3v1genres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v1/id3v1genres.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v1/id3v1tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v1/id3v1tag.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v1/id3v1tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v1/id3v1tag.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/attachedpictureframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/attachedpictureframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/attachedpictureframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/attachedpictureframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/chapterframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/chapterframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/chapterframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/chapterframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/commentsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/commentsframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/commentsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/commentsframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/eventtimingcodesframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/eventtimingcodesframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/eventtimingcodesframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/eventtimingcodesframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/generalencapsulatedobjectframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/generalencapsulatedobjectframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/generalencapsulatedobjectframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/generalencapsulatedobjectframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/ownershipframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/ownershipframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/ownershipframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/ownershipframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/podcastframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/podcastframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/podcastframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/podcastframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/popularimeterframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/popularimeterframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/popularimeterframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/popularimeterframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/privateframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/privateframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/privateframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/privateframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/relativevolumeframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/relativevolumeframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/relativevolumeframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/relativevolumeframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/synchronizedlyricsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/synchronizedlyricsframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/synchronizedlyricsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/synchronizedlyricsframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/tableofcontentsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/tableofcontentsframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/tableofcontentsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/tableofcontentsframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/textidentificationframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/textidentificationframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/textidentificationframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/textidentificationframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/uniquefileidentifierframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/uniquefileidentifierframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/uniquefileidentifierframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/uniquefileidentifierframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/unknownframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/unknownframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/unknownframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/unknownframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/unsynchronizedlyricsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/unsynchronizedlyricsframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/unsynchronizedlyricsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/unsynchronizedlyricsframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/urllinkframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/urllinkframe.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/frames/urllinkframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/frames/urllinkframe.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2.2.0.txt -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2.3.0.txt -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2.4.0-frames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2.4.0-frames.txt -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2.4.0-structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2.4.0-structure.txt -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2extendedheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2extendedheader.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2extendedheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2extendedheader.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2footer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2footer.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2footer.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2frame.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2frame.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2framefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2framefactory.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2framefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2framefactory.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2header.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2header.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2synchdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2synchdata.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2synchdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2synchdata.h -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2tag.cpp -------------------------------------------------------------------------------- /taglib/mpeg/id3v2/id3v2tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/id3v2/id3v2tag.h -------------------------------------------------------------------------------- /taglib/mpeg/mpegfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/mpegfile.cpp -------------------------------------------------------------------------------- /taglib/mpeg/mpegfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/mpegfile.h -------------------------------------------------------------------------------- /taglib/mpeg/mpegheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/mpegheader.cpp -------------------------------------------------------------------------------- /taglib/mpeg/mpegheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/mpegheader.h -------------------------------------------------------------------------------- /taglib/mpeg/mpegproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/mpegproperties.cpp -------------------------------------------------------------------------------- /taglib/mpeg/mpegproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/mpegproperties.h -------------------------------------------------------------------------------- /taglib/mpeg/mpegutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/mpegutils.h -------------------------------------------------------------------------------- /taglib/mpeg/xingheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/xingheader.cpp -------------------------------------------------------------------------------- /taglib/mpeg/xingheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/mpeg/xingheader.h -------------------------------------------------------------------------------- /taglib/ogg/flac/oggflacfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/flac/oggflacfile.cpp -------------------------------------------------------------------------------- /taglib/ogg/flac/oggflacfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/flac/oggflacfile.h -------------------------------------------------------------------------------- /taglib/ogg/oggfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/oggfile.cpp -------------------------------------------------------------------------------- /taglib/ogg/oggfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/oggfile.h -------------------------------------------------------------------------------- /taglib/ogg/oggpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/oggpage.cpp -------------------------------------------------------------------------------- /taglib/ogg/oggpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/oggpage.h -------------------------------------------------------------------------------- /taglib/ogg/oggpageheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/oggpageheader.cpp -------------------------------------------------------------------------------- /taglib/ogg/oggpageheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/oggpageheader.h -------------------------------------------------------------------------------- /taglib/ogg/opus/opusfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/opus/opusfile.cpp -------------------------------------------------------------------------------- /taglib/ogg/opus/opusfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/opus/opusfile.h -------------------------------------------------------------------------------- /taglib/ogg/opus/opusproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/opus/opusproperties.cpp -------------------------------------------------------------------------------- /taglib/ogg/opus/opusproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/opus/opusproperties.h -------------------------------------------------------------------------------- /taglib/ogg/speex/speexfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/speex/speexfile.cpp -------------------------------------------------------------------------------- /taglib/ogg/speex/speexfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/speex/speexfile.h -------------------------------------------------------------------------------- /taglib/ogg/speex/speexproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/speex/speexproperties.cpp -------------------------------------------------------------------------------- /taglib/ogg/speex/speexproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/speex/speexproperties.h -------------------------------------------------------------------------------- /taglib/ogg/vorbis/vorbisfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/vorbis/vorbisfile.cpp -------------------------------------------------------------------------------- /taglib/ogg/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /taglib/ogg/vorbis/vorbisproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/vorbis/vorbisproperties.cpp -------------------------------------------------------------------------------- /taglib/ogg/vorbis/vorbisproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/vorbis/vorbisproperties.h -------------------------------------------------------------------------------- /taglib/ogg/xiphcomment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/xiphcomment.cpp -------------------------------------------------------------------------------- /taglib/ogg/xiphcomment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/ogg/xiphcomment.h -------------------------------------------------------------------------------- /taglib/riff/aiff/aifffile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/aiff/aifffile.cpp -------------------------------------------------------------------------------- /taglib/riff/aiff/aifffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/aiff/aifffile.h -------------------------------------------------------------------------------- /taglib/riff/aiff/aiffproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/aiff/aiffproperties.cpp -------------------------------------------------------------------------------- /taglib/riff/aiff/aiffproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/aiff/aiffproperties.h -------------------------------------------------------------------------------- /taglib/riff/rifffile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/rifffile.cpp -------------------------------------------------------------------------------- /taglib/riff/rifffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/rifffile.h -------------------------------------------------------------------------------- /taglib/riff/riffutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/riffutils.h -------------------------------------------------------------------------------- /taglib/riff/wav/infotag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/wav/infotag.cpp -------------------------------------------------------------------------------- /taglib/riff/wav/infotag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/wav/infotag.h -------------------------------------------------------------------------------- /taglib/riff/wav/wavfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/wav/wavfile.cpp -------------------------------------------------------------------------------- /taglib/riff/wav/wavfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/wav/wavfile.h -------------------------------------------------------------------------------- /taglib/riff/wav/wavproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/wav/wavproperties.cpp -------------------------------------------------------------------------------- /taglib/riff/wav/wavproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/riff/wav/wavproperties.h -------------------------------------------------------------------------------- /taglib/s3m/s3mfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/s3m/s3mfile.cpp -------------------------------------------------------------------------------- /taglib/s3m/s3mfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/s3m/s3mfile.h -------------------------------------------------------------------------------- /taglib/s3m/s3mproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/s3m/s3mproperties.cpp -------------------------------------------------------------------------------- /taglib/s3m/s3mproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/s3m/s3mproperties.h -------------------------------------------------------------------------------- /taglib/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/tag.cpp -------------------------------------------------------------------------------- /taglib/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/tag.h -------------------------------------------------------------------------------- /taglib/taglib_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/taglib_config.h.cmake -------------------------------------------------------------------------------- /taglib/taglib_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/taglib_export.h -------------------------------------------------------------------------------- /taglib/tagunion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/tagunion.cpp -------------------------------------------------------------------------------- /taglib/tagunion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/tagunion.h -------------------------------------------------------------------------------- /taglib/tagutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/tagutils.cpp -------------------------------------------------------------------------------- /taglib/tagutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/tagutils.h -------------------------------------------------------------------------------- /taglib/toolkit/taglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/taglib.h -------------------------------------------------------------------------------- /taglib/toolkit/tbytevector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tbytevector.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tbytevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tbytevector.h -------------------------------------------------------------------------------- /taglib/toolkit/tbytevectorlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tbytevectorlist.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tbytevectorlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tbytevectorlist.h -------------------------------------------------------------------------------- /taglib/toolkit/tbytevectorstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tbytevectorstream.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tbytevectorstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tbytevectorstream.h -------------------------------------------------------------------------------- /taglib/toolkit/tdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tdebug.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tdebug.h -------------------------------------------------------------------------------- /taglib/toolkit/tdebuglistener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tdebuglistener.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tdebuglistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tdebuglistener.h -------------------------------------------------------------------------------- /taglib/toolkit/tfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tfile.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tfile.h -------------------------------------------------------------------------------- /taglib/toolkit/tfilestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tfilestream.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tfilestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tfilestream.h -------------------------------------------------------------------------------- /taglib/toolkit/tiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tiostream.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tiostream.h -------------------------------------------------------------------------------- /taglib/toolkit/tlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tlist.h -------------------------------------------------------------------------------- /taglib/toolkit/tlist.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tlist.tcc -------------------------------------------------------------------------------- /taglib/toolkit/tmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tmap.h -------------------------------------------------------------------------------- /taglib/toolkit/tmap.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tmap.tcc -------------------------------------------------------------------------------- /taglib/toolkit/tpropertymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tpropertymap.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tpropertymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tpropertymap.h -------------------------------------------------------------------------------- /taglib/toolkit/trefcounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/trefcounter.cpp -------------------------------------------------------------------------------- /taglib/toolkit/trefcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/trefcounter.h -------------------------------------------------------------------------------- /taglib/toolkit/tstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tstring.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tstring.h -------------------------------------------------------------------------------- /taglib/toolkit/tstringlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tstringlist.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tstringlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tstringlist.h -------------------------------------------------------------------------------- /taglib/toolkit/tutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tutils.h -------------------------------------------------------------------------------- /taglib/toolkit/tzlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tzlib.cpp -------------------------------------------------------------------------------- /taglib/toolkit/tzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/toolkit/tzlib.h -------------------------------------------------------------------------------- /taglib/trueaudio/trueaudiofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/trueaudio/trueaudiofile.cpp -------------------------------------------------------------------------------- /taglib/trueaudio/trueaudiofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/trueaudio/trueaudiofile.h -------------------------------------------------------------------------------- /taglib/trueaudio/trueaudioproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/trueaudio/trueaudioproperties.cpp -------------------------------------------------------------------------------- /taglib/trueaudio/trueaudioproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/trueaudio/trueaudioproperties.h -------------------------------------------------------------------------------- /taglib/wavpack/wavpackfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/wavpack/wavpackfile.cpp -------------------------------------------------------------------------------- /taglib/wavpack/wavpackfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/wavpack/wavpackfile.h -------------------------------------------------------------------------------- /taglib/wavpack/wavpackproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/wavpack/wavpackproperties.cpp -------------------------------------------------------------------------------- /taglib/wavpack/wavpackproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/wavpack/wavpackproperties.h -------------------------------------------------------------------------------- /taglib/xm/xmfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/xm/xmfile.cpp -------------------------------------------------------------------------------- /taglib/xm/xmfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/xm/xmfile.h -------------------------------------------------------------------------------- /taglib/xm/xmproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/xm/xmproperties.cpp -------------------------------------------------------------------------------- /taglib/xm/xmproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/taglib/xm/xmproperties.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/data/005411.id3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/005411.id3 -------------------------------------------------------------------------------- /tests/data/64bit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/64bit.mp4 -------------------------------------------------------------------------------- /tests/data/alaw.aifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/alaw.aifc -------------------------------------------------------------------------------- /tests/data/alaw.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/alaw.wav -------------------------------------------------------------------------------- /tests/data/ape-id3v1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/ape-id3v1.mp3 -------------------------------------------------------------------------------- /tests/data/ape-id3v2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/ape-id3v2.mp3 -------------------------------------------------------------------------------- /tests/data/ape.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/ape.mp3 -------------------------------------------------------------------------------- /tests/data/bladeenc.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/bladeenc.mp3 -------------------------------------------------------------------------------- /tests/data/blank_video.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/blank_video.m4v -------------------------------------------------------------------------------- /tests/data/broken-tenc.id3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/broken-tenc.id3 -------------------------------------------------------------------------------- /tests/data/changed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/changed.mod -------------------------------------------------------------------------------- /tests/data/changed.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/changed.s3m -------------------------------------------------------------------------------- /tests/data/changed.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/changed.xm -------------------------------------------------------------------------------- /tests/data/click.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/click.mpc -------------------------------------------------------------------------------- /tests/data/click.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/click.wv -------------------------------------------------------------------------------- /tests/data/compressed_id3_frame.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/compressed_id3_frame.mp3 -------------------------------------------------------------------------------- /tests/data/correctness_gain_silent_output.opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/correctness_gain_silent_output.opus -------------------------------------------------------------------------------- /tests/data/covr-junk.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/covr-junk.m4a -------------------------------------------------------------------------------- /tests/data/duplicate_id3v2.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/duplicate_id3v2.aiff -------------------------------------------------------------------------------- /tests/data/duplicate_id3v2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/duplicate_id3v2.mp3 -------------------------------------------------------------------------------- /tests/data/duplicate_tags.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/duplicate_tags.wav -------------------------------------------------------------------------------- /tests/data/empty-seektable.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/empty-seektable.flac -------------------------------------------------------------------------------- /tests/data/empty.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/empty.aiff -------------------------------------------------------------------------------- /tests/data/empty.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/empty.ogg -------------------------------------------------------------------------------- /tests/data/empty.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/empty.spx -------------------------------------------------------------------------------- /tests/data/empty.tta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/empty.tta -------------------------------------------------------------------------------- /tests/data/empty.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/empty.wav -------------------------------------------------------------------------------- /tests/data/empty_alac.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/empty_alac.m4a -------------------------------------------------------------------------------- /tests/data/empty_flac.oga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/empty_flac.oga -------------------------------------------------------------------------------- /tests/data/empty_vorbis.oga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/empty_vorbis.oga -------------------------------------------------------------------------------- /tests/data/excessive_alloc.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/excessive_alloc.aif -------------------------------------------------------------------------------- /tests/data/excessive_alloc.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/excessive_alloc.mp3 -------------------------------------------------------------------------------- /tests/data/float64.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/float64.wav -------------------------------------------------------------------------------- /tests/data/four_channels.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/four_channels.wv -------------------------------------------------------------------------------- /tests/data/garbage.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/garbage.mp3 -------------------------------------------------------------------------------- /tests/data/gnre.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/gnre.m4a -------------------------------------------------------------------------------- /tests/data/has-tags.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/has-tags.m4a -------------------------------------------------------------------------------- /tests/data/id3v22-tda.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/id3v22-tda.mp3 -------------------------------------------------------------------------------- /tests/data/ilst-is-last.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/ilst-is-last.m4a -------------------------------------------------------------------------------- /tests/data/infloop.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/infloop.m4a -------------------------------------------------------------------------------- /tests/data/infloop.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/infloop.mpc -------------------------------------------------------------------------------- /tests/data/infloop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/infloop.wav -------------------------------------------------------------------------------- /tests/data/infloop.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/infloop.wv -------------------------------------------------------------------------------- /tests/data/invalid-frames1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/invalid-frames1.mp3 -------------------------------------------------------------------------------- /tests/data/invalid-frames2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/invalid-frames2.mp3 -------------------------------------------------------------------------------- /tests/data/invalid-frames3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/invalid-frames3.mp3 -------------------------------------------------------------------------------- /tests/data/lame_cbr.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/lame_cbr.mp3 -------------------------------------------------------------------------------- /tests/data/lame_vbr.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/lame_vbr.mp3 -------------------------------------------------------------------------------- /tests/data/longloop.ape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/longloop.ape -------------------------------------------------------------------------------- /tests/data/lossless.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/lossless.wma -------------------------------------------------------------------------------- /tests/data/lowercase-fields.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/lowercase-fields.ogg -------------------------------------------------------------------------------- /tests/data/mac-390-hdr.ape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/mac-390-hdr.ape -------------------------------------------------------------------------------- /tests/data/mac-396.ape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/mac-396.ape -------------------------------------------------------------------------------- /tests/data/mac-399-id3v2.ape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/mac-399-id3v2.ape -------------------------------------------------------------------------------- /tests/data/mac-399-tagged.ape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/mac-399-tagged.ape -------------------------------------------------------------------------------- /tests/data/mac-399.ape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/mac-399.ape -------------------------------------------------------------------------------- /tests/data/mpeg2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/mpeg2.mp3 -------------------------------------------------------------------------------- /tests/data/multiple-vc.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/multiple-vc.flac -------------------------------------------------------------------------------- /tests/data/no-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/no-extension -------------------------------------------------------------------------------- /tests/data/no-tags.3g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/no-tags.3g2 -------------------------------------------------------------------------------- /tests/data/no-tags.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/no-tags.flac -------------------------------------------------------------------------------- /tests/data/no-tags.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/no-tags.m4a -------------------------------------------------------------------------------- /tests/data/no_length.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/no_length.wv -------------------------------------------------------------------------------- /tests/data/noise.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/noise.aif -------------------------------------------------------------------------------- /tests/data/noise_odd.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/noise_odd.aif -------------------------------------------------------------------------------- /tests/data/pcm_with_fact_chunk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/pcm_with_fact_chunk.wav -------------------------------------------------------------------------------- /tests/data/rare_frames.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/rare_frames.mp3 -------------------------------------------------------------------------------- /tests/data/segfault.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/segfault.aif -------------------------------------------------------------------------------- /tests/data/segfault.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/segfault.mpc -------------------------------------------------------------------------------- /tests/data/segfault.oga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/segfault.oga -------------------------------------------------------------------------------- /tests/data/segfault.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/segfault.wav -------------------------------------------------------------------------------- /tests/data/segfault2.mpc: -------------------------------------------------------------------------------- 1 | MPCKSH -------------------------------------------------------------------------------- /tests/data/silence-1.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/silence-1.wma -------------------------------------------------------------------------------- /tests/data/silence-44-s.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/silence-44-s.flac -------------------------------------------------------------------------------- /tests/data/sinewave.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/sinewave.flac -------------------------------------------------------------------------------- /tests/data/stripped.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/stripped.xm -------------------------------------------------------------------------------- /tests/data/sv4_header.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/sv4_header.mpc -------------------------------------------------------------------------------- /tests/data/sv5_header.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/sv5_header.mpc -------------------------------------------------------------------------------- /tests/data/sv8_header.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/sv8_header.mpc -------------------------------------------------------------------------------- /tests/data/tagged.tta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/tagged.tta -------------------------------------------------------------------------------- /tests/data/tagged.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/tagged.wv -------------------------------------------------------------------------------- /tests/data/test.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/test.it -------------------------------------------------------------------------------- /tests/data/test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/test.mod -------------------------------------------------------------------------------- /tests/data/test.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/test.ogg -------------------------------------------------------------------------------- /tests/data/test.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/test.s3m -------------------------------------------------------------------------------- /tests/data/test.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/test.xm -------------------------------------------------------------------------------- /tests/data/toc_many_children.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/toc_many_children.mp3 -------------------------------------------------------------------------------- /tests/data/unsupported-extension.xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/unsupported-extension.xx -------------------------------------------------------------------------------- /tests/data/unsynch.id3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/unsynch.id3 -------------------------------------------------------------------------------- /tests/data/w000.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/w000.mp3 -------------------------------------------------------------------------------- /tests/data/xing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/xing.mp3 -------------------------------------------------------------------------------- /tests/data/zero-length-mdat.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/zero-length-mdat.m4a -------------------------------------------------------------------------------- /tests/data/zero-size-chunk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/zero-size-chunk.wav -------------------------------------------------------------------------------- /tests/data/zero-sized-padding.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/zero-sized-padding.flac -------------------------------------------------------------------------------- /tests/data/zerodiv.ape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/zerodiv.ape -------------------------------------------------------------------------------- /tests/data/zerodiv.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/data/zerodiv.mpc -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/test_aiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_aiff.cpp -------------------------------------------------------------------------------- /tests/test_ape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_ape.cpp -------------------------------------------------------------------------------- /tests/test_apetag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_apetag.cpp -------------------------------------------------------------------------------- /tests/test_asf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_asf.cpp -------------------------------------------------------------------------------- /tests/test_bytevector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_bytevector.cpp -------------------------------------------------------------------------------- /tests/test_bytevectorlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_bytevectorlist.cpp -------------------------------------------------------------------------------- /tests/test_bytevectorstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_bytevectorstream.cpp -------------------------------------------------------------------------------- /tests/test_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_file.cpp -------------------------------------------------------------------------------- /tests/test_fileref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_fileref.cpp -------------------------------------------------------------------------------- /tests/test_flac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_flac.cpp -------------------------------------------------------------------------------- /tests/test_flacpicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_flacpicture.cpp -------------------------------------------------------------------------------- /tests/test_flacunknownmetadatablock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_flacunknownmetadatablock.cpp -------------------------------------------------------------------------------- /tests/test_id3v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_id3v1.cpp -------------------------------------------------------------------------------- /tests/test_id3v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_id3v2.cpp -------------------------------------------------------------------------------- /tests/test_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_info.cpp -------------------------------------------------------------------------------- /tests/test_it.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_it.cpp -------------------------------------------------------------------------------- /tests/test_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_list.cpp -------------------------------------------------------------------------------- /tests/test_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_map.cpp -------------------------------------------------------------------------------- /tests/test_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_mod.cpp -------------------------------------------------------------------------------- /tests/test_mp4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_mp4.cpp -------------------------------------------------------------------------------- /tests/test_mp4coverart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_mp4coverart.cpp -------------------------------------------------------------------------------- /tests/test_mp4item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_mp4item.cpp -------------------------------------------------------------------------------- /tests/test_mpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_mpc.cpp -------------------------------------------------------------------------------- /tests/test_mpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_mpeg.cpp -------------------------------------------------------------------------------- /tests/test_ogg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_ogg.cpp -------------------------------------------------------------------------------- /tests/test_oggflac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_oggflac.cpp -------------------------------------------------------------------------------- /tests/test_opus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_opus.cpp -------------------------------------------------------------------------------- /tests/test_propertymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_propertymap.cpp -------------------------------------------------------------------------------- /tests/test_riff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_riff.cpp -------------------------------------------------------------------------------- /tests/test_s3m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_s3m.cpp -------------------------------------------------------------------------------- /tests/test_speex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_speex.cpp -------------------------------------------------------------------------------- /tests/test_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_string.cpp -------------------------------------------------------------------------------- /tests/test_synchdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_synchdata.cpp -------------------------------------------------------------------------------- /tests/test_trueaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_trueaudio.cpp -------------------------------------------------------------------------------- /tests/test_wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_wav.cpp -------------------------------------------------------------------------------- /tests/test_wavpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_wavpack.cpp -------------------------------------------------------------------------------- /tests/test_xiphcomment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_xiphcomment.cpp -------------------------------------------------------------------------------- /tests/test_xm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/test_xm.cpp -------------------------------------------------------------------------------- /tests/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmpz/taglib/HEAD/tests/utils.h --------------------------------------------------------------------------------