├── .clang-format ├── .githooks └── pre-commit ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md ├── images │ ├── HeSuVi-channel-map.png │ ├── Lokalise_logo_colour_black_text.svg │ ├── MainWindow.png │ └── MiniWindow.png └── workflows │ └── debug.yml ├── .gitignore ├── .gitmodules ├── .hgignore ├── .hgtags ├── .vscode ├── launch.json └── settings.json ├── Application ├── AppController.h ├── AppController.m ├── DockIconController.h ├── DockIconController.m ├── MediaKeysApplication.h ├── MediaKeysApplication.m ├── PlaybackController.h ├── PlaybackController.m ├── PlaybackEventController.h ├── PlaybackEventController.m ├── ScriptAdditions.h └── ScriptAdditions.m ├── Audio ├── AudioContainer.h ├── AudioContainer.m ├── AudioDecoder.h ├── AudioDecoder.m ├── AudioMetadataReader.h ├── AudioMetadataReader.m ├── AudioMetadataWriter.h ├── AudioMetadataWriter.m ├── AudioPlayer.h ├── AudioPlayer.m ├── AudioPropertiesReader.h ├── AudioPropertiesReader.m ├── AudioSource.h ├── AudioSource.m ├── Chain │ ├── AudioChunk.h │ ├── AudioChunk.m │ ├── BufferChain.h │ ├── BufferChain.m │ ├── ChunkList.h │ ├── ChunkList.m │ ├── ConverterNode.h │ ├── ConverterNode.m │ ├── DSP │ │ ├── DSPDownmixNode.h │ │ ├── DSPDownmixNode.m │ │ ├── DSPEqualizerNode.h │ │ ├── DSPEqualizerNode.m │ │ ├── DSPFSurroundNode.h │ │ ├── DSPFSurroundNode.m │ │ ├── DSPFaderNode.h │ │ ├── DSPFaderNode.m │ │ ├── DSPHRTFNode.h │ │ ├── DSPHRTFNode.m │ │ ├── DSPRubberbandNode.h │ │ ├── DSPRubberbandNode.m │ │ ├── Downmix.h │ │ ├── Downmix.m │ │ ├── FSurroundFilter.h │ │ ├── FSurroundFilter.mm │ │ ├── FadedBuffer.h │ │ ├── FadedBuffer.m │ │ ├── HeadphoneFilter.h │ │ ├── HeadphoneFilter.mm │ │ ├── SimpleBuffer.h │ │ └── SimpleBuffer.m │ ├── DSPNode.h │ ├── DSPNode.m │ ├── InputNode.h │ ├── InputNode.m │ ├── Node.h │ ├── Node.m │ ├── OutputNode.h │ ├── OutputNode.m │ ├── VisualizationNode.h │ └── VisualizationNode.m ├── CogAudio-Bridging-Header.h ├── CogAudio.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── CogAudio.xcscheme ├── CogAudio_Prefix.pch ├── CogPluginMulti.h ├── CogPluginMulti.m ├── Helper.h ├── Helper.m ├── Info.plist ├── Output │ ├── OutputAVFoundation.h │ ├── OutputAVFoundation.m │ ├── OutputCoreAudio.h │ └── OutputCoreAudio.m ├── Plugin.h ├── PluginController.h ├── PluginController.mm ├── Status.h ├── ThirdParty │ ├── CoreAudioUtils │ │ ├── CoreAudioUtils.h │ │ └── CoreAudioUtils.m │ ├── deadbeef │ │ ├── fft.h │ │ ├── fft_accelerate.c │ │ └── fft_pffft.c │ ├── fsurround │ │ ├── channelmaps.cpp │ │ ├── channelmaps.h │ │ ├── freesurround_decoder.cpp │ │ └── freesurround_decoder.h │ ├── hdcd │ │ ├── hdcd_decode2.c │ │ └── hdcd_decode2.h │ ├── hrtf │ │ ├── Endianness.h │ │ ├── HrtfData.cpp │ │ ├── HrtfData.h │ │ ├── HrtfTypes.h │ │ └── IHrtfData.h │ ├── lvqcl │ │ ├── License │ │ │ ├── LICENSE.LGPL │ │ │ └── License.txt │ │ ├── lpc.c │ │ ├── lpc.h │ │ └── util.h │ ├── rsstate.cpp │ ├── rsstate.h │ └── rsstate.hpp ├── Utils │ ├── BadSampleCleaner.h │ ├── BadSampleCleaner.m │ ├── CogSemaphore.h │ ├── CogSemaphore.m │ ├── dsd2float.h │ └── floatlist.c └── Visualization │ ├── MIDIVisualizationController.h │ ├── MIDIVisualizationController.m │ ├── VisualizationController.h │ ├── VisualizationController.m │ └── VisualizationController.swift ├── Base.lproj ├── AboutWindowController.xib ├── Equalizer.xib ├── Feedback.xib ├── FileTree.xib ├── InfoInspector.xib ├── LyricsWindow.xib ├── MainMenu.xib ├── OpenURLPanel.xib ├── SCVisWindow.xib ├── SpectrumWindow.xib └── SpotlightPanel.xib ├── CODE_OF_CONDUCT.md ├── COMPILE ├── COPYING ├── Changelog ├── Cog-Bridging-Header.h ├── Cog.entitlements ├── Cog.q1.json ├── Cog.sdef ├── Cog.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── Cog.xcscheme ├── CogAssets.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── Cog color.colorset │ └── Contents.json ├── Contents.json └── Images │ ├── Contents.json │ ├── PauseColorful.imageset │ ├── Contents.json │ └── PauseColorful.png │ ├── PauseNormal.imageset │ ├── Contents.json │ └── PauseNormal.png │ ├── Plaque.imageset │ ├── Contents.json │ └── Plaque.png │ ├── PlayColorful.imageset │ ├── Contents.json │ └── PlayColorful.png │ ├── PlayNormal.imageset │ ├── Contents.json │ └── PlayNormal.png │ ├── PrerenderedLogo.imageset │ ├── Contents.json │ └── PrerenderedLogo.png │ ├── StopColorful.imageset │ ├── Contents.json │ └── StopColorful.png │ ├── StopNormal.imageset │ ├── Contents.json │ └── StopNormal.png │ ├── deadItemsTemplate.imageset │ ├── Contents.json │ └── deadItemsTemplate.pdf │ ├── duplicateItemsTemplate.imageset │ ├── Contents.json │ └── duplicateItemsTemplate.pdf │ ├── equalizerTemplate.imageset │ ├── Contents.json │ └── equalizerTemplate.pdf │ ├── infoTemplate.imageset │ ├── Contents.json │ └── infoTemplate.pdf │ ├── miniModeOffTemplate.imageset │ ├── Contents.json │ └── miniModeOffTemplate.pdf │ ├── miniModeOnTemplate.imageset │ ├── Contents.json │ └── miniModeOnTemplate.pdf │ ├── missingArt.imageset │ ├── Contents.json │ ├── missingArt.png │ └── missingArt@2x.png │ ├── navigatorTemplate.imageset │ ├── Contents.json │ └── navigatorTemplate.pdf │ ├── nextTemplate.imageset │ ├── Contents.json │ └── nextTemplate.pdf │ ├── pauseTemplate.imageset │ ├── Contents.json │ └── pauseTemplate.pdf │ ├── playTemplate.imageset │ ├── Contents.json │ └── playTemplate.pdf │ ├── previousTemplate.imageset │ ├── Contents.json │ └── previousTemplate.pdf │ ├── randomizeTemplate.imageset │ ├── Contents.json │ └── randomizeTemplate.pdf │ ├── repeatModeAlbumTemplate.imageset │ ├── Contents.json │ └── repeatModeAlbumTemplate.pdf │ ├── repeatModeAllTemplate.imageset │ ├── Contents.json │ └── repeatModeAllTemplate.pdf │ ├── repeatModeOffTemplate.imageset │ ├── Contents.json │ └── repeatModeOffTemplate.pdf │ ├── repeatModeOneTemplate.imageset │ ├── Contents.json │ └── repeatModeOneTemplate.pdf │ ├── shuffleAlbumTemplate.imageset │ ├── Contents.json │ └── shuffleAlbumTemplate.pdf │ ├── shuffleOffTemplate.imageset │ ├── Contents.json │ └── shuffleOffTemplate.pdf │ ├── shuffleOnTemplate.imageset │ ├── Contents.json │ └── shuffleOnTemplate.pdf │ ├── stopTemplate.imageset │ ├── Contents.json │ └── stopTemplate.pdf │ ├── volume1Template.imageset │ ├── Contents.json │ └── volume1Template.pdf │ └── volume3Template.imageset │ ├── Contents.json │ └── volume3Template.pdf ├── Cog_Prefix.pch ├── DataModel.xcdatamodeld └── DataModel.xcdatamodel │ └── contents ├── DiskImage ├── dmg-cog.scpt ├── howto ├── make-diskimage.sh ├── make-release.sh ├── pkg-dmg └── template.dmg.bz2 ├── Equalizer ├── EqualizerWindowController.h └── EqualizerWindowController.m ├── Feedback ├── FeedbackController.h ├── FeedbackController.m ├── FeedbackSocket.h └── FeedbackSocket.m ├── FileTree ├── ContainedNode.h ├── ContainedNode.m ├── ContainerNode.h ├── ContainerNode.m ├── DirectoryNode.h ├── DirectoryNode.m ├── FileIconCell.h ├── FileIconCell.m ├── FileNode.h ├── FileNode.m ├── FileTreeController.h ├── FileTreeController.m ├── FileTreeDataSource.h ├── FileTreeDataSource.m ├── FileTreeOutlineView.h ├── FileTreeOutlineView.m ├── FileTreeViewController.h ├── FileTreeViewController.m ├── PathNode.h ├── PathNode.m ├── PathWatcher.h ├── PathWatcher.m ├── SmartFolderNode.h └── SmartFolderNode.m ├── Formatters ├── BlankZeroFormatter.h ├── BlankZeroFormatter.m ├── IndexFormatter.h ├── IndexFormatter.m ├── SecondsFormatter.h └── SecondsFormatter.m ├── Frameworks ├── AdPlug │ ├── AdPlug │ │ ├── Info.plist │ │ └── version.h │ └── libAdPlug.xcodeproj │ │ └── project.pbxproj ├── Dumb │ ├── Dumb.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Dumb Framework.xcscheme │ ├── Info.plist │ ├── dumb │ │ ├── CHANGELOG.md │ │ ├── COMPILING.md │ │ ├── DUMBFILE_SYSTEM.md │ │ ├── README.md │ │ ├── include │ │ │ ├── dumb.h │ │ │ └── internal │ │ │ │ ├── aldumb.h │ │ │ │ ├── barray.h │ │ │ │ ├── dumb.h │ │ │ │ ├── dumbfile.h │ │ │ │ ├── it.h │ │ │ │ ├── lpc.h │ │ │ │ ├── resampler.h │ │ │ │ ├── riff.h │ │ │ │ ├── stack_alloc.h │ │ │ │ └── tarray.h │ │ ├── prj │ │ │ ├── .gitignore │ │ │ └── dumb │ │ │ │ └── dumb.pro │ │ └── src │ │ │ ├── core │ │ │ ├── atexit.c │ │ │ ├── duhlen.c │ │ │ ├── duhtag.c │ │ │ ├── dumbfile.c │ │ │ ├── loadduh.c │ │ │ ├── makeduh.c │ │ │ ├── rawsig.c │ │ │ ├── readduh.c │ │ │ ├── register.c │ │ │ ├── rendduh.c │ │ │ ├── rendsig.c │ │ │ └── unload.c │ │ │ ├── helpers │ │ │ ├── barray.c │ │ │ ├── clickrem.c │ │ │ ├── lpc.c │ │ │ ├── memfile.c │ │ │ ├── resamp2.inc │ │ │ ├── resamp3.inc │ │ │ ├── resample.c │ │ │ ├── resample.inc │ │ │ ├── resampler.c │ │ │ ├── riff.c │ │ │ ├── sampbuf.c │ │ │ ├── silence.c │ │ │ ├── stdfile.c │ │ │ └── tarray.c │ │ │ └── it │ │ │ ├── itload.c │ │ │ ├── itload2.c │ │ │ ├── itmisc.c │ │ │ ├── itorder.c │ │ │ ├── itread.c │ │ │ ├── itread2.c │ │ │ ├── itrender.c │ │ │ ├── itunload.c │ │ │ ├── load669.c │ │ │ ├── load6692.c │ │ │ ├── loadamf.c │ │ │ ├── loadamf2.c │ │ │ ├── loadany.c │ │ │ ├── loadany2.c │ │ │ ├── loadasy.c │ │ │ ├── loadasy2.c │ │ │ ├── loadmod.c │ │ │ ├── loadmod2.c │ │ │ ├── loadmtm.c │ │ │ ├── loadmtm2.c │ │ │ ├── loadokt.c │ │ │ ├── loadokt2.c │ │ │ ├── loadoldpsm.c │ │ │ ├── loadoldpsm2.c │ │ │ ├── loadpsm.c │ │ │ ├── loadpsm2.c │ │ │ ├── loadptm.c │ │ │ ├── loadptm2.c │ │ │ ├── loadriff.c │ │ │ ├── loadriff2.c │ │ │ ├── loads3m.c │ │ │ ├── loads3m2.c │ │ │ ├── loadstm.c │ │ │ ├── loadstm2.c │ │ │ ├── loadxm.c │ │ │ ├── loadxm2.c │ │ │ ├── ptmeffect.c │ │ │ ├── read669.c │ │ │ ├── read6692.c │ │ │ ├── readam.c │ │ │ ├── readamf.c │ │ │ ├── readamf2.c │ │ │ ├── readany.c │ │ │ ├── readany2.c │ │ │ ├── readasy.c │ │ │ ├── readdsmf.c │ │ │ ├── readmod.c │ │ │ ├── readmod2.c │ │ │ ├── readmtm.c │ │ │ ├── readokt.c │ │ │ ├── readokt2.c │ │ │ ├── readoldpsm.c │ │ │ ├── readpsm.c │ │ │ ├── readptm.c │ │ │ ├── readriff.c │ │ │ ├── reads3m.c │ │ │ ├── reads3m2.c │ │ │ ├── readstm.c │ │ │ ├── readstm2.c │ │ │ ├── readxm.c │ │ │ ├── readxm2.c │ │ │ └── xmeffect.c │ ├── en.lproj │ │ └── InfoPlist.strings │ └── es.lproj │ │ └── InfoPlist.strings ├── File_Extractor │ ├── File_Extractor.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── File_Extractor.xcscheme │ └── File_Extractor │ │ ├── 7z_C │ │ ├── 7z.h │ │ ├── 7zAlloc.c │ │ ├── 7zAlloc.h │ │ ├── 7zBuf.c │ │ ├── 7zBuf.h │ │ ├── 7zBuf2.c │ │ ├── 7zC.txt │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zDecode.c │ │ ├── 7zDecode.h │ │ ├── 7zExtract.c │ │ ├── 7zExtract.h │ │ ├── 7zFile.c │ │ ├── 7zFile.h │ │ ├── 7zHeader.c │ │ ├── 7zHeader.h │ │ ├── 7zIn.c │ │ ├── 7zIn.h │ │ ├── 7zItem.c │ │ ├── 7zItem.h │ │ ├── 7zStream.c │ │ ├── 7zTypes.h │ │ ├── 7zVersion.h │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── Bcj2.c │ │ ├── Bcj2.h │ │ ├── Bra.c │ │ ├── Bra.h │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── CpuArch.c │ │ ├── CpuArch.h │ │ ├── Delta.c │ │ ├── Delta.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzFindMt.c │ │ ├── LzFindMt.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.c │ │ ├── Lzma2Dec.h │ │ ├── Lzma2Enc.c │ │ ├── Lzma2Enc.h │ │ ├── Lzma86.h │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── LzmaTypes.h │ │ ├── MtCoder.c │ │ ├── MtCoder.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.c │ │ ├── Ppmd7.h │ │ ├── Ppmd7Dec.c │ │ ├── Ppmd7Enc.c │ │ ├── RotateDefs.h │ │ ├── Threads.h │ │ ├── Types.h │ │ ├── changes.txt │ │ ├── lzma.txt │ │ ├── posix │ │ │ ├── Threads.c │ │ │ └── Threads.h │ │ ├── readme.txt │ │ └── win32 │ │ │ ├── Threads.c │ │ │ └── Threads.h │ │ ├── File_Extractor-Info.plist │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── fex │ │ ├── Binary_Extractor.cpp │ │ ├── Binary_Extractor.h │ │ ├── Data_Reader.cpp │ │ ├── Data_Reader.h │ │ ├── File_Extractor.cpp │ │ ├── File_Extractor.h │ │ ├── Gzip_Extractor.cpp │ │ ├── Gzip_Extractor.h │ │ ├── Gzip_Reader.cpp │ │ ├── Gzip_Reader.h │ │ ├── Rar_Extractor.cpp │ │ ├── Rar_Extractor.h │ │ ├── Zip7_Extractor.cpp │ │ ├── Zip7_Extractor.h │ │ ├── Zip_Extractor.cpp │ │ ├── Zip_Extractor.h │ │ ├── Zlib_Inflater.cpp │ │ ├── Zlib_Inflater.h │ │ ├── blargg_common.cpp │ │ ├── blargg_common.h │ │ ├── blargg_config.h │ │ ├── blargg_endian.h │ │ ├── blargg_errors.cpp │ │ ├── blargg_errors.h │ │ ├── blargg_source.h │ │ ├── fex.cpp │ │ └── fex.h │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ └── InfoPlist.strings │ │ └── unrar │ │ ├── acknow.txt │ │ ├── archive.cpp │ │ ├── archive.hpp │ │ ├── arcread.cpp │ │ ├── array.hpp │ │ ├── blake2s.cpp │ │ ├── blake2s.hpp │ │ ├── blake2s_sse.cpp │ │ ├── blake2sp.cpp │ │ ├── changes.txt │ │ ├── coder.cpp │ │ ├── coder.hpp │ │ ├── compress.hpp │ │ ├── crc.cpp │ │ ├── encname.cpp │ │ ├── encname.hpp │ │ ├── extract.cpp │ │ ├── getbits.cpp │ │ ├── getbits.hpp │ │ ├── hash.cpp │ │ ├── hash.hpp │ │ ├── headers.cpp │ │ ├── headers.hpp │ │ ├── headers5.hpp │ │ ├── license.txt │ │ ├── model.cpp │ │ ├── model.hpp │ │ ├── pathfn.cpp │ │ ├── rar.hpp │ │ ├── rarvm.cpp │ │ ├── rarvm.hpp │ │ ├── rarvmtbl.cpp │ │ ├── rawread.cpp │ │ ├── rawread.hpp │ │ ├── readme.txt │ │ ├── secpassword.cpp │ │ ├── strfn.cpp │ │ ├── strfn.hpp │ │ ├── suballoc.cpp │ │ ├── suballoc.hpp │ │ ├── technote.txt │ │ ├── timefn.cpp │ │ ├── timefn.hpp │ │ ├── unicode.cpp │ │ ├── unicode.hpp │ │ ├── unpack.cpp │ │ ├── unpack.hpp │ │ ├── unpack15.cpp │ │ ├── unpack20.cpp │ │ ├── unpack30.cpp │ │ ├── unpack50.cpp │ │ ├── unpack50frag.cpp │ │ ├── unpackinline.cpp │ │ ├── unrar.cpp │ │ ├── unrar.h │ │ ├── unrar_misc.cpp │ │ ├── unrar_open.cpp │ │ └── whatsnew.txt ├── GME │ ├── GME.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── GME Framework.xcscheme │ ├── Info.plist │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── gme │ │ ├── Ay_Apu.cpp │ │ ├── Ay_Apu.h │ │ ├── Ay_Cpu.cpp │ │ ├── Ay_Cpu.h │ │ ├── Ay_Emu.cpp │ │ ├── Ay_Emu.h │ │ ├── Blip_Buffer.cpp │ │ ├── Blip_Buffer.h │ │ ├── Bml_Parser.cpp │ │ ├── Bml_Parser.h │ │ ├── CMakeLists.txt │ │ ├── Classic_Emu.cpp │ │ ├── Classic_Emu.h │ │ ├── Data_Reader.cpp │ │ ├── Data_Reader.h │ │ ├── Dual_Resampler.cpp │ │ ├── Dual_Resampler.h │ │ ├── Effects_Buffer.cpp │ │ ├── Effects_Buffer.h │ │ ├── Fir_Resampler.cpp │ │ ├── Fir_Resampler.h │ │ ├── Gb_Apu.cpp │ │ ├── Gb_Apu.h │ │ ├── Gb_Cpu.cpp │ │ ├── Gb_Cpu.h │ │ ├── Gb_Oscs.cpp │ │ ├── Gb_Oscs.h │ │ ├── Gbs_Emu.cpp │ │ ├── Gbs_Emu.h │ │ ├── Gme_File.cpp │ │ ├── Gme_File.h │ │ ├── Gym_Emu.cpp │ │ ├── Gym_Emu.h │ │ ├── Hes_Apu.cpp │ │ ├── Hes_Apu.h │ │ ├── Hes_Cpu.cpp │ │ ├── Hes_Cpu.h │ │ ├── Hes_Emu.cpp │ │ ├── Hes_Emu.h │ │ ├── Kss_Cpu.cpp │ │ ├── Kss_Cpu.h │ │ ├── Kss_Emu.cpp │ │ ├── Kss_Emu.h │ │ ├── Kss_Scc_Apu.cpp │ │ ├── Kss_Scc_Apu.h │ │ ├── M3u_Playlist.cpp │ │ ├── M3u_Playlist.h │ │ ├── Multi_Buffer.cpp │ │ ├── Multi_Buffer.h │ │ ├── Music_Emu.cpp │ │ ├── Music_Emu.cpp.orig │ │ ├── Music_Emu.h │ │ ├── Nes_Apu.cpp │ │ ├── Nes_Apu.h │ │ ├── Nes_Cpu.cpp │ │ ├── Nes_Cpu.h │ │ ├── Nes_Fds_Apu.cpp │ │ ├── Nes_Fds_Apu.h │ │ ├── Nes_Fme7_Apu.cpp │ │ ├── Nes_Fme7_Apu.h │ │ ├── Nes_Mmc5_Apu.h │ │ ├── Nes_Namco_Apu.cpp │ │ ├── Nes_Namco_Apu.h │ │ ├── Nes_Oscs.cpp │ │ ├── Nes_Oscs.h │ │ ├── Nes_Vrc6_Apu.cpp │ │ ├── Nes_Vrc6_Apu.h │ │ ├── Nes_Vrc7_Apu.cpp │ │ ├── Nes_Vrc7_Apu.h │ │ ├── Nsf_Emu.cpp │ │ ├── Nsf_Emu.h │ │ ├── Nsfe_Emu.cpp │ │ ├── Nsfe_Emu.h │ │ ├── Sap_Apu.cpp │ │ ├── Sap_Apu.h │ │ ├── Sap_Cpu.cpp │ │ ├── Sap_Cpu.h │ │ ├── Sap_Emu.cpp │ │ ├── Sap_Emu.h │ │ ├── Sms_Apu.cpp │ │ ├── Sms_Apu.h │ │ ├── Sms_Oscs.h │ │ ├── Snes_Spc.cpp │ │ ├── Snes_Spc.h │ │ ├── Spc_Cpu.cpp │ │ ├── Spc_Cpu.h │ │ ├── Spc_Dsp.cpp │ │ ├── Spc_Dsp.h │ │ ├── Spc_Emu.cpp │ │ ├── Spc_Emu.h │ │ ├── Spc_Filter.cpp │ │ ├── Spc_Filter.h │ │ ├── Spc_Sfm.cpp │ │ ├── Spc_Sfm.h │ │ ├── Vgm_Emu.cpp │ │ ├── Vgm_Emu.h │ │ ├── Vgm_Emu_Impl.cpp │ │ ├── Vgm_Emu_Impl.h │ │ ├── Ym2413_Emu.cpp │ │ ├── Ym2413_Emu.h │ │ ├── Ym2612_Emu.h │ │ ├── Ym2612_GENS.cpp │ │ ├── Ym2612_GENS.h │ │ ├── Ym2612_MAME.cpp │ │ ├── Ym2612_MAME.h │ │ ├── Ym2612_Nuked.cpp │ │ ├── Ym2612_Nuked.h │ │ ├── blargg_common.h │ │ ├── blargg_config.h │ │ ├── blargg_endian.h │ │ ├── blargg_source.h │ │ ├── ext │ │ │ ├── 2413tone.h │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── emu2413.c │ │ │ ├── emu2413.h │ │ │ ├── emu2413_NESpatches.txt │ │ │ ├── emutypes.h │ │ │ ├── mamedef.h │ │ │ ├── panning.c │ │ │ ├── panning.h │ │ │ └── vrc7tone.h │ │ ├── gb_cpu_io.h │ │ ├── gme.cpp │ │ ├── gme.cpp.orig │ │ ├── gme.exports │ │ ├── gme.h │ │ ├── gme.h.orig │ │ ├── gme_types.h │ │ ├── gme_types.h.in │ │ ├── hes_cpu_io.h │ │ ├── libgme.pc.in │ │ ├── nes_cpu_io.h │ │ └── sap_cpu_io.h │ ├── higan │ │ ├── dsp │ │ │ ├── SPC_DSP.cpp │ │ │ ├── SPC_DSP.h │ │ │ ├── dsp.cpp │ │ │ └── dsp.hpp │ │ ├── processor │ │ │ └── spc700 │ │ │ │ ├── algorithms.cpp │ │ │ │ ├── disassembler.cpp │ │ │ │ ├── instructions.cpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── registers.hpp │ │ │ │ ├── spc700.cpp │ │ │ │ └── spc700.hpp │ │ └── smp │ │ │ ├── memory.cpp │ │ │ ├── smp.cpp │ │ │ ├── smp.hpp │ │ │ └── timing.cpp │ ├── license.gpl2.txt │ ├── license.txt │ ├── pl.lproj │ │ └── InfoPlist.strings │ └── tr.lproj │ │ └── InfoPlist.strings ├── HighlyAdvanced │ ├── HighlyAdvanced.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── HighlyAdvanced.xcscheme │ └── HighlyAdvanced │ │ ├── HighlyAdvanced-Info.plist │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ └── InfoPlist.strings │ │ └── vbam │ │ ├── License.txt │ │ ├── apu │ │ ├── Blip_Buffer.cpp │ │ ├── Blip_Buffer.h │ │ ├── Effects_Buffer.cpp │ │ ├── Effects_Buffer.h │ │ ├── Gb_Apu.cpp │ │ ├── Gb_Apu.h │ │ ├── Gb_Oscs.cpp │ │ ├── Gb_Oscs.h │ │ ├── Multi_Buffer.cpp │ │ ├── Multi_Buffer.h │ │ ├── blargg_common.h │ │ ├── blargg_config.h │ │ └── blargg_source.h │ │ ├── common │ │ ├── Port.h │ │ └── Types.h │ │ ├── gba │ │ ├── GBA-arm.cpp │ │ ├── GBA-thumb.cpp │ │ ├── GBA.cpp │ │ ├── GBA.h │ │ ├── GBAcpu.h │ │ ├── GBAinline.h │ │ ├── Globals.h │ │ ├── Sound.cpp │ │ ├── Sound.h │ │ ├── bios.cpp │ │ └── bios.h │ │ └── gpl.txt ├── HighlyExperimental │ ├── HighlyExperimental.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── HighlyExperimental.xcscheme │ └── HighlyExperimental │ │ ├── Core │ │ ├── .gitignore │ │ ├── Core.pro │ │ ├── PSXCore.vcxproj │ │ ├── PSXCore.vcxproj.filters │ │ ├── Readme.txt │ │ ├── bios.c │ │ ├── bios.h │ │ ├── emuconfig.h │ │ ├── iop.c │ │ ├── iop.h │ │ ├── ioptimer.c │ │ ├── ioptimer.h │ │ ├── mkhebios.c │ │ ├── mkhebios.h │ │ ├── mkhebios_overlays.h │ │ ├── mkhebios_scripts.h │ │ ├── psx.c │ │ ├── psx.h │ │ ├── r3000.c │ │ ├── r3000.h │ │ ├── r3000asm.c │ │ ├── r3000asm.h │ │ ├── r3000dis.c │ │ ├── r3000dis.h │ │ ├── r3000predict.txt │ │ ├── spu.c │ │ ├── spu.h │ │ ├── spucore.c │ │ ├── spucore.h │ │ ├── vfs.c │ │ └── vfs.h │ │ ├── HighlyExperimental-Info.plist │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── HighlyQuixotic │ ├── HighlyQuixotic.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── HighlyQuixotic.xcscheme │ └── HighlyQuixotic │ │ ├── Core │ │ ├── .gitignore │ │ ├── Core.pro │ │ ├── QCore.vcxproj │ │ ├── QCore.vcxproj.filters │ │ ├── Readme.txt │ │ ├── emuconfig.h │ │ ├── kabuki.c │ │ ├── kabuki.h │ │ ├── qmix.c │ │ ├── qmix.h │ │ ├── qsound.c │ │ ├── qsound.h │ │ ├── qsound_ctr.c │ │ ├── qsound_ctr.h │ │ ├── z80.c │ │ └── z80.h │ │ ├── HighlyQuixotic-Info.plist │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── HighlyTheoretical │ ├── HighlyTheoretical.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── HighlyTheoretical.xcscheme │ └── HighlyTheoretical │ │ ├── Core │ │ ├── .gitignore │ │ ├── COPYING.txt │ │ ├── Core.pro │ │ ├── Readme.txt │ │ ├── SegaCore.vcxproj │ │ ├── SegaCore.vcxproj.filters │ │ ├── Starscream │ │ │ ├── cpudebug.c │ │ │ ├── mk.bat │ │ │ ├── s68000.asm │ │ │ ├── s68000.obj │ │ │ ├── star.c │ │ │ ├── star.exe │ │ │ ├── starcpu.h │ │ │ └── stardoc.txt │ │ ├── arm.c │ │ ├── arm.h │ │ ├── c68k │ │ │ ├── c68k.c │ │ │ ├── c68k.h │ │ │ ├── c68k_ini.inc │ │ │ ├── c68k_op0.inc │ │ │ ├── c68k_op1.inc │ │ │ ├── c68k_op2.inc │ │ │ ├── c68k_op3.inc │ │ │ ├── c68k_op4.inc │ │ │ ├── c68k_op5.inc │ │ │ ├── c68k_op6.inc │ │ │ ├── c68k_op7.inc │ │ │ ├── c68k_op8.inc │ │ │ ├── c68k_op9.inc │ │ │ ├── c68k_opA.inc │ │ │ ├── c68k_opB.inc │ │ │ ├── c68k_opC.inc │ │ │ ├── c68k_opD.inc │ │ │ ├── c68k_opE.inc │ │ │ ├── c68k_opF.inc │ │ │ ├── c68kexec.c │ │ │ ├── c68kmac.inc │ │ │ ├── core.h │ │ │ ├── gen68k.c │ │ │ ├── gen68k.h │ │ │ └── gen68k.inc │ │ ├── dcsound.c │ │ ├── dcsound.h │ │ ├── emuconfig.h │ │ ├── m68k │ │ │ ├── m68k.h │ │ │ ├── m68k_in.c │ │ │ ├── m68kconf.h │ │ │ ├── m68kcpu.c │ │ │ ├── m68kcpu.h │ │ │ ├── m68kmake.c │ │ │ ├── m68kops.c │ │ │ ├── m68kops.h │ │ │ ├── macros.h │ │ │ └── readme.txt │ │ ├── satsound.c │ │ ├── satsound.h │ │ ├── sega.c │ │ ├── sega.h │ │ ├── yam.c │ │ └── yam.h │ │ ├── HighlyTheoretical-Info.plist │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── HivelyPlayer │ ├── HivelyPlayer.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── HivelyPlayer.xcscheme │ └── HivelyPlayer │ │ ├── HivelyPlayer-Info.plist │ │ ├── blip_buf.c │ │ ├── blip_buf.h │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── hvl_replay.c │ │ ├── hvl_replay.h │ │ ├── hvl_tables.h │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ ├── sinc_generator.c │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── MPCDec │ ├── Files │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── README │ │ ├── include │ │ │ ├── decoder.h │ │ │ ├── huffman.h │ │ │ ├── internal.h │ │ │ ├── mpc_bits_reader.h │ │ │ ├── mpcdec │ │ │ │ ├── datatypes.h │ │ │ │ ├── minimax.h │ │ │ │ ├── mpc_types.h │ │ │ │ ├── mpcdec.h │ │ │ │ ├── mpcmath.h │ │ │ │ ├── reader.h │ │ │ │ └── streaminfo.h │ │ │ ├── mpcdec_math.h │ │ │ └── requant.h │ │ └── src │ │ │ ├── crc32.c │ │ │ ├── fastmath.c │ │ │ ├── huffman-bcl.c │ │ │ ├── huffman.c │ │ │ ├── mpc_bits_reader.c │ │ │ ├── mpc_decoder.c │ │ │ ├── mpc_demux.c │ │ │ ├── mpc_reader.c │ │ │ ├── requant.c │ │ │ ├── streaminfo.c │ │ │ ├── synth_filter.c │ │ │ └── tags.c │ ├── Info.plist │ ├── MPCDec.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── mpcdec Framework.xcscheme │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── pl.lproj │ │ └── InfoPlist.strings │ └── tr.lproj │ │ └── InfoPlist.strings ├── OpenMPT │ ├── Info.plist │ ├── OpenMPT │ │ ├── .clang-format │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── build │ │ │ ├── android_ndk │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── README.AndroidNDK.txt │ │ │ ├── dist.mk │ │ │ ├── djgpp │ │ │ │ └── bin │ │ │ │ │ ├── dxe3gen │ │ │ │ │ ├── dxe3gen.sh │ │ │ │ │ ├── dxe3res │ │ │ │ │ └── dxe3res.sh │ │ │ ├── download_externals.sh │ │ │ ├── make │ │ │ │ ├── config-afl.mk │ │ │ │ ├── config-aocc.mk │ │ │ │ ├── config-clang.mk │ │ │ │ ├── config-cygwin.mk │ │ │ │ ├── config-defaults.mk │ │ │ │ ├── config-djgpp.mk │ │ │ │ ├── config-emscripten.mk │ │ │ │ ├── config-gcc.mk │ │ │ │ ├── config-icx.mk │ │ │ │ ├── config-macos.mk │ │ │ │ ├── config-mingw-w64.mk │ │ │ │ ├── config-mingw.mk │ │ │ │ ├── config-mingw32crt.mk │ │ │ │ ├── config-standard.mk │ │ │ │ ├── config-unknown.mk │ │ │ │ ├── warnings-clang.mk │ │ │ │ └── warnings-gcc.mk │ │ │ ├── svn_version │ │ │ │ ├── svn_version.h │ │ │ │ ├── svn_version.template.subwcrev.h │ │ │ │ └── update_svn_version_vs_premake.cmd │ │ │ ├── xcode-ios │ │ │ │ ├── ext │ │ │ │ │ ├── mpg123.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── ogg.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── vorbis.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── libopenmpt.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── libopenmpt.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcode-macosx │ │ │ │ ├── ext │ │ │ │ ├── mpg123.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── ogg.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── vorbis.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── libopenmpt.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── libopenmpt.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── common │ │ │ ├── BuildSettings.h │ │ │ ├── BuildSettingsCompiler.h │ │ │ ├── ComponentManager.cpp │ │ │ ├── ComponentManager.h │ │ │ ├── FileReader.h │ │ │ ├── FileReaderFwd.h │ │ │ ├── GzipWriter.h │ │ │ ├── Logging.cpp │ │ │ ├── Logging.h │ │ │ ├── Profiler.cpp │ │ │ ├── Profiler.h │ │ │ ├── misc_util.h │ │ │ ├── mptAssert.h │ │ │ ├── mptBaseMacros.h │ │ │ ├── mptBaseTypes.h │ │ │ ├── mptBaseUtils.h │ │ │ ├── mptCPU.h │ │ │ ├── mptFileIO.h │ │ │ ├── mptFileTemporary.h │ │ │ ├── mptFileType.cpp │ │ │ ├── mptFileType.h │ │ │ ├── mptPathString.cpp │ │ │ ├── mptPathString.h │ │ │ ├── mptRandom.cpp │ │ │ ├── mptRandom.h │ │ │ ├── mptString.h │ │ │ ├── mptStringBuffer.cpp │ │ │ ├── mptStringBuffer.h │ │ │ ├── mptStringFormat.h │ │ │ ├── mptTime.cpp │ │ │ ├── mptTime.h │ │ │ ├── serialization_utils.cpp │ │ │ ├── serialization_utils.h │ │ │ ├── stdafx.h │ │ │ ├── version.cpp │ │ │ ├── version.h │ │ │ └── versionNumber.h │ │ ├── contrib │ │ │ ├── fuzzing │ │ │ │ ├── all_formats.dict │ │ │ │ ├── build.sh │ │ │ │ ├── fuzz-main.sh │ │ │ │ ├── fuzz-secondary1.sh │ │ │ │ ├── fuzz-secondary2.sh │ │ │ │ ├── fuzz-secondary3.sh │ │ │ │ ├── fuzz-settings.sh │ │ │ │ ├── fuzz.cpp │ │ │ │ ├── get-afl.sh │ │ │ │ └── readme.md │ │ │ ├── libmodplug-0.8.8.5 │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── autogen.sh │ │ │ │ ├── clean.sh │ │ │ │ ├── config.h.in │ │ │ │ ├── configure.ac │ │ │ │ ├── dist.sh │ │ │ │ ├── libmodplug.pc.in │ │ │ │ ├── libmodplug │ │ │ │ │ ├── modplug.h │ │ │ │ │ ├── sndfile.h │ │ │ │ │ └── stdafx.h │ │ │ │ ├── libopenmpt_modplug.c │ │ │ │ ├── libopenmpt_modplug.pc.in │ │ │ │ ├── libopenmpt_modplug_cpp.cpp │ │ │ │ ├── m4 │ │ │ │ │ └── ax_cxx_compile_stdcxx.m4 │ │ │ │ └── test.sh │ │ │ ├── libmodplug-0.8.9.0 │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── autogen.sh │ │ │ │ ├── clean.sh │ │ │ │ ├── config.h.in │ │ │ │ ├── configure.ac │ │ │ │ ├── dist.sh │ │ │ │ ├── libmodplug.pc.in │ │ │ │ ├── libmodplug │ │ │ │ │ ├── modplug.h │ │ │ │ │ ├── sndfile.h │ │ │ │ │ └── stdafx.h │ │ │ │ ├── libopenmpt_modplug.c │ │ │ │ ├── libopenmpt_modplug.pc.in │ │ │ │ ├── libopenmpt_modplug_cpp.cpp │ │ │ │ ├── m4 │ │ │ │ │ └── ax_cxx_compile_stdcxx.m4 │ │ │ │ └── test.sh │ │ │ ├── libopenmpt │ │ │ │ └── libopenmpt_bass.c │ │ │ └── premake │ │ │ │ └── snapshot-premake-master.sh │ │ ├── doc │ │ │ ├── contributing.md │ │ │ ├── libopenmpt_styleguide.md │ │ │ └── module_formats.md │ │ ├── examples │ │ │ ├── .clang-format │ │ │ ├── libopenmpt_example_c.c │ │ │ ├── libopenmpt_example_c_mem.c │ │ │ ├── libopenmpt_example_c_pipe.c │ │ │ ├── libopenmpt_example_c_probe.c │ │ │ ├── libopenmpt_example_c_stdout.c │ │ │ ├── libopenmpt_example_c_unsafe.c │ │ │ └── libopenmpt_example_cxx.cpp │ │ ├── include │ │ │ ├── minimp3 │ │ │ │ ├── LICENSE │ │ │ │ ├── OpenMPT.txt │ │ │ │ ├── minimp3.c │ │ │ │ └── minimp3.h │ │ │ ├── miniz │ │ │ │ ├── LICENSE │ │ │ │ ├── OpenMPT.txt │ │ │ │ ├── miniz.c │ │ │ │ └── miniz.h │ │ │ └── stb_vorbis │ │ │ │ ├── OpenMPT.txt │ │ │ │ └── stb_vorbis.c │ │ ├── libopenmpt │ │ │ ├── .clang-format │ │ │ ├── Doxyfile │ │ │ ├── bindings │ │ │ │ └── freebasic │ │ │ │ │ ├── libopenmpt.bi │ │ │ │ │ └── libopenmpt_ext.bi │ │ │ ├── in_openmpt │ │ │ │ ├── in_openmpt.cpp │ │ │ │ └── in_openmpt.txt │ │ │ ├── libopenmpt.h │ │ │ ├── libopenmpt.hpp │ │ │ ├── libopenmpt.pc.in │ │ │ ├── libopenmpt_c.cpp │ │ │ ├── libopenmpt_config.h │ │ │ ├── libopenmpt_cxx.cpp │ │ │ ├── libopenmpt_ext.h │ │ │ ├── libopenmpt_ext.hpp │ │ │ ├── libopenmpt_ext_impl.cpp │ │ │ ├── libopenmpt_ext_impl.hpp │ │ │ ├── libopenmpt_impl.cpp │ │ │ ├── libopenmpt_impl.hpp │ │ │ ├── libopenmpt_internal.h │ │ │ ├── libopenmpt_stream_callbacks_buffer.h │ │ │ ├── libopenmpt_stream_callbacks_fd.h │ │ │ ├── libopenmpt_stream_callbacks_file.h │ │ │ ├── libopenmpt_stream_callbacks_file_mingw.h │ │ │ ├── libopenmpt_stream_callbacks_file_msvcrt.h │ │ │ ├── libopenmpt_stream_callbacks_file_posix.h │ │ │ ├── libopenmpt_stream_callbacks_file_posix_lfs64.h │ │ │ ├── libopenmpt_test │ │ │ │ ├── libopenmpt_test.cpp │ │ │ │ └── libopenmpt_test.manifest │ │ │ ├── libopenmpt_version.h │ │ │ ├── libopenmpt_version.mk │ │ │ ├── libopenmpt_version.rc │ │ │ ├── plugin-common │ │ │ │ ├── libopenmpt_plugin_gui.cpp │ │ │ │ ├── libopenmpt_plugin_gui.hpp │ │ │ │ ├── libopenmpt_plugin_gui.rc │ │ │ │ ├── libopenmpt_plugin_settings.hpp │ │ │ │ └── resource.h │ │ │ └── xmp-openmpt │ │ │ │ ├── xmp-openmpt.cpp │ │ │ │ └── xmp-openmpt.txt │ │ ├── openmpt123 │ │ │ ├── .clang-format │ │ │ ├── openmpt123.cpp │ │ │ ├── openmpt123.h2m │ │ │ ├── openmpt123.hpp │ │ │ ├── openmpt123.manifest │ │ │ ├── openmpt123_allegro42.hpp │ │ │ ├── openmpt123_config.hpp │ │ │ ├── openmpt123_exception.hpp │ │ │ ├── openmpt123_flac.hpp │ │ │ ├── openmpt123_mmio.hpp │ │ │ ├── openmpt123_portaudio.hpp │ │ │ ├── openmpt123_pulseaudio.hpp │ │ │ ├── openmpt123_raw.hpp │ │ │ ├── openmpt123_sdl2.hpp │ │ │ ├── openmpt123_sndfile.hpp │ │ │ ├── openmpt123_stdio.hpp │ │ │ ├── openmpt123_stdout.hpp │ │ │ ├── openmpt123_terminal.hpp │ │ │ └── openmpt123_waveout.hpp │ │ ├── sounddsp │ │ │ ├── AGC.cpp │ │ │ ├── AGC.h │ │ │ ├── DSP.cpp │ │ │ ├── DSP.h │ │ │ ├── EQ.cpp │ │ │ ├── EQ.h │ │ │ ├── Reverb.cpp │ │ │ └── Reverb.h │ │ ├── soundlib │ │ │ ├── AudioCriticalSection.cpp │ │ │ ├── AudioCriticalSection.h │ │ │ ├── AudioReadTarget.h │ │ │ ├── BitReader.h │ │ │ ├── Container.h │ │ │ ├── ContainerMMCMP.cpp │ │ │ ├── ContainerPP20.cpp │ │ │ ├── ContainerUMX.cpp │ │ │ ├── ContainerXPK.cpp │ │ │ ├── Dlsbank.cpp │ │ │ ├── Dlsbank.h │ │ │ ├── Fastmix.cpp │ │ │ ├── FloatMixer.h │ │ │ ├── ITCompression.cpp │ │ │ ├── ITCompression.h │ │ │ ├── ITTools.cpp │ │ │ ├── ITTools.h │ │ │ ├── InstrumentExtensions.cpp │ │ │ ├── InstrumentSynth.cpp │ │ │ ├── InstrumentSynth.h │ │ │ ├── IntMixer.h │ │ │ ├── Load_667.cpp │ │ │ ├── Load_669.cpp │ │ │ ├── Load_amf.cpp │ │ │ ├── Load_ams.cpp │ │ │ ├── Load_c67.cpp │ │ │ ├── Load_cba.cpp │ │ │ ├── Load_dbm.cpp │ │ │ ├── Load_digi.cpp │ │ │ ├── Load_dmf.cpp │ │ │ ├── Load_dsm.cpp │ │ │ ├── Load_dsym.cpp │ │ │ ├── Load_dtm.cpp │ │ │ ├── Load_etx.cpp │ │ │ ├── Load_far.cpp │ │ │ ├── Load_fc.cpp │ │ │ ├── Load_fmt.cpp │ │ │ ├── Load_ftm.cpp │ │ │ ├── Load_gdm.cpp │ │ │ ├── Load_gmc.cpp │ │ │ ├── Load_gt2.cpp │ │ │ ├── Load_ice.cpp │ │ │ ├── Load_imf.cpp │ │ │ ├── Load_ims.cpp │ │ │ ├── Load_it.cpp │ │ │ ├── Load_itp.cpp │ │ │ ├── Load_kris.cpp │ │ │ ├── Load_mdl.cpp │ │ │ ├── Load_med.cpp │ │ │ ├── Load_mid.cpp │ │ │ ├── Load_mo3.cpp │ │ │ ├── Load_mod.cpp │ │ │ ├── Load_mt2.cpp │ │ │ ├── Load_mtm.cpp │ │ │ ├── Load_mus_km.cpp │ │ │ ├── Load_okt.cpp │ │ │ ├── Load_plm.cpp │ │ │ ├── Load_psm.cpp │ │ │ ├── Load_pt36.cpp │ │ │ ├── Load_ptm.cpp │ │ │ ├── Load_puma.cpp │ │ │ ├── Load_rtm.cpp │ │ │ ├── Load_s3m.cpp │ │ │ ├── Load_sfx.cpp │ │ │ ├── Load_stk.cpp │ │ │ ├── Load_stm.cpp │ │ │ ├── Load_stp.cpp │ │ │ ├── Load_symmod.cpp │ │ │ ├── Load_tcb.cpp │ │ │ ├── Load_uax.cpp │ │ │ ├── Load_ult.cpp │ │ │ ├── Load_unic.cpp │ │ │ ├── Load_wav.cpp │ │ │ ├── Load_xm.cpp │ │ │ ├── Load_xmf.cpp │ │ │ ├── Loaders.h │ │ │ ├── MIDIEvents.cpp │ │ │ ├── MIDIEvents.h │ │ │ ├── MIDIMacroParser.cpp │ │ │ ├── MIDIMacroParser.h │ │ │ ├── MIDIMacros.cpp │ │ │ ├── MIDIMacros.h │ │ │ ├── MODTools.cpp │ │ │ ├── MODTools.h │ │ │ ├── MPEGFrame.cpp │ │ │ ├── MPEGFrame.h │ │ │ ├── Message.cpp │ │ │ ├── Message.h │ │ │ ├── MixFuncTable.cpp │ │ │ ├── MixFuncTable.h │ │ │ ├── Mixer.h │ │ │ ├── MixerInterface.h │ │ │ ├── MixerLoops.cpp │ │ │ ├── MixerLoops.h │ │ │ ├── MixerSettings.cpp │ │ │ ├── MixerSettings.h │ │ │ ├── ModChannel.cpp │ │ │ ├── ModChannel.h │ │ │ ├── ModInstrument.cpp │ │ │ ├── ModInstrument.h │ │ │ ├── ModSample.cpp │ │ │ ├── ModSample.h │ │ │ ├── ModSampleCopy.h │ │ │ ├── ModSequence.cpp │ │ │ ├── ModSequence.h │ │ │ ├── OPL.cpp │ │ │ ├── OPL.h │ │ │ ├── OggStream.cpp │ │ │ ├── OggStream.h │ │ │ ├── Paula.cpp │ │ │ ├── Paula.h │ │ │ ├── PlayState.cpp │ │ │ ├── PlayState.h │ │ │ ├── PlaybackTest.cpp │ │ │ ├── PlaybackTest.h │ │ │ ├── Resampler.h │ │ │ ├── RowVisitor.cpp │ │ │ ├── RowVisitor.h │ │ │ ├── S3MTools.cpp │ │ │ ├── S3MTools.h │ │ │ ├── SampleCopy.h │ │ │ ├── SampleFormatBRR.cpp │ │ │ ├── SampleFormatFLAC.cpp │ │ │ ├── SampleFormatMP3.cpp │ │ │ ├── SampleFormatMediaFoundation.cpp │ │ │ ├── SampleFormatOpus.cpp │ │ │ ├── SampleFormatSFZ.cpp │ │ │ ├── SampleFormatVorbis.cpp │ │ │ ├── SampleFormats.cpp │ │ │ ├── SampleIO.cpp │ │ │ ├── SampleIO.h │ │ │ ├── SampleNormalize.h │ │ │ ├── Snd_defs.h │ │ │ ├── Snd_flt.cpp │ │ │ ├── Snd_fx.cpp │ │ │ ├── Sndfile.cpp │ │ │ ├── Sndfile.h │ │ │ ├── Sndmix.cpp │ │ │ ├── SoundFilePlayConfig.cpp │ │ │ ├── SoundFilePlayConfig.h │ │ │ ├── Tables.cpp │ │ │ ├── Tables.h │ │ │ ├── Tagging.cpp │ │ │ ├── Tagging.h │ │ │ ├── TinyFFT.cpp │ │ │ ├── TinyFFT.h │ │ │ ├── UMXTools.cpp │ │ │ ├── UMXTools.h │ │ │ ├── UpgradeModule.cpp │ │ │ ├── WAVTools.cpp │ │ │ ├── WAVTools.h │ │ │ ├── WindowedFIR.cpp │ │ │ ├── WindowedFIR.h │ │ │ ├── XMTools.cpp │ │ │ ├── XMTools.h │ │ │ ├── load_j2b.cpp │ │ │ ├── mod_specifications.cpp │ │ │ ├── mod_specifications.h │ │ │ ├── modcommand.cpp │ │ │ ├── modcommand.h │ │ │ ├── modsmp_ctrl.cpp │ │ │ ├── modsmp_ctrl.h │ │ │ ├── opal.h │ │ │ ├── pattern.cpp │ │ │ ├── pattern.h │ │ │ ├── patternContainer.cpp │ │ │ ├── patternContainer.h │ │ │ ├── plugins │ │ │ │ ├── DigiBoosterEcho.cpp │ │ │ │ ├── DigiBoosterEcho.h │ │ │ │ ├── LFOPlugin.cpp │ │ │ │ ├── LFOPlugin.h │ │ │ │ ├── PlugInterface.cpp │ │ │ │ ├── PlugInterface.h │ │ │ │ ├── PluginManager.cpp │ │ │ │ ├── PluginManager.h │ │ │ │ ├── PluginMixBuffer.h │ │ │ │ ├── PluginStructs.h │ │ │ │ ├── SymMODEcho.cpp │ │ │ │ ├── SymMODEcho.h │ │ │ │ └── dmo │ │ │ │ │ ├── Chorus.cpp │ │ │ │ │ ├── Chorus.h │ │ │ │ │ ├── Compressor.cpp │ │ │ │ │ ├── Compressor.h │ │ │ │ │ ├── DMOPlugin.cpp │ │ │ │ │ ├── DMOPlugin.h │ │ │ │ │ ├── DMOUtils.cpp │ │ │ │ │ ├── DMOUtils.h │ │ │ │ │ ├── Distortion.cpp │ │ │ │ │ ├── Distortion.h │ │ │ │ │ ├── Echo.cpp │ │ │ │ │ ├── Echo.h │ │ │ │ │ ├── Flanger.cpp │ │ │ │ │ ├── Flanger.h │ │ │ │ │ ├── Gargle.cpp │ │ │ │ │ ├── Gargle.h │ │ │ │ │ ├── I3DL2Reverb.cpp │ │ │ │ │ ├── I3DL2Reverb.h │ │ │ │ │ ├── ParamEq.cpp │ │ │ │ │ ├── ParamEq.h │ │ │ │ │ ├── WavesReverb.cpp │ │ │ │ │ └── WavesReverb.h │ │ │ ├── tuning.cpp │ │ │ ├── tuning.h │ │ │ ├── tuningCollection.cpp │ │ │ ├── tuningbase.h │ │ │ └── tuningcollection.h │ │ ├── src │ │ │ ├── mpt │ │ │ │ ├── .clang-format │ │ │ │ ├── LICENSE.BSD-3-Clause.txt │ │ │ │ ├── LICENSE.BSL-1.0.txt │ │ │ │ ├── arch │ │ │ │ │ ├── arch.hpp │ │ │ │ │ ├── feature_fence.hpp │ │ │ │ │ ├── feature_flags.hpp │ │ │ │ │ └── x86_amd64.hpp │ │ │ │ ├── audio │ │ │ │ │ ├── sample.hpp │ │ │ │ │ └── span.hpp │ │ │ │ ├── base │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── aligned_array.hpp │ │ │ │ │ ├── alloc.hpp │ │ │ │ │ ├── arithmetic_shift.hpp │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── bit.hpp │ │ │ │ │ ├── check_platform.hpp │ │ │ │ │ ├── compiletime_warning.hpp │ │ │ │ │ ├── constexpr_throw.hpp │ │ │ │ │ ├── debugging.hpp │ │ │ │ │ ├── detect.hpp │ │ │ │ │ ├── detect_arch.hpp │ │ │ │ │ ├── detect_compiler.hpp │ │ │ │ │ ├── detect_libc.hpp │ │ │ │ │ ├── detect_libcxx.hpp │ │ │ │ │ ├── detect_os.hpp │ │ │ │ │ ├── detect_quirks.hpp │ │ │ │ │ ├── float.hpp │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── macros.hpp │ │ │ │ │ ├── math.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── namespace.hpp │ │ │ │ │ ├── numbers.hpp │ │ │ │ │ ├── numeric.hpp │ │ │ │ │ ├── pointer.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── saturate_cast.hpp │ │ │ │ │ ├── saturate_round.hpp │ │ │ │ │ ├── secure.hpp │ │ │ │ │ ├── semantic_version.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── source_location.hpp │ │ │ │ │ ├── span.hpp │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── tests_base_arithmetic_shift.hpp │ │ │ │ │ │ ├── tests_base_bit.hpp │ │ │ │ │ │ ├── tests_base_math.hpp │ │ │ │ │ │ ├── tests_base_numeric.hpp │ │ │ │ │ │ ├── tests_base_saturate_cast.hpp │ │ │ │ │ │ ├── tests_base_saturate_round.hpp │ │ │ │ │ │ └── tests_base_wrapping_divide.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── utility.hpp │ │ │ │ │ ├── version.hpp │ │ │ │ │ └── wrapping_divide.hpp │ │ │ │ ├── binary │ │ │ │ │ ├── base64.hpp │ │ │ │ │ ├── base64url.hpp │ │ │ │ │ ├── hex.hpp │ │ │ │ │ └── tests │ │ │ │ │ │ └── tests_binary.hpp │ │ │ │ ├── check │ │ │ │ │ ├── compiler.hpp │ │ │ │ │ ├── libc.hpp │ │ │ │ │ ├── libcxx.hpp │ │ │ │ │ ├── mfc.hpp │ │ │ │ │ └── windows.hpp │ │ │ │ ├── crc │ │ │ │ │ ├── crc.hpp │ │ │ │ │ └── tests │ │ │ │ │ │ └── tests_crc.hpp │ │ │ │ ├── detect │ │ │ │ │ ├── dl.hpp │ │ │ │ │ ├── ltdl.hpp │ │ │ │ │ ├── mfc.hpp │ │ │ │ │ └── nlohmann_json.hpp │ │ │ │ ├── endian │ │ │ │ │ ├── floatingpoint.hpp │ │ │ │ │ ├── int24.hpp │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── tests_endian_floatingpoint.hpp │ │ │ │ │ │ ├── tests_endian_int24.hpp │ │ │ │ │ │ └── tests_endian_integer.hpp │ │ │ │ │ └── type_traits.hpp │ │ │ │ ├── environment │ │ │ │ │ └── environment.hpp │ │ │ │ ├── exception │ │ │ │ │ ├── exception.hpp │ │ │ │ │ ├── exception_text.hpp │ │ │ │ │ ├── logic_error.hpp │ │ │ │ │ └── runtime_error.hpp │ │ │ │ ├── format │ │ │ │ │ ├── concat.hpp │ │ │ │ │ ├── default_floatingpoint.hpp │ │ │ │ │ ├── default_formatter.hpp │ │ │ │ │ ├── default_integer.hpp │ │ │ │ │ ├── default_string.hpp │ │ │ │ │ ├── helpers.hpp │ │ │ │ │ ├── join.hpp │ │ │ │ │ ├── message.hpp │ │ │ │ │ ├── message_macros.hpp │ │ │ │ │ ├── simple.hpp │ │ │ │ │ ├── simple_floatingpoint.hpp │ │ │ │ │ ├── simple_integer.hpp │ │ │ │ │ ├── simple_spec.hpp │ │ │ │ │ └── tests │ │ │ │ │ │ ├── tests_format_message.hpp │ │ │ │ │ │ └── tests_format_simple.hpp │ │ │ │ ├── io │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── io_span.hpp │ │ │ │ │ ├── io_stdstream.hpp │ │ │ │ │ ├── io_virtual_wrapper.hpp │ │ │ │ │ └── tests │ │ │ │ │ │ └── tests_io.hpp │ │ │ │ ├── io_file │ │ │ │ │ ├── fileref.hpp │ │ │ │ │ ├── fstream.hpp │ │ │ │ │ ├── inputfile.hpp │ │ │ │ │ └── outputfile.hpp │ │ │ │ ├── io_file_adapter │ │ │ │ │ └── fileadapter.hpp │ │ │ │ ├── io_file_read │ │ │ │ │ └── inputfile_filecursor.hpp │ │ │ │ ├── io_file_unique │ │ │ │ │ ├── unique_basename.hpp │ │ │ │ │ └── unique_tempfilename.hpp │ │ │ │ ├── io_read │ │ │ │ │ ├── callbackstream.hpp │ │ │ │ │ ├── filecursor.hpp │ │ │ │ │ ├── filecursor_callbackstream.hpp │ │ │ │ │ ├── filecursor_filename_traits.hpp │ │ │ │ │ ├── filecursor_memory.hpp │ │ │ │ │ ├── filecursor_stdstream.hpp │ │ │ │ │ ├── filecursor_traits_filedata.hpp │ │ │ │ │ ├── filecursor_traits_memory.hpp │ │ │ │ │ ├── filedata.hpp │ │ │ │ │ ├── filedata_base.hpp │ │ │ │ │ ├── filedata_base_buffered.hpp │ │ │ │ │ ├── filedata_base_seekable.hpp │ │ │ │ │ ├── filedata_base_unseekable.hpp │ │ │ │ │ ├── filedata_base_unseekable_buffer.hpp │ │ │ │ │ ├── filedata_callbackstream.hpp │ │ │ │ │ ├── filedata_memory.hpp │ │ │ │ │ ├── filedata_stdstream.hpp │ │ │ │ │ └── filereader.hpp │ │ │ │ ├── io_write │ │ │ │ │ └── buffer.hpp │ │ │ │ ├── main │ │ │ │ │ └── main.hpp │ │ │ │ ├── mutex │ │ │ │ │ └── mutex.hpp │ │ │ │ ├── osinfo │ │ │ │ │ ├── class.hpp │ │ │ │ │ ├── dos_memory.hpp │ │ │ │ │ ├── dos_version.hpp │ │ │ │ │ ├── windows_version.hpp │ │ │ │ │ └── windows_wine_version.hpp │ │ │ │ ├── out_of_memory │ │ │ │ │ └── out_of_memory.hpp │ │ │ │ ├── parse │ │ │ │ │ ├── parse.hpp │ │ │ │ │ ├── split.hpp │ │ │ │ │ └── tests │ │ │ │ │ │ └── tests_parse.hpp │ │ │ │ ├── path │ │ │ │ │ ├── basic_path.hpp │ │ │ │ │ ├── native_path.hpp │ │ │ │ │ ├── os_path.hpp │ │ │ │ │ ├── os_path_long.hpp │ │ │ │ │ └── path.hpp │ │ │ │ ├── random │ │ │ │ │ ├── any_engine.hpp │ │ │ │ │ ├── crand.hpp │ │ │ │ │ ├── default_engines.hpp │ │ │ │ │ ├── device.hpp │ │ │ │ │ ├── engine.hpp │ │ │ │ │ ├── engine_lcg.hpp │ │ │ │ │ ├── random.hpp │ │ │ │ │ ├── seed.hpp │ │ │ │ │ └── tests │ │ │ │ │ │ └── tests_random.hpp │ │ │ │ ├── string │ │ │ │ │ ├── buffer.hpp │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── tests_string_buffer.hpp │ │ │ │ │ │ └── tests_string_utility.hpp │ │ │ │ │ ├── types.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── string_transcode │ │ │ │ │ ├── macros.hpp │ │ │ │ │ ├── tests │ │ │ │ │ │ └── tests_string_transcode.hpp │ │ │ │ │ └── transcode.hpp │ │ │ │ ├── system_error │ │ │ │ │ └── system_error.hpp │ │ │ │ ├── test │ │ │ │ │ ├── test.hpp │ │ │ │ │ └── test_macros.hpp │ │ │ │ └── uuid │ │ │ │ │ ├── guid.hpp │ │ │ │ │ ├── tests │ │ │ │ │ └── tests_uuid.hpp │ │ │ │ │ └── uuid.hpp │ │ │ └── openmpt │ │ │ │ ├── all │ │ │ │ ├── BuildSettings.hpp │ │ │ │ └── PlatformFixes.hpp │ │ │ │ ├── base │ │ │ │ ├── Endian.hpp │ │ │ │ ├── FlagSet.hpp │ │ │ │ ├── Int24.hpp │ │ │ │ └── Types.hpp │ │ │ │ ├── fileformat_base │ │ │ │ └── magic.hpp │ │ │ │ ├── logging │ │ │ │ └── Logger.hpp │ │ │ │ ├── random │ │ │ │ └── ModPlug.hpp │ │ │ │ ├── soundbase │ │ │ │ ├── Copy.hpp │ │ │ │ ├── CopyMix.hpp │ │ │ │ ├── Dither.hpp │ │ │ │ ├── DitherModPlug.hpp │ │ │ │ ├── DitherNone.hpp │ │ │ │ ├── DitherSimple.hpp │ │ │ │ ├── MixSample.hpp │ │ │ │ ├── MixSampleConvert.hpp │ │ │ │ ├── SampleClip.hpp │ │ │ │ ├── SampleClipFixedPoint.hpp │ │ │ │ ├── SampleConvert.hpp │ │ │ │ ├── SampleConvertFixedPoint.hpp │ │ │ │ ├── SampleDecode.hpp │ │ │ │ ├── SampleEncode.hpp │ │ │ │ └── SampleFormat.hpp │ │ │ │ ├── soundfile_data │ │ │ │ ├── tags.hpp │ │ │ │ └── wav.hpp │ │ │ │ └── soundfile_write │ │ │ │ ├── wav_write.cpp │ │ │ │ └── wav_write.hpp │ │ └── test │ │ │ ├── TestTools.h │ │ │ ├── TestToolsLib.cpp │ │ │ ├── TestToolsLib.h │ │ │ ├── TestToolsTracker.h │ │ │ ├── mpt_tests_base.cpp │ │ │ ├── mpt_tests_binary.cpp │ │ │ ├── mpt_tests_crc.cpp │ │ │ ├── mpt_tests_endian.cpp │ │ │ ├── mpt_tests_format.cpp │ │ │ ├── mpt_tests_io.cpp │ │ │ ├── mpt_tests_parse.cpp │ │ │ ├── mpt_tests_random.cpp │ │ │ ├── mpt_tests_string.cpp │ │ │ ├── mpt_tests_string_transcode.cpp │ │ │ ├── mpt_tests_uuid.cpp │ │ │ ├── test.cpp │ │ │ ├── test.flac │ │ │ ├── test.h │ │ │ ├── test.mptm │ │ │ ├── test.s3m │ │ │ └── test.xm │ ├── config.h │ └── libOpenMPT.xcodeproj │ │ └── project.pbxproj ├── SOURCES ├── SSEQPlayer │ ├── SSEQPlayer.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SSEQPlayer.xcscheme │ └── SSEQPlayer │ │ ├── Channel.cpp │ │ ├── Channel.h │ │ ├── FATSection.cpp │ │ ├── FATSection.h │ │ ├── INFOEntry.cpp │ │ ├── INFOEntry.h │ │ ├── INFOSection.cpp │ │ ├── INFOSection.h │ │ ├── NDSStdHeader.cpp │ │ ├── NDSStdHeader.h │ │ ├── Player.cpp │ │ ├── Player.h │ │ ├── SBNK.cpp │ │ ├── SBNK.h │ │ ├── SDAT.cpp │ │ ├── SDAT.h │ │ ├── SSEQ.cpp │ │ ├── SSEQ.h │ │ ├── SSEQPlayer-Info.plist │ │ ├── SWAR.cpp │ │ ├── SWAR.h │ │ ├── SWAV.cpp │ │ ├── SWAV.h │ │ ├── SYMBSection.cpp │ │ ├── SYMBSection.h │ │ ├── Track.cpp │ │ ├── Track.h │ │ ├── codecvt.h │ │ ├── common.h │ │ ├── consts.h │ │ ├── convert.h │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ └── InfoPlist.strings │ │ └── wstring_convert.h ├── Shorten │ ├── Files │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── configure.ac │ │ ├── shorten │ │ │ ├── Makefile.am │ │ │ ├── doc │ │ │ │ ├── LICENSE.shorten │ │ │ │ └── xmms-shn │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CREDITS │ │ │ │ │ ├── NEWS │ │ │ │ │ └── README │ │ │ ├── include │ │ │ │ ├── bitshift.h │ │ │ │ ├── config.h │ │ │ │ ├── config.h.in │ │ │ │ ├── decode.h │ │ │ │ ├── ringbuffer.h │ │ │ │ ├── shn.h │ │ │ │ ├── shn_reader.h │ │ │ │ └── shorten.h │ │ │ ├── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── array.c │ │ │ │ ├── array.cpp │ │ │ │ ├── convert.c │ │ │ │ ├── decode.c │ │ │ │ ├── fixio.c │ │ │ │ ├── fixio.cpp │ │ │ │ ├── id3v2.c │ │ │ │ ├── misc.c │ │ │ │ ├── output.c │ │ │ │ ├── ringbuffer.cpp │ │ │ │ ├── seek.c │ │ │ │ ├── seek.cpp │ │ │ │ ├── shn_reader.cpp │ │ │ │ ├── shorten.c │ │ │ │ ├── sulawalaw.c │ │ │ │ ├── vario.c │ │ │ │ ├── vario.cpp │ │ │ │ └── wave.c │ │ │ └── util │ │ │ │ ├── Makefile.am │ │ │ │ ├── Sulawalaw.c │ │ │ │ ├── array.c │ │ │ │ ├── exit.c │ │ │ │ ├── mkbshift.c │ │ │ │ └── mkbshift.h │ │ └── src │ │ │ ├── Makefile.am │ │ │ └── libinputshorten.c │ ├── Info.plist │ ├── Shorten.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Shorten Framework.xcscheme │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── pl.lproj │ │ └── InfoPlist.strings │ └── tr.lproj │ │ └── InfoPlist.strings ├── Syntrax-c │ ├── Syntrax-c │ │ ├── Info.plist │ │ ├── ioutil.h │ │ ├── jaytrax.c │ │ ├── jaytrax.h │ │ ├── jxs.c │ │ ├── jxs.h │ │ ├── mixcore.c │ │ └── mixcore.h │ └── Syntrax_c.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ └── Syntrax_c.xcscheme ├── g719 │ ├── g719.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── g719.xcscheme │ └── g719 │ │ ├── Info.plist │ │ ├── g719.c │ │ ├── g719.h │ │ ├── reference_code │ │ ├── common │ │ │ ├── bitalloc.c │ │ │ ├── bitstream.c │ │ │ ├── codesearch.c │ │ │ ├── common_rom.c │ │ │ ├── complxop.c │ │ │ ├── dct.c │ │ │ ├── idx2code.c │ │ │ ├── interleave_spectrum.c │ │ │ ├── recovernorm.c │ │ │ ├── reordvct.c │ │ │ └── weight.c │ │ ├── decoder │ │ │ ├── decode_frame.c │ │ │ ├── decoder_init.c │ │ │ ├── decoder_rom.c │ │ │ ├── dprocnf.c │ │ │ ├── dprocnobitsbfm.c │ │ │ ├── dqcoefs.c │ │ │ ├── fill_spectrum.c │ │ │ ├── flvqdec.c │ │ │ ├── hdeclvq.c │ │ │ ├── hdecnrm.c │ │ │ ├── trans_inv.c │ │ │ ├── unpackc.c │ │ │ └── window_ola.c │ │ └── include │ │ │ ├── cnst.h │ │ │ ├── complxop.h │ │ │ ├── proto.h │ │ │ ├── rom.h │ │ │ └── state.h │ │ └── stack_alloc.h ├── lazyusf │ ├── lazyusf.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── lazyusf.xcscheme │ └── lazyusf │ │ ├── audio.c │ │ ├── audio.h │ │ ├── audiolib.c │ │ ├── audiolib.h │ │ ├── config.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── cpu_hle.c │ │ ├── cpu_hle.h │ │ ├── debugger │ │ ├── dbg_decoder.c │ │ ├── dbg_decoder.h │ │ ├── dbg_decoder_local.h │ │ └── dbg_types.h │ │ ├── dma.c │ │ ├── dma.h │ │ ├── exception.c │ │ ├── exception.h │ │ ├── interpreter_cpu.c │ │ ├── interpreter_cpu.h │ │ ├── interpreter_ops.c │ │ ├── interpreter_ops.h │ │ ├── lazyusf-Info.plist │ │ ├── main.c │ │ ├── main.h │ │ ├── memory.c │ │ ├── memory.h │ │ ├── opcode.h │ │ ├── os.c │ │ ├── os.h │ │ ├── osal │ │ └── preproc.h │ │ ├── pif.c │ │ ├── pif.h │ │ ├── registers.c │ │ ├── registers.h │ │ ├── resampler.c │ │ ├── resampler.h │ │ ├── rsp.h │ │ ├── rsp │ │ ├── bench.c │ │ ├── config.h │ │ ├── execute.h │ │ ├── matrix.h │ │ ├── rsp.c │ │ ├── rsp.h │ │ ├── su.h │ │ └── vu │ │ │ ├── cf.h │ │ │ ├── clamp.h │ │ │ ├── divrom.h │ │ │ ├── shuffle.h │ │ │ ├── vabs.h │ │ │ ├── vadd.h │ │ │ ├── vaddc.h │ │ │ ├── vand.h │ │ │ ├── vch.h │ │ │ ├── vcl.h │ │ │ ├── vcr.h │ │ │ ├── veq.h │ │ │ ├── vge.h │ │ │ ├── vlt.h │ │ │ ├── vmacf.h │ │ │ ├── vmacq.h │ │ │ ├── vmacu.h │ │ │ ├── vmadh.h │ │ │ ├── vmadl.h │ │ │ ├── vmadm.h │ │ │ ├── vmadn.h │ │ │ ├── vmov.h │ │ │ ├── vmrg.h │ │ │ ├── vmudh.h │ │ │ ├── vmudl.h │ │ │ ├── vmudm.h │ │ │ ├── vmudn.h │ │ │ ├── vmulf.h │ │ │ ├── vmulu.h │ │ │ ├── vnand.h │ │ │ ├── vne.h │ │ │ ├── vnop.h │ │ │ ├── vnor.h │ │ │ ├── vnxor.h │ │ │ ├── vor.h │ │ │ ├── vrcp.h │ │ │ ├── vrcph.h │ │ │ ├── vrcpl.h │ │ │ ├── vrsq.h │ │ │ ├── vrsqh.h │ │ │ ├── vrsql.h │ │ │ ├── vsaw.h │ │ │ ├── vsub.h │ │ │ ├── vsubc.h │ │ │ ├── vu.h │ │ │ └── vxor.h │ │ ├── rsp_hle │ │ ├── LICENSES │ │ ├── alist.c │ │ ├── alist.h │ │ ├── alist_audio.c │ │ ├── alist_naudio.c │ │ ├── alist_nead.c │ │ ├── arithmetics.h │ │ ├── audio.c │ │ ├── audio.h │ │ ├── cicx105.c │ │ ├── common.h │ │ ├── hle.c │ │ ├── hle.h │ │ ├── hle_external.h │ │ ├── hle_internal.h │ │ ├── jpeg.c │ │ ├── memory.c │ │ ├── memory.h │ │ ├── mp3.c │ │ ├── msvc-compat │ │ │ └── our-stdbool.h │ │ ├── musyx.c │ │ ├── plugin.c │ │ └── ucodes.h │ │ ├── tlb.c │ │ ├── tlb.h │ │ ├── types.h │ │ ├── usf.c │ │ ├── usf.h │ │ └── usf_internal.h ├── lazyusf2 │ ├── lazyusf2.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── lazyusf2.xcscheme │ └── lazyusf2 │ │ ├── README.md │ │ ├── ai │ │ ├── ai_controller.c │ │ └── ai_controller.h │ │ ├── api │ │ ├── api_export.ver │ │ ├── callbacks.c │ │ ├── callbacks.h │ │ ├── m64p_common.h │ │ ├── m64p_config.h │ │ ├── m64p_debugger.h │ │ ├── m64p_frontend.h │ │ ├── m64p_plugin.h │ │ ├── m64p_types.h │ │ └── m64p_vidext.h │ │ ├── debugger │ │ ├── dbg_decoder.c │ │ ├── dbg_decoder.h │ │ ├── dbg_decoder_local.h │ │ └── dbg_types.h │ │ ├── lazyusf2-Info.plist │ │ ├── main │ │ ├── list.h │ │ ├── main.c │ │ ├── main.h │ │ ├── rom.c │ │ ├── rom.h │ │ ├── savestates.c │ │ ├── savestates.h │ │ ├── util.c │ │ ├── util.h │ │ └── version.h │ │ ├── memory │ │ ├── memory.c │ │ └── memory.h │ │ ├── osal │ │ └── preproc.h │ │ ├── pi │ │ ├── cart_rom.c │ │ ├── cart_rom.h │ │ ├── pi_controller.c │ │ └── pi_controller.h │ │ ├── r4300 │ │ ├── cached_interp.c │ │ ├── cached_interp.h │ │ ├── cp0.c │ │ ├── cp0.h │ │ ├── cp1.c │ │ ├── cp1.h │ │ ├── empty_dynarec.c │ │ ├── exception.c │ │ ├── exception.h │ │ ├── fpu.h │ │ ├── instr_counters.c │ │ ├── instr_counters.h │ │ ├── interpreter.def │ │ ├── interpreter_cop0.def │ │ ├── interpreter_cop1.def │ │ ├── interpreter_r4300.def │ │ ├── interpreter_regimm.def │ │ ├── interpreter_special.def │ │ ├── interpreter_tlb.def │ │ ├── interupt.c │ │ ├── interupt.h │ │ ├── macros.h │ │ ├── mi_controller.c │ │ ├── mi_controller.h │ │ ├── new_dynarec │ │ │ ├── assem_arm.c │ │ │ ├── assem_arm.h │ │ │ ├── assem_x86.c │ │ │ ├── assem_x86.h │ │ │ ├── linkage_arm.S │ │ │ ├── linkage_x86.S │ │ │ ├── linkage_x86.asm │ │ │ ├── new_dynarec.c │ │ │ └── new_dynarec.h │ │ ├── ops.h │ │ ├── pure_interp.c │ │ ├── pure_interp.h │ │ ├── r4300.c │ │ ├── r4300.h │ │ ├── r4300_core.c │ │ ├── r4300_core.h │ │ ├── recomp.c │ │ ├── recomp.h │ │ ├── recomph.h │ │ ├── reset.c │ │ ├── reset.h │ │ ├── tlb.c │ │ ├── tlb.h │ │ ├── x86 │ │ │ ├── assemble.c │ │ │ ├── assemble.h │ │ │ ├── assemble_struct.h │ │ │ ├── gbc.c │ │ │ ├── gcop0.c │ │ │ ├── gcop1.c │ │ │ ├── gcop1_d.c │ │ │ ├── gcop1_l.c │ │ │ ├── gcop1_s.c │ │ │ ├── gcop1_w.c │ │ │ ├── gr4300.c │ │ │ ├── gregimm.c │ │ │ ├── gspecial.c │ │ │ ├── gtlb.c │ │ │ ├── interpret.h │ │ │ ├── regcache.c │ │ │ ├── regcache.h │ │ │ └── rjump.c │ │ └── x86_64 │ │ │ ├── assemble.c │ │ │ ├── assemble.h │ │ │ ├── assemble_struct.h │ │ │ ├── gbc.c │ │ │ ├── gcop0.c │ │ │ ├── gcop1.c │ │ │ ├── gcop1_d.c │ │ │ ├── gcop1_l.c │ │ │ ├── gcop1_s.c │ │ │ ├── gcop1_w.c │ │ │ ├── gr4300.c │ │ │ ├── gregimm.c │ │ │ ├── gspecial.c │ │ │ ├── gtlb.c │ │ │ ├── interpret.h │ │ │ ├── regcache.c │ │ │ ├── regcache.h │ │ │ └── rjump.c │ │ ├── rdp │ │ ├── rdp_core.c │ │ └── rdp_core.h │ │ ├── ri │ │ ├── rdram.c │ │ ├── rdram.h │ │ ├── rdram_detection_hack.c │ │ ├── rdram_detection_hack.h │ │ ├── ri_controller.c │ │ └── ri_controller.h │ │ ├── rsp │ │ ├── rsp_core.c │ │ └── rsp_core.h │ │ ├── rsp_hle │ │ ├── LICENSES │ │ ├── alist.c │ │ ├── alist.h │ │ ├── alist_audio.c │ │ ├── alist_naudio.c │ │ ├── alist_nead.c │ │ ├── arithmetics.h │ │ ├── audio.c │ │ ├── audio.h │ │ ├── cicx105.c │ │ ├── common.h │ │ ├── hle.c │ │ ├── hle.h │ │ ├── hle_external.h │ │ ├── hle_internal.h │ │ ├── hvqm.c │ │ ├── jpeg.c │ │ ├── memory.c │ │ ├── memory.h │ │ ├── mp3.c │ │ ├── musyx.c │ │ ├── plugin.c │ │ ├── re2.c │ │ └── ucodes.h │ │ ├── rsp_lle │ │ ├── bench.c │ │ ├── config.h │ │ ├── execute.h │ │ ├── matrix.h │ │ ├── rsp.c │ │ ├── rsp.h │ │ ├── rsp_lle.h │ │ ├── su.h │ │ └── vu │ │ │ ├── cf.h │ │ │ ├── clamp.h │ │ │ ├── divrom.h │ │ │ ├── shuffle.h │ │ │ ├── vabs.h │ │ │ ├── vadd.h │ │ │ ├── vaddc.h │ │ │ ├── vand.h │ │ │ ├── vch.h │ │ │ ├── vcl.h │ │ │ ├── vcr.h │ │ │ ├── veq.h │ │ │ ├── vge.h │ │ │ ├── vlt.h │ │ │ ├── vmacf.h │ │ │ ├── vmacq.h │ │ │ ├── vmacu.h │ │ │ ├── vmadh.h │ │ │ ├── vmadl.h │ │ │ ├── vmadm.h │ │ │ ├── vmadn.h │ │ │ ├── vmov.h │ │ │ ├── vmrg.h │ │ │ ├── vmudh.h │ │ │ ├── vmudl.h │ │ │ ├── vmudm.h │ │ │ ├── vmudn.h │ │ │ ├── vmulf.h │ │ │ ├── vmulu.h │ │ │ ├── vnand.h │ │ │ ├── vne.h │ │ │ ├── vnop.h │ │ │ ├── vnor.h │ │ │ ├── vnxor.h │ │ │ ├── vor.h │ │ │ ├── vrcp.h │ │ │ ├── vrcph.h │ │ │ ├── vrcpl.h │ │ │ ├── vrsq.h │ │ │ ├── vrsqh.h │ │ │ ├── vrsql.h │ │ │ ├── vsaw.h │ │ │ ├── vsub.h │ │ │ ├── vsubc.h │ │ │ ├── vu.h │ │ │ └── vxor.h │ │ ├── si │ │ ├── cic.c │ │ ├── cic.h │ │ ├── game_controller.c │ │ ├── game_controller.h │ │ ├── n64_cic_nus_6105.c │ │ ├── n64_cic_nus_6105.h │ │ ├── pif.c │ │ ├── pif.h │ │ ├── si_controller.c │ │ └── si_controller.h │ │ ├── usf │ │ ├── barray.c │ │ ├── barray.h │ │ ├── resampler.c │ │ ├── resampler.h │ │ ├── usf.c │ │ ├── usf.h │ │ └── usf_internal.h │ │ └── vi │ │ ├── vi_controller.c │ │ └── vi_controller.h ├── libatrac9 │ ├── libatrac9-Info.plist │ └── libatrac9.xcodeproj │ │ └── project.pbxproj ├── libbinio │ ├── libbinio.xcodeproj │ │ └── project.pbxproj │ └── libbinio │ │ ├── Info.plist │ │ └── binio.h ├── libcelt_0061 │ ├── celt-0.6.1 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Doxyfile │ │ ├── Doxyfile.devel │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── celt.pc.in │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── install-sh │ │ ├── libcelt.spec.in │ │ ├── libcelt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── bands.c │ │ │ ├── bands.h │ │ │ ├── celt.c │ │ │ ├── celt.h │ │ │ ├── celt_header.h │ │ │ ├── celt_types.h │ │ │ ├── config.h │ │ │ ├── cwrs.c │ │ │ ├── cwrs.h │ │ │ ├── dump_modes.c │ │ │ ├── ecintrin.h │ │ │ ├── entcode.c │ │ │ ├── entcode.h │ │ │ ├── entdec.c │ │ │ ├── entdec.h │ │ │ ├── entenc.c │ │ │ ├── entenc.h │ │ │ ├── fixed_c5x.h │ │ │ ├── fixed_c6x.h │ │ │ ├── fixed_generic.h │ │ │ ├── float_cast.h │ │ │ ├── header.c │ │ │ ├── kfft_double.h │ │ │ ├── kfft_single.c │ │ │ ├── kfft_single.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.c │ │ │ ├── kiss_fftr.h │ │ │ ├── laplace.c │ │ │ ├── laplace.h │ │ │ ├── match-test.sh │ │ │ ├── mathops.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── mfrngcod.h │ │ │ ├── modes.c │ │ │ ├── modes.h │ │ │ ├── os_support.h │ │ │ ├── pitch.c │ │ │ ├── pitch.h │ │ │ ├── psy.c │ │ │ ├── psy.h │ │ │ ├── quant_bands.c │ │ │ ├── quant_bands.h │ │ │ ├── rangedec.c │ │ │ ├── rangeenc.c │ │ │ ├── rate.c │ │ │ ├── rate.h │ │ │ ├── stack_alloc.h │ │ │ ├── testcelt.c │ │ │ ├── vq.c │ │ │ └── vq.h │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cwrs32-test.c │ │ │ ├── dft-test.c │ │ │ ├── ectest.c │ │ │ ├── laplace-test.c │ │ │ ├── mathops-test.c │ │ │ ├── mdct-test.c │ │ │ ├── real-fft-test.c │ │ │ ├── tandem-test.c │ │ │ └── type-test.c │ │ └── tools │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── celtdec.c │ │ │ ├── celtenc.c │ │ │ ├── getopt.c │ │ │ ├── getopt1.c │ │ │ ├── getopt_win.h │ │ │ ├── skeleton.c │ │ │ ├── skeleton.h │ │ │ ├── wav_io.c │ │ │ ├── wav_io.h │ │ │ ├── wave_out.c │ │ │ └── wave_out.h │ └── libcelt_0061 │ │ ├── libcelt_0061.xcodeproj │ │ └── project.pbxproj │ │ └── libcelt_0061 │ │ └── Info.plist ├── libcelt_0110 │ ├── celt-0.11.0 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Doxyfile │ │ ├── Doxyfile.devel │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── celt.pc.in │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── install-sh │ │ ├── libcelt.spec.in │ │ ├── libcelt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── bands.c │ │ │ ├── bands.h │ │ │ ├── celt.c │ │ │ ├── celt.h │ │ │ ├── celt_header.h │ │ │ ├── celt_types.h │ │ │ ├── config.h │ │ │ ├── cwrs.c │ │ │ ├── cwrs.h │ │ │ ├── dump_modes.c │ │ │ ├── ecintrin.h │ │ │ ├── entcode.c │ │ │ ├── entcode.h │ │ │ ├── entdec.c │ │ │ ├── entdec.h │ │ │ ├── entenc.c │ │ │ ├── entenc.h │ │ │ ├── fixed_c5x.h │ │ │ ├── fixed_c6x.h │ │ │ ├── fixed_generic.h │ │ │ ├── float_cast.h │ │ │ ├── header.c │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── laplace.c │ │ │ ├── laplace.h │ │ │ ├── match-test.sh │ │ │ ├── mathops.c │ │ │ ├── mathops.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── mfrngcod.h │ │ │ ├── modes.c │ │ │ ├── modes.h │ │ │ ├── os_support.h │ │ │ ├── pitch.c │ │ │ ├── pitch.h │ │ │ ├── plc.c │ │ │ ├── plc.h │ │ │ ├── quant_bands.c │ │ │ ├── quant_bands.h │ │ │ ├── rate.c │ │ │ ├── rate.h │ │ │ ├── stack_alloc.h │ │ │ ├── static_modes_fixed.c │ │ │ ├── static_modes_float.c │ │ │ ├── testcelt.c │ │ │ ├── vq.c │ │ │ └── vq.h │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cwrs32-test.c │ │ │ ├── dft-test.c │ │ │ ├── ectest.c │ │ │ ├── laplace-test.c │ │ │ ├── mathops-test.c │ │ │ ├── mdct-test.c │ │ │ ├── tandem-test.c │ │ │ └── type-test.c │ │ └── tools │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── celtdec.c │ │ │ ├── celtenc.c │ │ │ ├── getopt.c │ │ │ ├── getopt1.c │ │ │ ├── getopt_win.h │ │ │ ├── skeleton.c │ │ │ ├── skeleton.h │ │ │ ├── wav_io.c │ │ │ ├── wav_io.h │ │ │ ├── wave_out.c │ │ │ └── wave_out.h │ └── libcelt_0110 │ │ ├── libcelt_0110.xcodeproj │ │ └── project.pbxproj │ │ └── libcelt_0110 │ │ └── Info.plist ├── libsidplayfp │ ├── Info.plist │ ├── README.md │ ├── generated │ │ └── src │ │ │ ├── builders │ │ │ ├── resid-builder │ │ │ │ └── resid │ │ │ │ │ ├── siddefs.h │ │ │ │ │ ├── wave6581_PST.h │ │ │ │ │ ├── wave6581_PS_.h │ │ │ │ │ ├── wave6581_P_T.h │ │ │ │ │ ├── wave6581__ST.h │ │ │ │ │ ├── wave8580_PST.h │ │ │ │ │ ├── wave8580_PS_.h │ │ │ │ │ ├── wave8580_P_T.h │ │ │ │ │ └── wave8580__ST.h │ │ │ └── residfp-builder │ │ │ │ └── residfp │ │ │ │ └── siddefs-fp.h │ │ │ ├── config.h │ │ │ ├── sidplayfp │ │ │ └── sidversion.h │ │ │ └── sidtune │ │ │ ├── sidplayer1.bin │ │ │ └── sidplayer2.bin │ ├── sidplayfp.xcodeproj │ │ └── project.pbxproj │ └── update-generated.sh ├── mGBA │ ├── mGBA.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── mGBA.xcscheme │ └── mGBA │ │ ├── Info.plist │ │ └── version.c ├── midi_processing │ ├── midi_processing.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── midi_processing.xcscheme │ └── midi_processing │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── midi_container.cpp │ │ ├── midi_container.h │ │ ├── midi_processing-Info.plist │ │ ├── midi_processor.h │ │ ├── midi_processor_gmf.cpp │ │ ├── midi_processor_helpers.cpp │ │ ├── midi_processor_hmi.cpp │ │ ├── midi_processor_hmp.cpp │ │ ├── midi_processor_lds.cpp │ │ ├── midi_processor_mids.cpp │ │ ├── midi_processor_mus.cpp │ │ ├── midi_processor_riff_midi.cpp │ │ ├── midi_processor_standard_midi.cpp │ │ ├── midi_processor_syx.cpp │ │ ├── midi_processor_xmi.cpp │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── modplay │ ├── modplay.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── modplay.xcscheme │ └── modplay │ │ ├── barray.c │ │ ├── barray.h │ │ ├── dbopl.c │ │ ├── dbopl.h │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── ft2play.c │ │ ├── ft2play.h │ │ ├── modplay-Info.plist │ │ ├── resampler.c │ │ ├── resampler.h │ │ ├── st3play.c │ │ └── st3play.h ├── munt │ ├── munt.xcodeproj │ │ └── project.pbxproj │ └── munt │ │ ├── Info.plist │ │ └── mt32emu │ │ └── src │ │ ├── Analog.cpp │ │ ├── Analog.h │ │ ├── BReverbModel.cpp │ │ ├── BReverbModel.h │ │ ├── File.cpp │ │ ├── File.h │ │ ├── FileStream.cpp │ │ ├── FileStream.h │ │ ├── LA32FloatWaveGenerator.cpp │ │ ├── LA32FloatWaveGenerator.h │ │ ├── LA32Ramp.cpp │ │ ├── LA32Ramp.h │ │ ├── LA32WaveGenerator.cpp │ │ ├── LA32WaveGenerator.h │ │ ├── MemoryRegion.h │ │ ├── MidiEventQueue.h │ │ ├── MidiStreamParser.cpp │ │ ├── MidiStreamParser.h │ │ ├── Part.cpp │ │ ├── Part.h │ │ ├── Partial.cpp │ │ ├── Partial.h │ │ ├── PartialManager.cpp │ │ ├── PartialManager.h │ │ ├── Poly.cpp │ │ ├── Poly.h │ │ ├── ROMInfo.cpp │ │ ├── ROMInfo.h │ │ ├── Structures.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── TVA.cpp │ │ ├── TVA.h │ │ ├── TVF.cpp │ │ ├── TVF.h │ │ ├── TVP.cpp │ │ ├── TVP.h │ │ ├── Tables.cpp │ │ ├── Tables.h │ │ ├── Types.h │ │ ├── internals.h │ │ ├── mmath.h │ │ ├── mt32emu.h │ │ └── sha1 │ │ ├── license.txt │ │ ├── sha1.cpp │ │ └── sha1.h ├── nuked-sc55 │ ├── LICENSE │ ├── README.md │ ├── data │ │ └── back.data │ ├── nuked-sc55.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── nuked-sc55.xcscheme │ └── nuked-sc55 │ │ ├── api.h │ │ ├── lcd.cpp │ │ ├── lcd.h │ │ ├── lcd_font.h │ │ ├── mcu.cpp │ │ ├── mcu.h │ │ ├── mcu_interrupt.cpp │ │ ├── mcu_interrupt.h │ │ ├── mcu_opcodes.cpp │ │ ├── mcu_opcodes.h │ │ ├── mcu_timer.cpp │ │ ├── mcu_timer.h │ │ ├── pcm.cpp │ │ ├── pcm.h │ │ ├── state.h │ │ ├── submcu.cpp │ │ └── submcu.h ├── playptmod │ ├── playptmod.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── playptmod.xcscheme │ └── playptmod │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── playptmod-Info.plist │ │ ├── playptmod.c │ │ ├── playptmod.h │ │ ├── resampler.c │ │ └── resampler.h ├── psflib │ ├── psflib.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── psflib.xcscheme │ └── psflib │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ ├── psf2fs.c │ │ ├── psf2fs.h │ │ ├── psflib-Info.plist │ │ ├── psflib.c │ │ ├── psflib.h │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── vgmstream │ ├── libvgmstream.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── vgmstream.xcscheme │ ├── vgmstream-mods.patch │ └── vgmstream │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── ext_includes │ │ └── celt │ │ │ ├── celt_fsb.h │ │ │ └── celt_types.h │ │ ├── libvgmstream-Info.plist │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ ├── src │ │ ├── api.h │ │ ├── api_decode.h │ │ ├── api_helpers.h │ │ ├── api_streamfile.h │ │ ├── api_tags.h │ │ ├── api_version.h │ │ ├── base │ │ │ ├── api_decode_base.c │ │ │ ├── api_decode_open.c │ │ │ ├── api_decode_play.c │ │ │ ├── api_helpers.c │ │ │ ├── api_internal.h │ │ │ ├── api_libsf.c │ │ │ ├── api_libsf_cache.c │ │ │ ├── api_tags.c │ │ │ ├── codec_info.c │ │ │ ├── codec_info.h │ │ │ ├── decode.c │ │ │ ├── decode.h │ │ │ ├── decode_state.h │ │ │ ├── info.c │ │ │ ├── mixer.c │ │ │ ├── mixer.h │ │ │ ├── mixer_ops_common.c │ │ │ ├── mixer_ops_fade.c │ │ │ ├── mixer_priv.h │ │ │ ├── mixing.c │ │ │ ├── mixing.h │ │ │ ├── mixing_commands.c │ │ │ ├── mixing_macros.c │ │ │ ├── play_config.c │ │ │ ├── play_state.c │ │ │ ├── plugins.c │ │ │ ├── plugins.h │ │ │ ├── render.c │ │ │ ├── render.h │ │ │ ├── sbuf.c │ │ │ ├── sbuf.h │ │ │ ├── seek.c │ │ │ ├── seek_table.c │ │ │ ├── seek_table.h │ │ │ ├── streamfile_api.c │ │ │ ├── streamfile_buffer.c │ │ │ ├── streamfile_clamp.c │ │ │ ├── streamfile_fakename.c │ │ │ ├── streamfile_io.c │ │ │ ├── streamfile_multifile.c │ │ │ ├── streamfile_stdio.c │ │ │ ├── streamfile_wrap.c │ │ │ └── tags.c │ │ ├── coding │ │ │ ├── SASSC_decoder.c │ │ │ ├── acm_decoder.c │ │ │ ├── adx_decoder.c │ │ │ ├── afc_decoder.c │ │ │ ├── asf_decoder.c │ │ │ ├── atrac9_decoder.c │ │ │ ├── binka_decoder.c │ │ │ ├── celt_fsb_decoder.c │ │ │ ├── circus_decoder.c │ │ │ ├── coding.h │ │ │ ├── coding_utils.c │ │ │ ├── compresswave_decoder.c │ │ │ ├── derf_decoder.c │ │ │ ├── df_decoder.c │ │ │ ├── dpcm_kcej_decoder.c │ │ │ ├── dsa_decoder.c │ │ │ ├── ea_mt_decoder.c │ │ │ ├── ea_xa_decoder.c │ │ │ ├── ea_xas_decoder.c │ │ │ ├── fadpcm_decoder.c │ │ │ ├── ffmpeg_decoder.c │ │ │ ├── ffmpeg_decoder_custom_mp4.c │ │ │ ├── ffmpeg_decoder_custom_opus.c │ │ │ ├── ffmpeg_decoder_utils.c │ │ │ ├── g719_decoder.c │ │ │ ├── g721_decoder.c │ │ │ ├── g7221_decoder.c │ │ │ ├── g72x_state.h │ │ │ ├── hca_decoder.c │ │ │ ├── ice_decoder.c │ │ │ ├── ima_decoder.c │ │ │ ├── imuse_decoder.c │ │ │ ├── ka1a_decoder.c │ │ │ ├── l5_555_decoder.c │ │ │ ├── libs │ │ │ │ ├── binka_data.h │ │ │ │ ├── binka_dec.c │ │ │ │ ├── binka_dec.h │ │ │ │ ├── binka_transform.c │ │ │ │ ├── binka_transform.h │ │ │ │ ├── circus_vq_data.h │ │ │ │ ├── circus_vq_lib.c │ │ │ │ ├── circus_vq_lib.h │ │ │ │ ├── circus_vq_lzxpcm.h │ │ │ │ ├── clhca.c │ │ │ │ ├── clhca.h │ │ │ │ ├── compresswave_lib.c │ │ │ │ ├── compresswave_lib.h │ │ │ │ ├── g7221_aes.c │ │ │ │ ├── g7221_aes.h │ │ │ │ ├── g7221_data.h │ │ │ │ ├── g7221_lib.c │ │ │ │ ├── g7221_lib.h │ │ │ │ ├── icelib.c │ │ │ │ ├── icelib.h │ │ │ │ ├── ka1a_dec.c │ │ │ │ ├── ka1a_dec.h │ │ │ │ ├── ka1a_dec_data.h │ │ │ │ ├── libacm.h │ │ │ │ ├── libacm_decode.c │ │ │ │ ├── libacm_util.c │ │ │ │ ├── minimp3.h │ │ │ │ ├── mio_erisacontext.c │ │ │ │ ├── mio_erisacontext.h │ │ │ │ ├── mio_erisafile.c │ │ │ │ ├── mio_erisafile.h │ │ │ │ ├── mio_erisamatrix.c │ │ │ │ ├── mio_erisamatrix.h │ │ │ │ ├── mio_erisasound.c │ │ │ │ ├── mio_erisasound.h │ │ │ │ ├── mio_xerisa.h │ │ │ │ ├── nwa_lib.c │ │ │ │ ├── nwa_lib.h │ │ │ │ ├── ongakukan_adp_lib.c │ │ │ │ ├── ongakukan_adp_lib.h │ │ │ │ ├── oor_helpers.c │ │ │ │ ├── oor_helpers.h │ │ │ │ ├── relic_lib.c │ │ │ │ ├── relic_lib.h │ │ │ │ ├── relic_mixfft.c │ │ │ │ ├── tac_data.h │ │ │ │ ├── tac_lib.c │ │ │ │ ├── tac_lib.h │ │ │ │ ├── tac_ops.h │ │ │ │ ├── ubi_mpeg_helpers.c │ │ │ │ ├── ubi_mpeg_helpers.h │ │ │ │ ├── utkdec.c │ │ │ │ ├── utkdec.h │ │ │ │ ├── vorbis_codebooks_fsb.h │ │ │ │ ├── vorbis_codebooks_oor.h │ │ │ │ └── vorbis_codebooks_wwise.h │ │ │ ├── lsf_decoder.c │ │ │ ├── mio_decoder.c │ │ │ ├── mp4_aac_decoder.c │ │ │ ├── mpc3_decoder.c │ │ │ ├── mpeg_custom_info.c │ │ │ ├── mpeg_custom_utils.c │ │ │ ├── mpeg_custom_utils_ahx.c │ │ │ ├── mpeg_custom_utils_ealayer3.c │ │ │ ├── mpeg_custom_utils_eamp3.c │ │ │ ├── mpeg_decoder.c │ │ │ ├── mpeg_decoder.h │ │ │ ├── msadpcm_decoder.c │ │ │ ├── mta2_decoder.c │ │ │ ├── mtaf_decoder.c │ │ │ ├── nds_procyon_decoder.c │ │ │ ├── ngc_dsp_decoder.c │ │ │ ├── ngc_dtk_decoder.c │ │ │ ├── nwa_decoder.c │ │ │ ├── ogg_vorbis_decoder.c │ │ │ ├── oki_decoder.c │ │ │ ├── ongakukan_adp_decoder.c │ │ │ ├── pcm_decoder.c │ │ │ ├── psv_decoder.c │ │ │ ├── psx_decoder.c │ │ │ ├── ptadpcm_decoder.c │ │ │ ├── relic_decoder.c │ │ │ ├── sdx2_decoder.c │ │ │ ├── speex_decoder.c │ │ │ ├── tac_decoder.c │ │ │ ├── tantalus_decoder.c │ │ │ ├── tgcadpcm_decoder.c │ │ │ ├── ualaw_decoder.c │ │ │ ├── ubi_adpcm_decoder.c │ │ │ ├── ubi_mpeg_decoder.c │ │ │ ├── vadpcm_decoder.c │ │ │ ├── vorbis_custom_decoder.c │ │ │ ├── vorbis_custom_decoder.h │ │ │ ├── vorbis_custom_utils.c │ │ │ ├── vorbis_custom_utils_awc.c │ │ │ ├── vorbis_custom_utils_fsb.c │ │ │ ├── vorbis_custom_utils_ogl.c │ │ │ ├── vorbis_custom_utils_oor.c │ │ │ ├── vorbis_custom_utils_sk.c │ │ │ ├── vorbis_custom_utils_vid1.c │ │ │ ├── vorbis_custom_utils_wwise.c │ │ │ ├── wady_decoder.c │ │ │ ├── ws_decoder.c │ │ │ ├── xa_decoder.c │ │ │ ├── xmd_decoder.c │ │ │ └── yamaha_decoder.c │ │ ├── formats.c │ │ ├── layout │ │ │ ├── blocked.c │ │ │ ├── blocked_adm.c │ │ │ ├── blocked_ast.c │ │ │ ├── blocked_awc.c │ │ │ ├── blocked_caf.c │ │ │ ├── blocked_dec.c │ │ │ ├── blocked_ea_1snh.c │ │ │ ├── blocked_ea_schl.c │ │ │ ├── blocked_ea_sns.c │ │ │ ├── blocked_ea_swvr.c │ │ │ ├── blocked_ea_wve_ad10.c │ │ │ ├── blocked_ea_wve_au00.c │ │ │ ├── blocked_filp.c │ │ │ ├── blocked_gsnd.c │ │ │ ├── blocked_h4m.c │ │ │ ├── blocked_halpst.c │ │ │ ├── blocked_hwas.c │ │ │ ├── blocked_matx.c │ │ │ ├── blocked_mul.c │ │ │ ├── blocked_mxch.c │ │ │ ├── blocked_ps2_iab.c │ │ │ ├── blocked_rage_aud.c │ │ │ ├── blocked_rws.c │ │ │ ├── blocked_sthd.c │ │ │ ├── blocked_str_snds.c │ │ │ ├── blocked_thp.c │ │ │ ├── blocked_tt_ad.c │ │ │ ├── blocked_ubi_sce.c │ │ │ ├── blocked_vas.c │ │ │ ├── blocked_vas_kceo.c │ │ │ ├── blocked_vgs.c │ │ │ ├── blocked_vid1.c │ │ │ ├── blocked_vs.c │ │ │ ├── blocked_vs_square.c │ │ │ ├── blocked_vs_str.c │ │ │ ├── blocked_ws_aud.c │ │ │ ├── blocked_wsi.c │ │ │ ├── blocked_xa.c │ │ │ ├── blocked_xa_aiff.c │ │ │ ├── blocked_xvag.c │ │ │ ├── blocked_xwav.c │ │ │ ├── flat.c │ │ │ ├── interleave.c │ │ │ ├── layered.c │ │ │ ├── layout.h │ │ │ └── segmented.c │ │ ├── libvgmstream.h │ │ ├── libvgmstream_streamfile.h │ │ ├── meta │ │ │ ├── 208.c │ │ │ ├── 2dx.c │ │ │ ├── 2dx9.c │ │ │ ├── 2pfs.c │ │ │ ├── 9tav.c │ │ │ ├── 9tav_streamfile.h │ │ │ ├── a2m.c │ │ │ ├── aac_triace.c │ │ │ ├── aax.c │ │ │ ├── acb.c │ │ │ ├── acm.c │ │ │ ├── acx.c │ │ │ ├── adm.c │ │ │ ├── adp_konami.c │ │ │ ├── adp_ongakukan.c │ │ │ ├── adp_wildfire.c │ │ │ ├── adpcm_capcom.c │ │ │ ├── ads.c │ │ │ ├── ads_midway.c │ │ │ ├── adx.c │ │ │ ├── adx_keys.h │ │ │ ├── afc.c │ │ │ ├── agsc.c │ │ │ ├── ahv.c │ │ │ ├── ahx.c │ │ │ ├── ahx_keys.h │ │ │ ├── aif_asobo.c │ │ │ ├── aifc.c │ │ │ ├── aix.c │ │ │ ├── aix_streamfile.h │ │ │ ├── akb.c │ │ │ ├── alp.c │ │ │ ├── ao.c │ │ │ ├── apa3.c │ │ │ ├── apa3_streamfile.h │ │ │ ├── apc.c │ │ │ ├── apple_caff.c │ │ │ ├── asd_naxat.c │ │ │ ├── asf.c │ │ │ ├── ast.c │ │ │ ├── ast_mmv.c │ │ │ ├── ast_mv.c │ │ │ ├── astb.c │ │ │ ├── astl.c │ │ │ ├── atsl.c │ │ │ ├── audiopkg.c │ │ │ ├── audiopkg_streamfile.h │ │ │ ├── aus.c │ │ │ ├── awb.c │ │ │ ├── awb_aac_encryption_streamfile.h │ │ │ ├── awc.c │ │ │ ├── awc_decryption_streamfile.h │ │ │ ├── awc_streamfile.h │ │ │ ├── awc_xma_streamfile.h │ │ │ ├── awd.c │ │ │ ├── axhd.c │ │ │ ├── baf.c │ │ │ ├── baka.c │ │ │ ├── bar.c │ │ │ ├── bar_streamfile.h │ │ │ ├── bcf1.c │ │ │ ├── bcstm.c │ │ │ ├── bfstm.c │ │ │ ├── bfwav.c │ │ │ ├── bg00.c │ │ │ ├── bgw.c │ │ │ ├── bgw_streamfile.h │ │ │ ├── bigrp.c │ │ │ ├── bik.c │ │ │ ├── bkhd.c │ │ │ ├── bmp_konami.c │ │ │ ├── bnk_relic.c │ │ │ ├── bnk_sony.c │ │ │ ├── bns.c │ │ │ ├── bnsf.c │ │ │ ├── bnsf_keys.h │ │ │ ├── brstm.c │ │ │ ├── bsf.c │ │ │ ├── btsnd.c │ │ │ ├── bw_mp3_riff.c │ │ │ ├── bwav.c │ │ │ ├── caf.c │ │ │ ├── cf_df.c │ │ │ ├── chatterbox.c │ │ │ ├── ck.c │ │ │ ├── compresswave.c │ │ │ ├── cpk.c │ │ │ ├── cps.c │ │ │ ├── csb.c │ │ │ ├── csmp.c │ │ │ ├── cstr.c │ │ │ ├── cxs.c │ │ │ ├── dcs_wav.c │ │ │ ├── deblock_streamfile.c │ │ │ ├── deblock_streamfile.h │ │ │ ├── dec.c │ │ │ ├── derf.c │ │ │ ├── diva.c │ │ │ ├── dmsg_segh.c │ │ │ ├── dsb.c │ │ │ ├── dsf.c │ │ │ ├── dsp_adx.c │ │ │ ├── dsp_kceje.c │ │ │ ├── dvi.c │ │ │ ├── ea_1snh.c │ │ │ ├── ea_eaac.c │ │ │ ├── ea_eaac_abk.c │ │ │ ├── ea_eaac_hdr_sth_dat.c │ │ │ ├── ea_eaac_mpf_mus.c │ │ │ ├── ea_eaac_opus_streamfile.h │ │ │ ├── ea_eaac_sbr.c │ │ │ ├── ea_eaac_sbr_harmony.c │ │ │ ├── ea_eaac_standard.c │ │ │ ├── ea_eaac_streamfile.h │ │ │ ├── ea_eaac_tmx.c │ │ │ ├── ea_sbk.c │ │ │ ├── ea_schl.c │ │ │ ├── ea_schl_abk.c │ │ │ ├── ea_schl_fixed.c │ │ │ ├── ea_schl_hdr_dat.c │ │ │ ├── ea_schl_map_mpf_mus.c │ │ │ ├── ea_schl_standard.c │ │ │ ├── ea_schl_streamfile.h │ │ │ ├── ea_swvr.c │ │ │ ├── ea_wve_ad10.c │ │ │ ├── ea_wve_au00.c │ │ │ ├── ego_dic.c │ │ │ ├── encrypted.c │ │ │ ├── encrypted_bgm_streamfile.h │ │ │ ├── encrypted_mc161_streamfile.h │ │ │ ├── esf.c │ │ │ ├── exakt_sc.c │ │ │ ├── exst.c │ │ │ ├── ezw.c │ │ │ ├── fag.c │ │ │ ├── fda.c │ │ │ ├── ffdl.c │ │ │ ├── ffmpeg.c │ │ │ ├── filp.c │ │ │ ├── flx.c │ │ │ ├── fsb.c │ │ │ ├── fsb5.c │ │ │ ├── fsb5_fev.c │ │ │ ├── fsb5_streamfile.h │ │ │ ├── fsb_encrypted.c │ │ │ ├── fsb_encrypted_streamfile.h │ │ │ ├── fsb_interleave_streamfile.h │ │ │ ├── fsb_keys.h │ │ │ ├── fwse.c │ │ │ ├── g1l.c │ │ │ ├── gbts.c │ │ │ ├── gca.c │ │ │ ├── gcsw.c │ │ │ ├── gcub.c │ │ │ ├── genh.c │ │ │ ├── ghs.c │ │ │ ├── gin.c │ │ │ ├── gsnd.c │ │ │ ├── gwb_gwd.c │ │ │ ├── h4m.c │ │ │ ├── halpst.c │ │ │ ├── hca.c │ │ │ ├── hca_bf.h │ │ │ ├── hca_keys.h │ │ │ ├── hca_keys_awb.h │ │ │ ├── hd3_bd3.c │ │ │ ├── hd_bd.c │ │ │ ├── hgc1.c │ │ │ ├── his.c │ │ │ ├── hsf.c │ │ │ ├── hxd.c │ │ │ ├── i3ds.c │ │ │ ├── iab.c │ │ │ ├── idsp_ie.c │ │ │ ├── idtech.c │ │ │ ├── idtech_streamfile.h │ │ │ ├── idvi.c │ │ │ ├── ifs.c │ │ │ ├── iivb.c │ │ │ ├── ikm.c │ │ │ ├── ild.c │ │ │ ├── ima.c │ │ │ ├── imc.c │ │ │ ├── imuse.c │ │ │ ├── isb.c │ │ │ ├── ish_isd.c │ │ │ ├── ivag.c │ │ │ ├── ivb.c │ │ │ ├── ivb_streamfile.h │ │ │ ├── jaudio.c │ │ │ ├── jstm.c │ │ │ ├── jstm_streamfile.h │ │ │ ├── ka1a.c │ │ │ ├── kat.c │ │ │ ├── kcey.c │ │ │ ├── kma9.c │ │ │ ├── kma9_streamfile.h │ │ │ ├── knon.c │ │ │ ├── kraw.c │ │ │ ├── ktac.c │ │ │ ├── ktsc.c │ │ │ ├── ktsr.c │ │ │ ├── ktsr_streamfile.h │ │ │ ├── ktss.c │ │ │ ├── kvag.c │ │ │ ├── kwb.c │ │ │ ├── lopu_fb.c │ │ │ ├── lp_ap_lep.c │ │ │ ├── lp_ap_lep_streamfile.h │ │ │ ├── lpcm_fb.c │ │ │ ├── lpcm_shade.c │ │ │ ├── lps.c │ │ │ ├── lrmd.c │ │ │ ├── lrmd_streamfile.h │ │ │ ├── lsf.c │ │ │ ├── madp.c │ │ │ ├── maxis_xa.c │ │ │ ├── mcg.c │ │ │ ├── mcss.c │ │ │ ├── meta.h │ │ │ ├── mhwk.c │ │ │ ├── mib_mih.c │ │ │ ├── mic_koei.c │ │ │ ├── mio.c │ │ │ ├── mjb_mjh.c │ │ │ ├── mogg.c │ │ │ ├── mp4.c │ │ │ ├── mp4_faac.c │ │ │ ├── mpc3.c │ │ │ ├── mpds.c │ │ │ ├── mpeg.c │ │ │ ├── msa.c │ │ │ ├── msb_msh.c │ │ │ ├── msf.c │ │ │ ├── msf_banpresto.c │ │ │ ├── msf_konami.c │ │ │ ├── msf_tamasoft.c │ │ │ ├── msv.c │ │ │ ├── mta2.c │ │ │ ├── mta2_streamfile.h │ │ │ ├── mtaf.c │ │ │ ├── mul.c │ │ │ ├── mul_streamfile.h │ │ │ ├── mups.c │ │ │ ├── mups_streamfile.h │ │ │ ├── mus_acm.c │ │ │ ├── mus_krome.c │ │ │ ├── mus_vc.c │ │ │ ├── musc.c │ │ │ ├── musx.c │ │ │ ├── myspd.c │ │ │ ├── naac.c │ │ │ ├── naomi_adpcm.c │ │ │ ├── nds_hwas.c │ │ │ ├── nds_rrds.c │ │ │ ├── nds_strm.c │ │ │ ├── ngc_adpdtk.c │ │ │ ├── ngc_dsp_asura.c │ │ │ ├── ngc_dsp_std.c │ │ │ ├── ngc_ssm.c │ │ │ ├── ngc_str_cauldron.c │ │ │ ├── npsf.c │ │ │ ├── nst_monster.c │ │ │ ├── nub.c │ │ │ ├── nus3audio.c │ │ │ ├── nus3bank.c │ │ │ ├── nus3bank_streamfile.h │ │ │ ├── nwa.c │ │ │ ├── nwav.c │ │ │ ├── nxa1.c │ │ │ ├── nxap.c │ │ │ ├── nxof.c │ │ │ ├── ogg_opus.c │ │ │ ├── ogg_vorbis.c │ │ │ ├── ogg_vorbis_streamfile.h │ │ │ ├── ogl.c │ │ │ ├── ogv_3rdeye.c │ │ │ ├── omu.c │ │ │ ├── oor.c │ │ │ ├── opus.c │ │ │ ├── opus_interleave_streamfile.h │ │ │ ├── p2bt_move_visa.c │ │ │ ├── p3d.c │ │ │ ├── pasx.c │ │ │ ├── pc_adp_otns.c │ │ │ ├── pc_mxst.c │ │ │ ├── pcm_kceje.c │ │ │ ├── pcm_success.c │ │ │ ├── pdt.c │ │ │ ├── piff_tpcm.c │ │ │ ├── pona.c │ │ │ ├── pos.c │ │ │ ├── pphd.c │ │ │ ├── ppst.c │ │ │ ├── ppst_streamfile.h │ │ │ ├── ps2_adm.c │ │ │ ├── ps2_b1s.c │ │ │ ├── ps2_bmdx.c │ │ │ ├── ps2_joe.c │ │ │ ├── ps2_tec.c │ │ │ ├── ps2_vbk.c │ │ │ ├── ps2_wad.c │ │ │ ├── ps_headerless.c │ │ │ ├── psb.c │ │ │ ├── psf.c │ │ │ ├── psnd.c │ │ │ ├── pwb.c │ │ │ ├── rad.c │ │ │ ├── rage_aud.c │ │ │ ├── rage_aud_streamfile.h │ │ │ ├── ras.c │ │ │ ├── raw_int.c │ │ │ ├── raw_pcm.c │ │ │ ├── raw_rsf.c │ │ │ ├── raw_s14_sss.c │ │ │ ├── raw_wavm.c │ │ │ ├── redspark.c │ │ │ ├── rfrm.c │ │ │ ├── riff.c │ │ │ ├── riff_ima.c │ │ │ ├── riff_ogg_streamfile.h │ │ │ ├── rkv.c │ │ │ ├── rs03.c │ │ │ ├── rsd.c │ │ │ ├── rstm_rockstar.c │ │ │ ├── rwar.c │ │ │ ├── rwax.c │ │ │ ├── rws_809.c │ │ │ ├── rws_80d.c │ │ │ ├── rwsd.c │ │ │ ├── rxws.c │ │ │ ├── s3v.c │ │ │ ├── sab.c │ │ │ ├── sab_streamfile.h │ │ │ ├── sadf.c │ │ │ ├── sadl.c │ │ │ ├── sat_sap.c │ │ │ ├── sbk.c │ │ │ ├── scd_pcm.c │ │ │ ├── sd9.c │ │ │ ├── sdd.c │ │ │ ├── sdf.c │ │ │ ├── sdrh.c │ │ │ ├── sdt.c │ │ │ ├── seb.c │ │ │ ├── seg.c │ │ │ ├── sfh.c │ │ │ ├── sfh_streamfile.h │ │ │ ├── sfl.c │ │ │ ├── sfx0_monster.c │ │ │ ├── sfxb.c │ │ │ ├── sgxd.c │ │ │ ├── shaa.c │ │ │ ├── silence.c │ │ │ ├── sk_aud.c │ │ │ ├── skex.c │ │ │ ├── sl3.c │ │ │ ├── sli.c │ │ │ ├── smh_smc.c │ │ │ ├── smk.c │ │ │ ├── smp.c │ │ │ ├── smpl.c │ │ │ ├── smss.c │ │ │ ├── smv.c │ │ │ ├── sndp.c │ │ │ ├── snds.c │ │ │ ├── sndx.c │ │ │ ├── sndz.c │ │ │ ├── song_monster.c │ │ │ ├── spm.c │ │ │ ├── sps_n1.c │ │ │ ├── spsd.c │ │ │ ├── spt_spd.c │ │ │ ├── sqex_scd.c │ │ │ ├── sqex_sead.c │ │ │ ├── sqex_streamfile.h │ │ │ ├── squeak.c │ │ │ ├── srcd.c │ │ │ ├── sre_pcm.c │ │ │ ├── sscf.c │ │ │ ├── sscf_encrypted.c │ │ │ ├── sscf_encrypted.h │ │ │ ├── ssnd.c │ │ │ ├── ssp.c │ │ │ ├── sspf.c │ │ │ ├── sspr.c │ │ │ ├── ster.c │ │ │ ├── sthd.c │ │ │ ├── stma.c │ │ │ ├── str_sega.c │ │ │ ├── str_snds.c │ │ │ ├── str_sqex.c │ │ │ ├── str_wav.c │ │ │ ├── str_wav_streamfile.h │ │ │ ├── strm_abylight.c │ │ │ ├── sts.c │ │ │ ├── svag_kcet.c │ │ │ ├── svag_snk.c │ │ │ ├── svgp.c │ │ │ ├── svs.c │ │ │ ├── swar.c │ │ │ ├── swav.c │ │ │ ├── tac.c │ │ │ ├── tgc.c │ │ │ ├── thp.c │ │ │ ├── tt_ad.c │ │ │ ├── txth.c │ │ │ ├── txth_streamfile.h │ │ │ ├── txtp.c │ │ │ ├── txtp.h │ │ │ ├── txtp_parser.c │ │ │ ├── txtp_process.c │ │ │ ├── ubi_apm.c │ │ │ ├── ubi_bao.c │ │ │ ├── ubi_bao_config.c │ │ │ ├── ubi_bao_config.h │ │ │ ├── ubi_bao_streamfile.h │ │ │ ├── ubi_ckd.c │ │ │ ├── ubi_ckd_cwav.c │ │ │ ├── ubi_ckd_cwav_streamfile.h │ │ │ ├── ubi_hx.c │ │ │ ├── ubi_jade.c │ │ │ ├── ubi_lyn.c │ │ │ ├── ubi_lyn_streamfile.h │ │ │ ├── ubi_raki.c │ │ │ ├── ubi_sb.c │ │ │ ├── ubi_sb_garbage_streamfile.h │ │ │ ├── ubi_sb_streamfile.h │ │ │ ├── ue4opus.c │ │ │ ├── ueba.c │ │ │ ├── undefind.c │ │ │ ├── utk.c │ │ │ ├── va3.c │ │ │ ├── vab.c │ │ │ ├── vag.c │ │ │ ├── vai.c │ │ │ ├── vas_kceo.c │ │ │ ├── vas_rockstar.c │ │ │ ├── vds_vdm.c │ │ │ ├── vgs.c │ │ │ ├── vgs_ps.c │ │ │ ├── vgv.c │ │ │ ├── vid1.c │ │ │ ├── vig_kces.c │ │ │ ├── vis.c │ │ │ ├── vms.c │ │ │ ├── voi.c │ │ │ ├── vpk.c │ │ │ ├── vs.c │ │ │ ├── vs_square.c │ │ │ ├── vs_str.c │ │ │ ├── vsf.c │ │ │ ├── vsv.c │ │ │ ├── vsv_streamfile.h │ │ │ ├── vxn.c │ │ │ ├── wady.c │ │ │ ├── waf.c │ │ │ ├── wav2.c │ │ │ ├── wave.c │ │ │ ├── wave_segmented.c │ │ │ ├── wavebatch.c │ │ │ ├── wb.c │ │ │ ├── wbk.c │ │ │ ├── wpd.c │ │ │ ├── ws_aud.c │ │ │ ├── wsi.c │ │ │ ├── wv6.c │ │ │ ├── wvs.c │ │ │ ├── wwise.c │ │ │ ├── wxd_wxh.c │ │ │ ├── xa.c │ │ │ ├── xa2_acclaim.c │ │ │ ├── xa_04sw.c │ │ │ ├── xa_xa30.c │ │ │ ├── xabp.c │ │ │ ├── xau.c │ │ │ ├── xavs.c │ │ │ ├── xavs_streamfile.h │ │ │ ├── xbox_ims.c │ │ │ ├── xma.c │ │ │ ├── xma_ue3.c │ │ │ ├── xmd.c │ │ │ ├── xmu.c │ │ │ ├── xnb.c │ │ │ ├── xnb_lz4mg.h │ │ │ ├── xnb_streamfile.h │ │ │ ├── xopus.c │ │ │ ├── xpcm.c │ │ │ ├── xps.c │ │ │ ├── xsh_xsd_xss.c │ │ │ ├── xss.c │ │ │ ├── xssb.c │ │ │ ├── xvag.c │ │ │ ├── xvag_streamfile.h │ │ │ ├── xwav.c │ │ │ ├── xwb.c │ │ │ ├── xwb_konami.c │ │ │ ├── xwb_xsb.h │ │ │ ├── xwc.c │ │ │ ├── xwma.c │ │ │ ├── xwma_konami.c │ │ │ ├── xwma_konami_streamfile.h │ │ │ ├── xwv_valve.c │ │ │ ├── ydsp.c │ │ │ ├── ymf.c │ │ │ ├── zsd.c │ │ │ ├── zsnd.c │ │ │ ├── zsnd_streamfile.h │ │ │ └── zwv.c │ │ ├── streamfile.c │ │ ├── streamfile.h │ │ ├── streamtypes.h │ │ ├── util.c │ │ ├── util.h │ │ ├── util │ │ │ ├── bitstream_lsb.h │ │ │ ├── bitstream_msb.h │ │ │ ├── channel_mappings.h │ │ │ ├── chunks.c │ │ │ ├── chunks.h │ │ │ ├── cipher_blowfish.c │ │ │ ├── cipher_blowfish.h │ │ │ ├── cipher_xxtea.c │ │ │ ├── cipher_xxtea.h │ │ │ ├── companion_files.c │ │ │ ├── companion_files.h │ │ │ ├── cri_keys.c │ │ │ ├── cri_keys.h │ │ │ ├── cri_utf.c │ │ │ ├── cri_utf.h │ │ │ ├── endianness.h │ │ │ ├── io_callback.h │ │ │ ├── io_callback_sf.c │ │ │ ├── io_callback_sf.h │ │ │ ├── layout_utils.c │ │ │ ├── layout_utils.h │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── m2_psb.c │ │ │ ├── m2_psb.h │ │ │ ├── meta_utils.c │ │ │ ├── meta_utils.h │ │ │ ├── miniz.c │ │ │ ├── miniz.h │ │ │ ├── paths.c │ │ │ ├── paths.h │ │ │ ├── reader.c │ │ │ ├── reader_get.h │ │ │ ├── reader_get_nibbles.h │ │ │ ├── reader_put.c │ │ │ ├── reader_put.h │ │ │ ├── reader_sf.h │ │ │ ├── reader_text.h │ │ │ ├── sf_utils.c │ │ │ ├── sf_utils.h │ │ │ ├── text_reader.c │ │ │ ├── text_reader.h │ │ │ ├── vgmstream_limits.h │ │ │ ├── vorbis_codebooks.c │ │ │ ├── vorbis_codebooks.h │ │ │ └── zlib_vgmstream.h │ │ ├── vgmstream.c │ │ ├── vgmstream.h │ │ ├── vgmstream_init.c │ │ ├── vgmstream_init.h │ │ └── vgmstream_types.h │ │ └── tr.lproj │ │ └── InfoPlist.strings └── vio2sf │ ├── vio2sf.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── vio2sf.xcscheme │ └── vio2sf │ ├── en.lproj │ └── InfoPlist.strings │ ├── es.lproj │ └── InfoPlist.strings │ ├── pl.lproj │ └── InfoPlist.strings │ ├── src │ └── vio2sf │ │ └── desmume │ │ ├── ARM9.h │ │ ├── COPYING │ │ ├── FIFO.c │ │ ├── FIFO.h │ │ ├── GPU.c │ │ ├── GPU.h │ │ ├── MMU.c │ │ ├── MMU.h │ │ ├── NDSSystem.c │ │ ├── NDSSystem.h │ │ ├── SPU.cpp │ │ ├── SPU.h │ │ ├── arm_instructions.c │ │ ├── arm_instructions.h │ │ ├── armcpu.c │ │ ├── armcpu.h │ │ ├── barray.c │ │ ├── barray.h │ │ ├── bios.c │ │ ├── bios.h │ │ ├── bits.h │ │ ├── config.h │ │ ├── cp15.c │ │ ├── cp15.h │ │ ├── debug.h │ │ ├── dscard.h │ │ ├── instruction_tabdef.inc │ │ ├── isqrt.c │ │ ├── isqrt.h │ │ ├── matrix.c │ │ ├── matrix.h │ │ ├── mc.c │ │ ├── mc.h │ │ ├── mem.h │ │ ├── registers.h │ │ ├── resampler.c │ │ ├── resampler.h │ │ ├── spu_exports.h │ │ ├── state.c │ │ ├── state.h │ │ ├── thumb_instructions.c │ │ ├── thumb_instructions.h │ │ ├── thumb_tabdef.inc │ │ └── types.h │ ├── tr.lproj │ └── InfoPlist.strings │ └── vio2sf-Info.plist ├── GoogleService-Info.plist ├── Huh.icon ├── Assets │ ├── Cog 2.svg │ ├── Ellipse 2.svg │ └── HuhGlyph.svg └── icon.json ├── Icons ├── aiff.icns ├── ape.icns ├── cue.icns ├── filetype.icns ├── flac.icns ├── icon_main.icns ├── it.icns ├── m3u.icns ├── m4a.icns ├── mp3.icns ├── mpc.icns ├── ogg.icns ├── pls.icns ├── s3m.icns ├── shn.icns ├── song.icns ├── vg.icns ├── wav.icns ├── wv.icns └── xm.icns ├── Info.plist.template ├── InfoInspector ├── InfoWindowController.h ├── InfoWindowController.m ├── MissingAlbumArtTransformer.h └── MissingAlbumArtTransformer.m ├── InfoPlist.xcstrings ├── KnownIssues ├── Localizable.xcstrings ├── LyricsWindow ├── LyricsWindowController.h └── LyricsWindowController.m ├── Pause.icon ├── Assets │ ├── Cog 2.svg │ ├── Ellipse 2.svg │ └── PauseGlyph.svg └── icon.json ├── Play.icon ├── Assets │ ├── Cog 2.svg │ ├── Ellipse 2.svg │ └── PlayGlyph.svg └── icon.json ├── Playlist ├── DNDArrayController.h ├── DNDArrayController.m ├── PlaylistController.h ├── PlaylistController.m ├── PlaylistEntry.h ├── PlaylistEntry.m ├── PlaylistHeaderView.h ├── PlaylistHeaderView.m ├── PlaylistLoader.h ├── PlaylistLoader.m ├── PlaylistView.h ├── PlaylistView.m ├── Shuffle.h ├── Shuffle.m ├── StatusImageTransformer.h ├── StatusImageTransformer.m ├── ToggleQueueTitleTransformer.h ├── ToggleQueueTitleTransformer.m ├── XmlContainer.h └── XmlContainer.m ├── Plugins ├── APL │ ├── APL.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── APL Plugin.xcscheme │ ├── APLDecoder.h │ ├── APLDecoder.m │ ├── APLFile.h │ ├── APLFile.m │ ├── APL_Prefix.pch │ └── Info.plist ├── AdPlug │ ├── AdPlug.xcodeproj │ │ └── project.pbxproj │ └── AdPlug │ │ ├── AdPlugContainer.h │ │ ├── AdPlugContainer.mm │ │ ├── AdPlugDecoder.h │ │ ├── AdPlugDecoder.mm │ │ ├── AdPlugMetadataReader.h │ │ ├── AdPlugMetadataReader.mm │ │ ├── Info.plist │ │ ├── fileprovider.h │ │ └── fileprovider.mm ├── ArchiveSource │ ├── ArchiveSource.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ArchiveSource.xcscheme │ └── ArchiveSource │ │ ├── ArchiveContainer.h │ │ ├── ArchiveContainer.m │ │ ├── ArchiveSource-Info.plist │ │ ├── ArchiveSource-Prefix.pch │ │ ├── ArchiveSource.h │ │ ├── ArchiveSource.m │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── BASSMODS │ ├── BASSMODS.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BASSMODS.xcscheme │ └── BASSMODS │ │ ├── BASSDecoder.h │ │ ├── BASSDecoder.mm │ │ ├── BASSMODS-Info.plist │ │ ├── BASSMODS-Prefix.pch │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── es.lproj │ │ └── InfoPlist.strings ├── CoreAudio │ ├── CoreAudio.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── CoreAudio Plugin.xcscheme │ ├── CoreAudioDecoder.h │ ├── CoreAudioDecoder.m │ ├── CoreAudio_Prefix.pch │ └── Info.plist ├── CueSheet │ ├── CueSheet.h │ ├── CueSheet.m │ ├── CueSheet.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── CueSheet.xcscheme │ ├── CueSheetContainer.h │ ├── CueSheetContainer.m │ ├── CueSheetDecoder.h │ ├── CueSheetDecoder.m │ ├── CueSheetMetadataReader.h │ ├── CueSheetMetadataReader.m │ ├── CueSheetTrack.h │ ├── CueSheetTrack.m │ ├── CueSheet_Prefix.pch │ ├── Info.plist │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── pl.lproj │ │ └── InfoPlist.strings │ └── tr.lproj │ │ └── InfoPlist.strings ├── Dumb │ ├── Dumb.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Dumb.xcscheme │ ├── DumbContainer.h │ ├── DumbContainer.m │ ├── DumbDecoder.h │ ├── DumbDecoder.m │ ├── DumbMetadataReader.h │ ├── DumbMetadataReader.m │ ├── Dumb_Prefix.pch │ ├── Info.plist │ ├── archive │ │ ├── j2b │ │ │ ├── j2b.c │ │ │ └── j2b.h │ │ ├── mo3 │ │ │ ├── mo3.c │ │ │ └── mo3.h │ │ └── umx │ │ │ ├── umr.h │ │ │ ├── umx.h │ │ │ ├── umx.mm │ │ │ ├── unrealfmt.cpp │ │ │ ├── unrealfmtdata.cpp │ │ │ └── urf.h │ ├── en.lproj │ │ └── InfoPlist.strings │ └── es.lproj │ │ └── InfoPlist.strings ├── FFMPEG │ ├── FFMPEG.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FFMPEG Plugin.xcscheme │ ├── FFMPEGContainer.h │ ├── FFMPEGContainer.m │ ├── FFMPEGDecoder.h │ ├── FFMPEGDecoder.m │ └── Info.plist ├── FileSource │ ├── FileSource.h │ ├── FileSource.m │ ├── FileSource.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FileSource Plugin.xcscheme │ ├── FileSource_Prefix.pch │ └── Info.plist ├── Flac │ ├── Flac.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Flac Plugin.xcscheme │ ├── FlacDecoder.h │ ├── FlacDecoder.m │ ├── Flac_Prefix.pch │ ├── Info.plist │ └── cuesheet.m ├── GME │ ├── GME.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── GME Plugin.xcscheme │ ├── GME_Prefix.pch │ ├── GameContainer.h │ ├── GameContainer.m │ ├── GameDecoder.h │ ├── GameDecoder.m │ ├── GameMetadataReader.h │ ├── GameMetadataReader.m │ ├── GamePropertiesReader.h │ ├── GamePropertiesReader.m │ ├── Info.plist │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── pl.lproj │ │ └── InfoPlist.strings │ └── tr.lproj │ │ └── InfoPlist.strings ├── HTTPSource │ ├── HTTPSource.h │ ├── HTTPSource.m │ ├── HTTPSource.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── HTTPSource Plugin.xcscheme │ ├── HTTPSource_Prefix.pch │ └── Info.plist ├── HighlyComplete │ ├── HighlyComplete.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── HighlyComplete.xcscheme │ └── HighlyComplete │ │ ├── HCDecoder.h │ │ ├── HCDecoder.mm │ │ ├── HighlyComplete-Info.plist │ │ ├── HighlyComplete-Prefix.pch │ │ ├── circular_buffer.h │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── hebios.bin │ │ ├── hebios.h │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── Hively │ ├── Hively.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Hively.xcscheme │ └── Hively │ │ ├── HVLContainer.h │ │ ├── HVLContainer.m │ │ ├── HVLDecoder.h │ │ ├── HVLDecoder.m │ │ ├── HVLMetadataReader.h │ │ ├── HVLMetadataReader.m │ │ ├── Hively-Info.plist │ │ ├── Hively-Prefix.pch │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── M3u │ ├── Info.plist │ ├── M3u.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── M3u.xcscheme │ ├── M3uContainer.h │ ├── M3uContainer.m │ ├── M3u_Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── pl.lproj │ │ └── InfoPlist.strings │ └── tr.lproj │ │ └── InfoPlist.strings ├── MIDI │ ├── MIDI.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── MIDI.xcscheme │ └── MIDI │ │ ├── AUPlayer.h │ │ ├── AUPlayer.mm │ │ ├── AUPlayerView.h │ │ ├── AUPlayerView.mm │ │ ├── BMPlayer.cpp │ │ ├── BMPlayer.h │ │ ├── MIDI-Info.plist │ │ ├── MIDI-Prefix.pch │ │ ├── MIDIContainer.h │ │ ├── MIDIContainer.mm │ │ ├── MIDIDecoder.h │ │ ├── MIDIDecoder.mm │ │ ├── MIDIMetadataReader.h │ │ ├── MIDIMetadataReader.mm │ │ ├── MIDIPlayer.cpp │ │ ├── MIDIPlayer.h │ │ ├── MSPlayer.cpp │ │ ├── MSPlayer.h │ │ ├── MT32Player.cpp │ │ ├── MT32Player.h │ │ ├── SCCore.cpp │ │ ├── SCCore.h │ │ ├── SCPlayer.h │ │ ├── SCPlayer.mm │ │ ├── SFPlayer.cpp │ │ ├── SFPlayer.h │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── fmopl3lib │ │ ├── opl3.cpp │ │ ├── opl3.h │ │ ├── opl3class.cpp │ │ └── opl3class.h │ │ ├── interface.h │ │ ├── kq6mtgm.h │ │ ├── mtgm.h │ │ ├── pl.lproj │ │ └── InfoPlist.strings │ │ ├── resampler.c │ │ ├── resampler.h │ │ ├── synthlib_doom │ │ ├── i_oplmusic.cpp │ │ ├── i_oplmusic.h │ │ └── inst │ │ │ ├── dmx_dmx.h │ │ │ ├── dmx_doom1.h │ │ │ ├── dmx_doom2.h │ │ │ ├── dmx_raptor.h │ │ │ ├── dmx_strife.h │ │ │ └── dmxopl.h │ │ ├── synthlib_opl3w │ │ ├── gmtimbre.h │ │ ├── opl3midi.cpp │ │ ├── opl3midi.h │ │ └── opl3type.h │ │ └── tr.lproj │ │ └── InfoPlist.strings ├── Musepack │ ├── Info.plist │ ├── Musepack.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Musepack Plugin.xcscheme │ ├── MusepackDecoder.h │ ├── MusepackDecoder.m │ └── Musepack_Prefix.pch ├── OpenMPT │ ├── OpenMPT.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── OpenMPT.xcscheme │ └── OpenMPT │ │ ├── Info.plist │ │ ├── OMPTContainer.h │ │ ├── OMPTContainer.mm │ │ ├── OMPTDecoder.h │ │ ├── OMPTDecoder.mm │ │ ├── OMPTMetadataReader.h │ │ └── OMPTMetadataReader.mm ├── Opus │ ├── Opus │ │ ├── OpusDecoder.h │ │ ├── OpusDecoder.m │ │ ├── OpusPlugin-Info.plist │ │ ├── OpusPlugin-Prefix.pch │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ └── tr.lproj │ │ │ └── InfoPlist.strings │ └── OpusPlugin.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ └── Opus.xcscheme ├── Organya │ ├── Organya.xcodeproj │ │ └── project.pbxproj │ ├── OrganyaDecoder.h │ ├── OrganyaDecoder.mm │ ├── fx96.pxt │ ├── fx97.pxt │ ├── fx98.pxt │ ├── fx99.pxt │ ├── fx9a.pxt │ ├── fx9b.pxt │ └── wavetable.dat ├── Pls │ ├── Info.plist │ ├── Pls.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Pls.xcscheme │ ├── PlsContainer.h │ ├── PlsContainer.m │ ├── Pls_Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── pl.lproj │ │ └── InfoPlist.strings │ └── tr.lproj │ │ └── InfoPlist.strings ├── Quicktime │ ├── Info.plist │ ├── Quicktime.xcodeproj │ │ └── project.pbxproj │ ├── QuicktimeDecoder.h │ ├── QuicktimeDecoder.m │ └── Quicktime_Prefix.pch ├── Shorten │ ├── Info.plist │ ├── Shorten.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Shorten Plugin.xcscheme │ ├── ShortenDecoder.h │ ├── ShortenDecoder.mm │ └── Shorten_Prefix.pch ├── SilenceDecoder │ ├── SilenceDecoder.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SilenceDecoder.xcscheme │ └── SilenceDecoder │ │ ├── Info.plist │ │ ├── SilenceDecoder.h │ │ ├── SilenceDecoder.m │ │ ├── SilenceSource.h │ │ └── SilenceSource.m ├── Syntrax │ ├── Syntrax.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Syntrax.xcscheme │ └── Syntrax │ │ ├── Info.plist │ │ ├── jxsContainer.h │ │ ├── jxsContainer.m │ │ ├── jxsDecoder.h │ │ ├── jxsDecoder.m │ │ ├── jxsMetadataReader.h │ │ └── jxsMetadataReader.m ├── TagLib │ ├── Info.plist │ ├── TagLib.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── TagLib Plugin.xcscheme │ ├── TagLibID3v2Reader.h │ ├── TagLibID3v2Reader.mm │ ├── TagLibMetadataReader.h │ ├── TagLibMetadataReader.m │ ├── TagLibMetadataWriter.h │ ├── TagLibMetadataWriter.m │ └── TagLib_Prefix.pch ├── Vorbis │ ├── Info.plist │ ├── VorbisDecoder.h │ ├── VorbisDecoder.m │ ├── VorbisPlugin.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Vorbis Plugin.xcscheme │ ├── VorbisPlugin_Prefix.pch │ └── vorbis-tools │ │ ├── include │ │ ├── base64.h │ │ └── picture.h │ │ └── share │ │ ├── base64.c │ │ └── picture.c ├── WavPack │ ├── Info.plist │ ├── WavPack.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── WavPack Plugin.xcscheme │ ├── WavPackDecoder.h │ ├── WavPackDecoder.m │ └── WavPack_Prefix.pch ├── libvgmPlayer │ ├── Info.plist │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── libvgmContainer.h │ ├── libvgmContainer.mm │ ├── libvgmDecoder.h │ ├── libvgmDecoder.mm │ ├── libvgmMetadataReader.h │ ├── libvgmMetadataReader.mm │ ├── libvgmPlayer.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── libvgmPlayer Plugin.xcscheme │ ├── libvgmPlayer_Prefix.pch │ ├── libvgmPropertiesReader.h │ ├── libvgmPropertiesReader.mm │ ├── pl.lproj │ │ └── InfoPlist.strings │ ├── tr.lproj │ │ └── InfoPlist.strings │ └── yrw801.h ├── minimp3 │ ├── MP3Decoder.h │ ├── MP3Decoder.m │ ├── ThirdParty │ │ ├── CVbriHeader.c │ │ ├── CVbriHeader.h │ │ ├── minimp3.h │ │ └── minimp3_ex.h │ └── minimp3.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ └── minimp3.xcscheme ├── modplay │ ├── modplay.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── modplay.xcscheme │ └── modplay │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── modDecoder.h │ │ ├── modDecoder.m │ │ ├── modplay-Info.plist │ │ └── modplay-Prefix.pch ├── playptmod │ ├── playptmod.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── playptmod.xcscheme │ └── playptmod │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ └── InfoPlist.strings │ │ ├── playptmod-Info.plist │ │ ├── playptmod-Prefix.pch │ │ ├── ptmodDecoder.h │ │ └── ptmodDecoder.m ├── sidplay │ ├── SidContainer.h │ ├── SidContainer.mm │ ├── SidDecoder.h │ ├── SidDecoder.mm │ ├── SidMetadataReader.h │ ├── SidMetadataReader.mm │ ├── roms.cpp │ ├── roms.hpp │ ├── sidplay.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── sidplay.xcscheme │ └── sidplay │ │ └── Info.plist └── vgmstream │ ├── vgmstream.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── vgmstream.xcscheme │ └── vgmstream │ ├── VGMContainer.h │ ├── VGMContainer.m │ ├── VGMDecoder.h │ ├── VGMDecoder.m │ ├── VGMInterface.h │ ├── VGMInterface.m │ ├── VGMMetadataReader.h │ ├── VGMMetadataReader.m │ ├── VGMPropertiesReader.h │ ├── VGMPropertiesReader.m │ ├── en.lproj │ └── InfoPlist.strings │ ├── es.lproj │ └── InfoPlist.strings │ ├── pl.lproj │ └── InfoPlist.strings │ ├── tr.lproj │ └── InfoPlist.strings │ ├── vgmstream-Info.plist │ └── vgmstream-Prefix.pch ├── Preferences ├── PreferencePanePlugin.h ├── PreferencePluginController.h ├── PreferencePluginController.m ├── Preferences │ ├── AUPlayerView.h │ ├── AUPlayerView.mm │ ├── AppearancePane.h │ ├── AppearancePane.m │ ├── Base.lproj │ │ ├── PathSuggester.xib │ │ └── Preferences.xib │ ├── ColorToValueTransformer.h │ ├── ColorToValueTransformer.m │ ├── GeneralPane.h │ ├── GeneralPane.m │ ├── GeneralPreferencePane.h │ ├── GeneralPreferencePane.m │ ├── GeneralPreferencesPlugin.h │ ├── GeneralPreferencesPlugin.m │ ├── HotKeyPane.h │ ├── HotKeyPane.m │ ├── Icons │ │ ├── appearance.png │ │ ├── appearance@2x.png │ │ ├── file_tree.png │ │ ├── general.png │ │ ├── general@2x.png │ │ ├── growl.png │ │ ├── growl@2x.png │ │ ├── hot_keys.png │ │ ├── midi.png │ │ ├── midi@2x.png │ │ ├── output.png │ │ ├── playlist.png │ │ ├── playlist@2x.png │ │ ├── rubberband.pdf │ │ ├── updates.png │ │ └── updates@2x.png │ ├── Info.plist │ ├── InfoPlist.xcstrings │ ├── Localizable.xcstrings │ ├── MIDIFlavorBehaviorArrayController.h │ ├── MIDIFlavorBehaviorArrayController.m │ ├── MIDIPane.h │ ├── MIDIPane.mm │ ├── MIDIPluginBehaviorArrayController.h │ ├── MIDIPluginBehaviorArrayController.m │ ├── MIDIPluginFlavorTransformer.h │ ├── MIDIPluginFlavorTransformer.m │ ├── OutputPane.h │ ├── OutputPane.m │ ├── OutputsArrayController.h │ ├── OutputsArrayController.m │ ├── PathSuggester.h │ ├── PathSuggester.m │ ├── PathToFileTransformer.h │ ├── PathToFileTransformer.m │ ├── PlaylistBehaviorArrayController.h │ ├── PlaylistBehaviorArrayController.m │ ├── Preferences.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Preferences.xcscheme │ ├── Preferences_Prefix.pch │ ├── ResamplerBehaviorArrayController.h │ ├── ResamplerBehaviorArrayController.m │ ├── RubberbandEngineTransformer.h │ ├── RubberbandEngineTransformer.m │ ├── RubberbandPane.h │ ├── RubberbandPane.m │ ├── SS_PreferencePaneProtocol.h │ ├── SandboxPathBehaviorController.h │ ├── SandboxPathBehaviorController.m │ ├── TimeIntervalToStringTransformer.h │ ├── TimeIntervalToStringTransformer.m │ ├── VolumeBehaviorArrayController.h │ ├── VolumeBehaviorArrayController.m │ ├── mul.lproj │ │ ├── PathSuggester.xcstrings │ │ └── Preferences.xcstrings │ ├── pl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Preferences.strings │ ├── ru.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Preferences.strings │ └── tr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Preferences.strings ├── PreferencesController.h ├── PreferencesController.m ├── PreferencesWindow.h ├── PreferencesWindow.m └── Shortcuts.h ├── README.md ├── SADIE_D02-96000.mhr ├── Scenes.scnassets └── Spectrum.scn ├── Scripts ├── build.sh ├── cors-policy.xml ├── extract_libraries.sh ├── ffmpeg-build-arm64.sh ├── ffmpeg-build-universal.sh ├── ffmpeg-build-x86_64.sh ├── genversion.sh ├── launchd_nightly.plist ├── sparkleToJSON └── update_feed.rb ├── Spotlight ├── NSArray+CogSort.h ├── NSArray+CogSort.m ├── NSComparisonPredicate+CogPredicate.h ├── NSComparisonPredicate+CogPredicate.m ├── NSNumber+CogSort.h ├── NSNumber+CogSort.m ├── SpotlightPlaylistController.h ├── SpotlightPlaylistController.m ├── SpotlightPlaylistEntry.h ├── SpotlightPlaylistEntry.m ├── SpotlightTransformers.h ├── SpotlightTransformers.m ├── SpotlightWindowController.h └── SpotlightWindowController.m ├── Stop.icon ├── Assets │ ├── Cog 2.svg │ ├── Ellipse 2.svg │ └── StopGlyph.svg └── icon.json ├── TODO ├── TagEditor ├── TagEditorController.h └── TagEditorController.m ├── ThirdParty ├── BASS │ ├── README.md │ ├── bass.h │ ├── bassmidi.h │ ├── sflist.c │ ├── sflist.h │ └── sflist_rewrite.c ├── Frameworks │ ├── tag.framework │ │ ├── Headers │ │ ├── Resources │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── aifffile.h │ │ │ │ │ ├── aiffproperties.h │ │ │ │ │ ├── apefile.h │ │ │ │ │ ├── apefooter.h │ │ │ │ │ ├── apeitem.h │ │ │ │ │ ├── apeproperties.h │ │ │ │ │ ├── apetag.h │ │ │ │ │ ├── asfattribute.h │ │ │ │ │ ├── asffile.h │ │ │ │ │ ├── asfpicture.h │ │ │ │ │ ├── asfproperties.h │ │ │ │ │ ├── asftag.h │ │ │ │ │ ├── attachedpictureframe.h │ │ │ │ │ ├── audioproperties.h │ │ │ │ │ ├── chapterframe.h │ │ │ │ │ ├── commentsframe.h │ │ │ │ │ ├── dsdiffdiintag.h │ │ │ │ │ ├── dsdifffile.h │ │ │ │ │ ├── dsdiffproperties.h │ │ │ │ │ ├── dsffile.h │ │ │ │ │ ├── dsfproperties.h │ │ │ │ │ ├── eventtimingcodesframe.h │ │ │ │ │ ├── fileref.h │ │ │ │ │ ├── flacfile.h │ │ │ │ │ ├── flacmetadatablock.h │ │ │ │ │ ├── flacpicture.h │ │ │ │ │ ├── flacproperties.h │ │ │ │ │ ├── generalencapsulatedobjectframe.h │ │ │ │ │ ├── id3v1genres.h │ │ │ │ │ ├── id3v1tag.h │ │ │ │ │ ├── id3v2.h │ │ │ │ │ ├── id3v2extendedheader.h │ │ │ │ │ ├── id3v2footer.h │ │ │ │ │ ├── id3v2frame.h │ │ │ │ │ ├── id3v2framefactory.h │ │ │ │ │ ├── id3v2header.h │ │ │ │ │ ├── id3v2synchdata.h │ │ │ │ │ ├── id3v2tag.h │ │ │ │ │ ├── infotag.h │ │ │ │ │ ├── itfile.h │ │ │ │ │ ├── itproperties.h │ │ │ │ │ ├── modfile.h │ │ │ │ │ ├── modfilebase.h │ │ │ │ │ ├── modproperties.h │ │ │ │ │ ├── modtag.h │ │ │ │ │ ├── mp4atom.h │ │ │ │ │ ├── mp4coverart.h │ │ │ │ │ ├── mp4file.h │ │ │ │ │ ├── mp4item.h │ │ │ │ │ ├── mp4itemfactory.h │ │ │ │ │ ├── mp4properties.h │ │ │ │ │ ├── mp4tag.h │ │ │ │ │ ├── mpcfile.h │ │ │ │ │ ├── mpcproperties.h │ │ │ │ │ ├── mpegfile.h │ │ │ │ │ ├── mpegheader.h │ │ │ │ │ ├── mpegproperties.h │ │ │ │ │ ├── oggfile.h │ │ │ │ │ ├── oggflacfile.h │ │ │ │ │ ├── oggpage.h │ │ │ │ │ ├── oggpageheader.h │ │ │ │ │ ├── opusfile.h │ │ │ │ │ ├── opusproperties.h │ │ │ │ │ ├── ownershipframe.h │ │ │ │ │ ├── podcastframe.h │ │ │ │ │ ├── popularimeterframe.h │ │ │ │ │ ├── privateframe.h │ │ │ │ │ ├── relativevolumeframe.h │ │ │ │ │ ├── rifffile.h │ │ │ │ │ ├── s3mfile.h │ │ │ │ │ ├── s3mproperties.h │ │ │ │ │ ├── shortenfile.h │ │ │ │ │ ├── shortenproperties.h │ │ │ │ │ ├── shortentag.h │ │ │ │ │ ├── speexfile.h │ │ │ │ │ ├── speexproperties.h │ │ │ │ │ ├── synchronizedlyricsframe.h │ │ │ │ │ ├── tableofcontentsframe.h │ │ │ │ │ ├── tag.h │ │ │ │ │ ├── taglib.h │ │ │ │ │ ├── taglib_config.h │ │ │ │ │ ├── taglib_export.h │ │ │ │ │ ├── tbytevector.h │ │ │ │ │ ├── tbytevectorlist.h │ │ │ │ │ ├── tbytevectorstream.h │ │ │ │ │ ├── tdebuglistener.h │ │ │ │ │ ├── textidentificationframe.h │ │ │ │ │ ├── tfile.h │ │ │ │ │ ├── tfilestream.h │ │ │ │ │ ├── tiostream.h │ │ │ │ │ ├── tlist.h │ │ │ │ │ ├── tlist.tcc │ │ │ │ │ ├── tmap.h │ │ │ │ │ ├── tmap.tcc │ │ │ │ │ ├── tpicturetype.h │ │ │ │ │ ├── tpropertymap.h │ │ │ │ │ ├── trueaudiofile.h │ │ │ │ │ ├── trueaudioproperties.h │ │ │ │ │ ├── tstring.h │ │ │ │ │ ├── tstringlist.h │ │ │ │ │ ├── tvariant.h │ │ │ │ │ ├── tversionnumber.h │ │ │ │ │ ├── uniquefileidentifierframe.h │ │ │ │ │ ├── unknownframe.h │ │ │ │ │ ├── unsynchronizedlyricsframe.h │ │ │ │ │ ├── urllinkframe.h │ │ │ │ │ ├── vorbisfile.h │ │ │ │ │ ├── vorbisproperties.h │ │ │ │ │ ├── wavfile.h │ │ │ │ │ ├── wavpackfile.h │ │ │ │ │ ├── wavpackproperties.h │ │ │ │ │ ├── wavproperties.h │ │ │ │ │ ├── xingheader.h │ │ │ │ │ ├── xiphcomment.h │ │ │ │ │ ├── xmfile.h │ │ │ │ │ └── xmproperties.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── tag │ │ │ └── Current │ │ └── tag │ ├── taglib.patch │ └── taglib.txt ├── ImageTextCell │ ├── ImageTextCell.h │ └── ImageTextCell.m ├── OpenURLPanel │ ├── OpenURLPanel.h │ └── OpenURLPanel.m ├── WavPack │ └── include │ │ └── wavpack.h ├── avif │ ├── README.md │ ├── include │ │ └── avif │ │ │ └── avif.h │ └── source │ │ ├── AVIFDecoder.h │ │ └── AVIFDecoder.m ├── fdk-aac │ ├── README.md │ ├── include │ │ └── fdk-aac │ │ │ ├── FDK_audio.h │ │ │ ├── aacdecoder_lib.h │ │ │ ├── aacenc_lib.h │ │ │ ├── genericStds.h │ │ │ ├── machine_type.h │ │ │ └── syslib_channelMapDescr.h │ └── patches │ │ └── fdk_fixedpoint.patch ├── ffmpeg │ ├── include │ │ ├── libavcodec │ │ │ ├── ac3_parser.h │ │ │ ├── adts_parser.h │ │ │ ├── avcodec.h │ │ │ ├── avdct.h │ │ │ ├── avfft.h │ │ │ ├── bsf.h │ │ │ ├── codec.h │ │ │ ├── codec_desc.h │ │ │ ├── codec_id.h │ │ │ ├── codec_par.h │ │ │ ├── d3d11va.h │ │ │ ├── defs.h │ │ │ ├── dirac.h │ │ │ ├── dv_profile.h │ │ │ ├── dxva2.h │ │ │ ├── jni.h │ │ │ ├── mediacodec.h │ │ │ ├── packet.h │ │ │ ├── qsv.h │ │ │ ├── smpte_436m.h │ │ │ ├── vdpau.h │ │ │ ├── version.h │ │ │ ├── version_major.h │ │ │ ├── videotoolbox.h │ │ │ ├── vorbis_parser.h │ │ │ └── xvmc.h │ │ ├── libavformat │ │ │ ├── avformat.h │ │ │ ├── avio.h │ │ │ ├── version.h │ │ │ └── version_major.h │ │ ├── libavutil │ │ │ ├── adler32.h │ │ │ ├── aes.h │ │ │ ├── aes_ctr.h │ │ │ ├── ambient_viewing_environment.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── base64.h │ │ │ ├── blowfish.h │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast5.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── container_fifo.h │ │ │ ├── cpu.h │ │ │ ├── crc.h │ │ │ ├── csp.h │ │ │ ├── des.h │ │ │ ├── detection_bbox.h │ │ │ ├── dict.h │ │ │ ├── display.h │ │ │ ├── dovi_meta.h │ │ │ ├── downmix_info.h │ │ │ ├── encryption_info.h │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── executor.h │ │ │ ├── ffversion.h │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── film_grain_params.h │ │ │ ├── frame.h │ │ │ ├── hash.h │ │ │ ├── hdr_dynamic_metadata.h │ │ │ ├── hdr_dynamic_vivid_metadata.h │ │ │ ├── hmac.h │ │ │ ├── hwcontext.h │ │ │ ├── hwcontext_amf.h │ │ │ ├── hwcontext_cuda.h │ │ │ ├── hwcontext_d3d11va.h │ │ │ ├── hwcontext_d3d12va.h │ │ │ ├── hwcontext_drm.h │ │ │ ├── hwcontext_dxva2.h │ │ │ ├── hwcontext_mediacodec.h │ │ │ ├── hwcontext_oh.h │ │ │ ├── hwcontext_opencl.h │ │ │ ├── hwcontext_qsv.h │ │ │ ├── hwcontext_vaapi.h │ │ │ ├── hwcontext_vdpau.h │ │ │ ├── hwcontext_videotoolbox.h │ │ │ ├── hwcontext_vulkan.h │ │ │ ├── iamf.h │ │ │ ├── imgutils.h │ │ │ ├── intfloat.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.h │ │ │ ├── log.h │ │ │ ├── lzo.h │ │ │ ├── macros.h │ │ │ ├── mastering_display_metadata.h │ │ │ ├── mathematics.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── motion_vector.h │ │ │ ├── murmur3.h │ │ │ ├── opt.h │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.h │ │ │ ├── pixelutils.h │ │ │ ├── pixfmt.h │ │ │ ├── random_seed.h │ │ │ ├── rational.h │ │ │ ├── rc4.h │ │ │ ├── refstruct.h │ │ │ ├── replaygain.h │ │ │ ├── ripemd.h │ │ │ ├── samplefmt.h │ │ │ ├── sha.h │ │ │ ├── sha512.h │ │ │ ├── spherical.h │ │ │ ├── stereo3d.h │ │ │ ├── tdrdi.h │ │ │ ├── tea.h │ │ │ ├── threadmessage.h │ │ │ ├── time.h │ │ │ ├── timecode.h │ │ │ ├── timestamp.h │ │ │ ├── tree.h │ │ │ ├── twofish.h │ │ │ ├── tx.h │ │ │ ├── uuid.h │ │ │ ├── version.h │ │ │ ├── video_enc_params.h │ │ │ ├── video_hint.h │ │ │ └── xtea.h │ │ └── libswresample │ │ │ ├── swresample.h │ │ │ ├── version.h │ │ │ └── version_major.h │ └── patches │ │ ├── 0001-avcodec-audiotoolboxdec-Properly-fill-out_format.patch │ │ ├── 0002-avcodec-audiotoolboxdec-Decode-appropriate-formats-to-.patch │ │ ├── 0003-avcodec-libfdk_aac-support-kode54-fixed-point.patch │ │ ├── 0004-avformat-id3v1-Update-genre-list.patch │ │ ├── 0005-avformat-parse-iTunes-gapless-information.patch │ │ └── 0006-hls-live-id3-metadata.patch ├── flac │ ├── README.md │ └── include │ │ └── FLAC │ │ ├── FLAC_assert.h │ │ ├── all.h │ │ ├── callback.h │ │ ├── export.h │ │ ├── format.h │ │ ├── metadata.h │ │ ├── ordinals.h │ │ ├── stream_decoder.h │ │ └── stream_encoder.h ├── json │ ├── json-builder.c │ ├── json-builder.h │ ├── json.c │ └── json.h ├── libid3tag │ ├── README.md │ └── include │ │ └── id3tag.h ├── libraries-debug-overlay.tar.xz ├── libraries.tar.xz ├── libvgm │ ├── README.md │ └── include │ │ └── libvgm │ │ ├── _stdbool.h │ │ ├── common_def.h │ │ ├── emu │ │ ├── EmuCores.h │ │ ├── EmuHelper.h │ │ ├── EmuStructs.h │ │ ├── RatioCntr.h │ │ ├── Resampler.h │ │ ├── SoundDevs.h │ │ ├── SoundEmu.h │ │ ├── dac_control.h │ │ ├── logging.h │ │ ├── panning.h │ │ └── snddef.h │ │ ├── player │ │ ├── dblk_compr.h │ │ ├── droplayer.hpp │ │ ├── gymplayer.hpp │ │ ├── helper.h │ │ ├── playera.hpp │ │ ├── playerbase.hpp │ │ ├── s98player.hpp │ │ └── vgmplayer.hpp │ │ ├── stdtype.h │ │ └── utils │ │ ├── DataLoader.h │ │ ├── FileLoader.h │ │ ├── MemoryLoader.h │ │ ├── OSMutex.h │ │ ├── OSSignal.h │ │ ├── OSThread.h │ │ └── StrUtils.h ├── meson-arm64.txt ├── meson-x86_64.txt ├── mpg123 │ ├── README.md │ └── include │ │ └── mpg123 │ │ ├── fmt123.h │ │ ├── mpg123.h │ │ ├── out123.h │ │ └── syn123.h ├── ogg │ ├── README.md │ └── include │ │ └── ogg │ │ ├── config_types.h │ │ ├── ogg.h │ │ └── os_types.h ├── opus │ ├── README.md │ └── include │ │ ├── opus.h │ │ ├── opus_custom.h │ │ ├── opus_defines.h │ │ ├── opus_multistream.h │ │ ├── opus_projection.h │ │ └── opus_types.h ├── opusfile │ ├── README.md │ └── include │ │ └── opusfile.h ├── rubberband │ ├── README.md │ └── include │ │ └── rubberband │ │ ├── RubberBandLiveShifter.h │ │ ├── RubberBandStretcher.h │ │ └── rubberband-c.h ├── soxr │ ├── README.md │ └── include │ │ └── soxr.h ├── speex │ └── include │ │ └── speex │ │ ├── speex.h │ │ ├── speex_bits.h │ │ ├── speex_callbacks.h │ │ ├── speex_config_types.h │ │ ├── speex_header.h │ │ ├── speex_stereo.h │ │ └── speex_types.h └── vorbis │ ├── README.md │ └── include │ └── vorbis │ ├── codec.h │ └── vorbisfile.h ├── Transformers ├── FontSizetoLineHeightTransformer.h ├── FontSizetoLineHeightTransformer.m ├── MaybeSecureValueDataTransformer.h ├── MaybeSecureValueDataTransformer.m ├── NumberHertzToStringTransformer.swift ├── StringToURLTransformer.h ├── StringToURLTransformer.m ├── TotalTimeTransformer.h └── TotalTimeTransformer.m ├── Utils ├── Logging.h ├── NSArray+ShuffleUtils.h ├── NSArray+ShuffleUtils.m ├── NSData+MD5.h ├── NSData+MD5.m ├── NSDictionary+Merge.h ├── NSDictionary+Merge.m ├── NSDictionary+Optional.h ├── NSDictionary+Optional.m ├── NSFileHandle+CreateFile.h ├── NSFileHandle+CreateFile.m ├── NSString+CogSort.h ├── NSString+CogSort.m ├── NSString+FinderCompare.h ├── NSString+FinderCompare.m ├── NSView+Visibility.h ├── NSView+Visibility.m ├── RedundantPlaylistDataStore.h ├── RedundantPlaylistDataStore.m ├── SHA256Digest.h ├── SHA256Digest.m ├── SQLiteStore.h ├── SQLiteStore.m ├── SandboxBroker.h ├── SandboxBroker.m ├── SideViewController.h ├── SideViewController.m ├── ToolTipTextField.h ├── ToolTipTextField.m ├── TrackingCell.h ├── TrackingCell.m ├── TrackingSlider.h └── TrackingSlider.m ├── Visualization ├── SCView.h ├── SCView.m ├── SCVisWindowController.h ├── SCVisWindowController.m ├── SpectrumItem.h ├── SpectrumItem.m ├── SpectrumViewCG.h ├── SpectrumViewCG.m ├── SpectrumViewSK.h ├── SpectrumViewSK.m ├── SpectrumWindowController.h ├── SpectrumWindowController.m └── ThirdParty │ ├── RetroArch │ ├── Shaders.metal │ └── metal_shader_types.h │ └── deadbeef │ ├── analyzer.c │ └── analyzer.h ├── Window ├── AboutWindowController.swift ├── CogSearchField.h ├── CogSearchField.m ├── DraggableView.swift ├── DualWindow.h ├── DualWindow.m ├── MainWindow.h ├── MainWindow.m ├── MiniModeMenuTitleTransformer.h ├── MiniModeMenuTitleTransformer.m ├── MiniWindow.h ├── MiniWindow.m ├── PitchSlider.h ├── PitchSlider.m ├── PlaybackButtons.h ├── PlaybackButtons.m ├── PositionSlider.h ├── PositionSlider.m ├── PositionSliderToolbarItem.swift ├── RepeatTransformers.h ├── RepeatTransformers.m ├── ShuffleTransformers.h ├── ShuffleTransformers.m ├── SpeedButton.h ├── SpeedButton.m ├── TempoSlider.h ├── TempoSlider.m ├── TimeField.h ├── TimeField.m ├── VolumeButton.h ├── VolumeButton.m ├── VolumeSlider.h └── VolumeSlider.m ├── Xcode-config └── Shared.xcconfig ├── ci_scripts ├── ci_post_clone.sh └── ci_pre_xcodebuild.sh ├── en.lproj └── Credits.html ├── es.lproj └── Credits.html ├── main.m ├── mul.lproj ├── AboutWindowController.xcstrings ├── Equalizer.xcstrings ├── Feedback.xcstrings ├── FileTree.xcstrings ├── InfoInspector.xcstrings ├── LyricsWindow.xcstrings ├── MainMenu.xcstrings ├── OpenURLPanel.xcstrings ├── SCVisWindow.xcstrings ├── SpectrumWindow.xcstrings └── SpotlightPanel.xcstrings ├── patrons.h ├── pl.lproj ├── AboutWindowController.strings ├── Credits.html ├── Equalizer.strings ├── Feedback.strings ├── FileTree.strings ├── InfoInspector.strings ├── InfoPlist.strings ├── Localizable.strings ├── Localizable.stringsdict ├── LyricsWindow.strings ├── MainMenu.strings ├── OpenURLPanel.strings ├── SpectrumWindow.strings └── SpotlightPanel.strings ├── ru.lproj ├── AboutWindowController.strings ├── Credits.html ├── Equalizer.strings ├── Feedback.strings ├── FileTree.strings ├── InfoInspector.strings ├── InfoPlist.strings ├── Localizable.strings ├── Localizable.stringsdict ├── LyricsWindow.strings ├── MainMenu.strings ├── OpenURLPanel.strings ├── SpectrumWindow.strings └── SpotlightPanel.strings ├── sf.play.pdf └── tr.lproj ├── AboutWindowController.strings ├── Credits.html ├── Equalizer.strings ├── Feedback.strings ├── FileTree.strings ├── InfoInspector.strings ├── InfoPlist.strings ├── Localizable.strings ├── Localizable.stringsdict ├── LyricsWindow.strings ├── MainMenu.strings ├── OpenURLPanel.strings ├── SpectrumWindow.strings └── SpotlightPanel.strings /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.clang-format -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/images/HeSuVi-channel-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.github/images/HeSuVi-channel-map.png -------------------------------------------------------------------------------- /.github/images/MainWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.github/images/MainWindow.png -------------------------------------------------------------------------------- /.github/images/MiniWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.github/images/MiniWindow.png -------------------------------------------------------------------------------- /.github/workflows/debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.github/workflows/debug.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.hgtags -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Application/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/AppController.h -------------------------------------------------------------------------------- /Application/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/AppController.m -------------------------------------------------------------------------------- /Application/DockIconController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/DockIconController.h -------------------------------------------------------------------------------- /Application/DockIconController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/DockIconController.m -------------------------------------------------------------------------------- /Application/MediaKeysApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/MediaKeysApplication.h -------------------------------------------------------------------------------- /Application/MediaKeysApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/MediaKeysApplication.m -------------------------------------------------------------------------------- /Application/PlaybackController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/PlaybackController.h -------------------------------------------------------------------------------- /Application/PlaybackController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/PlaybackController.m -------------------------------------------------------------------------------- /Application/PlaybackEventController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/PlaybackEventController.h -------------------------------------------------------------------------------- /Application/PlaybackEventController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/PlaybackEventController.m -------------------------------------------------------------------------------- /Application/ScriptAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/ScriptAdditions.h -------------------------------------------------------------------------------- /Application/ScriptAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Application/ScriptAdditions.m -------------------------------------------------------------------------------- /Audio/AudioContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioContainer.h -------------------------------------------------------------------------------- /Audio/AudioContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioContainer.m -------------------------------------------------------------------------------- /Audio/AudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioDecoder.h -------------------------------------------------------------------------------- /Audio/AudioDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioDecoder.m -------------------------------------------------------------------------------- /Audio/AudioMetadataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioMetadataReader.h -------------------------------------------------------------------------------- /Audio/AudioMetadataReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioMetadataReader.m -------------------------------------------------------------------------------- /Audio/AudioMetadataWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioMetadataWriter.h -------------------------------------------------------------------------------- /Audio/AudioMetadataWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioMetadataWriter.m -------------------------------------------------------------------------------- /Audio/AudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioPlayer.h -------------------------------------------------------------------------------- /Audio/AudioPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioPlayer.m -------------------------------------------------------------------------------- /Audio/AudioPropertiesReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioPropertiesReader.h -------------------------------------------------------------------------------- /Audio/AudioPropertiesReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioPropertiesReader.m -------------------------------------------------------------------------------- /Audio/AudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioSource.h -------------------------------------------------------------------------------- /Audio/AudioSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/AudioSource.m -------------------------------------------------------------------------------- /Audio/Chain/AudioChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/AudioChunk.h -------------------------------------------------------------------------------- /Audio/Chain/AudioChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/AudioChunk.m -------------------------------------------------------------------------------- /Audio/Chain/BufferChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/BufferChain.h -------------------------------------------------------------------------------- /Audio/Chain/BufferChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/BufferChain.m -------------------------------------------------------------------------------- /Audio/Chain/ChunkList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/ChunkList.h -------------------------------------------------------------------------------- /Audio/Chain/ChunkList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/ChunkList.m -------------------------------------------------------------------------------- /Audio/Chain/ConverterNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/ConverterNode.h -------------------------------------------------------------------------------- /Audio/Chain/ConverterNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/ConverterNode.m -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPDownmixNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPDownmixNode.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPDownmixNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPDownmixNode.m -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPEqualizerNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPEqualizerNode.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPEqualizerNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPEqualizerNode.m -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPFSurroundNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPFSurroundNode.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPFSurroundNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPFSurroundNode.m -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPFaderNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPFaderNode.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPFaderNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPFaderNode.m -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPHRTFNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPHRTFNode.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPHRTFNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPHRTFNode.m -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPRubberbandNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPRubberbandNode.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/DSPRubberbandNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/DSPRubberbandNode.m -------------------------------------------------------------------------------- /Audio/Chain/DSP/Downmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/Downmix.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/Downmix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/Downmix.m -------------------------------------------------------------------------------- /Audio/Chain/DSP/FSurroundFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/FSurroundFilter.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/FSurroundFilter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/FSurroundFilter.mm -------------------------------------------------------------------------------- /Audio/Chain/DSP/FadedBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/FadedBuffer.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/FadedBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/FadedBuffer.m -------------------------------------------------------------------------------- /Audio/Chain/DSP/HeadphoneFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/HeadphoneFilter.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/HeadphoneFilter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/HeadphoneFilter.mm -------------------------------------------------------------------------------- /Audio/Chain/DSP/SimpleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/SimpleBuffer.h -------------------------------------------------------------------------------- /Audio/Chain/DSP/SimpleBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSP/SimpleBuffer.m -------------------------------------------------------------------------------- /Audio/Chain/DSPNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSPNode.h -------------------------------------------------------------------------------- /Audio/Chain/DSPNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/DSPNode.m -------------------------------------------------------------------------------- /Audio/Chain/InputNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/InputNode.h -------------------------------------------------------------------------------- /Audio/Chain/InputNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/InputNode.m -------------------------------------------------------------------------------- /Audio/Chain/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/Node.h -------------------------------------------------------------------------------- /Audio/Chain/Node.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/Node.m -------------------------------------------------------------------------------- /Audio/Chain/OutputNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/OutputNode.h -------------------------------------------------------------------------------- /Audio/Chain/OutputNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/OutputNode.m -------------------------------------------------------------------------------- /Audio/Chain/VisualizationNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/VisualizationNode.h -------------------------------------------------------------------------------- /Audio/Chain/VisualizationNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Chain/VisualizationNode.m -------------------------------------------------------------------------------- /Audio/CogAudio-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "ThirdParty/deadbeef/fft.h" 2 | -------------------------------------------------------------------------------- /Audio/CogAudio_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/CogAudio_Prefix.pch -------------------------------------------------------------------------------- /Audio/CogPluginMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/CogPluginMulti.h -------------------------------------------------------------------------------- /Audio/CogPluginMulti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/CogPluginMulti.m -------------------------------------------------------------------------------- /Audio/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Helper.h -------------------------------------------------------------------------------- /Audio/Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Helper.m -------------------------------------------------------------------------------- /Audio/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Info.plist -------------------------------------------------------------------------------- /Audio/Output/OutputAVFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Output/OutputAVFoundation.h -------------------------------------------------------------------------------- /Audio/Output/OutputAVFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Output/OutputAVFoundation.m -------------------------------------------------------------------------------- /Audio/Output/OutputCoreAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Output/OutputCoreAudio.h -------------------------------------------------------------------------------- /Audio/Output/OutputCoreAudio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Output/OutputCoreAudio.m -------------------------------------------------------------------------------- /Audio/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Plugin.h -------------------------------------------------------------------------------- /Audio/PluginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/PluginController.h -------------------------------------------------------------------------------- /Audio/PluginController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/PluginController.mm -------------------------------------------------------------------------------- /Audio/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Status.h -------------------------------------------------------------------------------- /Audio/ThirdParty/deadbeef/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/deadbeef/fft.h -------------------------------------------------------------------------------- /Audio/ThirdParty/deadbeef/fft_pffft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/deadbeef/fft_pffft.c -------------------------------------------------------------------------------- /Audio/ThirdParty/hdcd/hdcd_decode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/hdcd/hdcd_decode2.c -------------------------------------------------------------------------------- /Audio/ThirdParty/hdcd/hdcd_decode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/hdcd/hdcd_decode2.h -------------------------------------------------------------------------------- /Audio/ThirdParty/hrtf/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/hrtf/Endianness.h -------------------------------------------------------------------------------- /Audio/ThirdParty/hrtf/HrtfData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/hrtf/HrtfData.cpp -------------------------------------------------------------------------------- /Audio/ThirdParty/hrtf/HrtfData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/hrtf/HrtfData.h -------------------------------------------------------------------------------- /Audio/ThirdParty/hrtf/HrtfTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/hrtf/HrtfTypes.h -------------------------------------------------------------------------------- /Audio/ThirdParty/hrtf/IHrtfData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/hrtf/IHrtfData.h -------------------------------------------------------------------------------- /Audio/ThirdParty/lvqcl/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/lvqcl/lpc.c -------------------------------------------------------------------------------- /Audio/ThirdParty/lvqcl/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/lvqcl/lpc.h -------------------------------------------------------------------------------- /Audio/ThirdParty/lvqcl/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/lvqcl/util.h -------------------------------------------------------------------------------- /Audio/ThirdParty/rsstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/rsstate.cpp -------------------------------------------------------------------------------- /Audio/ThirdParty/rsstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/rsstate.h -------------------------------------------------------------------------------- /Audio/ThirdParty/rsstate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/ThirdParty/rsstate.hpp -------------------------------------------------------------------------------- /Audio/Utils/BadSampleCleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Utils/BadSampleCleaner.h -------------------------------------------------------------------------------- /Audio/Utils/BadSampleCleaner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Utils/BadSampleCleaner.m -------------------------------------------------------------------------------- /Audio/Utils/CogSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Utils/CogSemaphore.h -------------------------------------------------------------------------------- /Audio/Utils/CogSemaphore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Utils/CogSemaphore.m -------------------------------------------------------------------------------- /Audio/Utils/dsd2float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Utils/dsd2float.h -------------------------------------------------------------------------------- /Audio/Utils/floatlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Audio/Utils/floatlist.c -------------------------------------------------------------------------------- /Base.lproj/AboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/AboutWindowController.xib -------------------------------------------------------------------------------- /Base.lproj/Equalizer.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/Equalizer.xib -------------------------------------------------------------------------------- /Base.lproj/Feedback.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/Feedback.xib -------------------------------------------------------------------------------- /Base.lproj/FileTree.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/FileTree.xib -------------------------------------------------------------------------------- /Base.lproj/InfoInspector.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/InfoInspector.xib -------------------------------------------------------------------------------- /Base.lproj/LyricsWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/LyricsWindow.xib -------------------------------------------------------------------------------- /Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Base.lproj/OpenURLPanel.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/OpenURLPanel.xib -------------------------------------------------------------------------------- /Base.lproj/SCVisWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/SCVisWindow.xib -------------------------------------------------------------------------------- /Base.lproj/SpectrumWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/SpectrumWindow.xib -------------------------------------------------------------------------------- /Base.lproj/SpotlightPanel.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Base.lproj/SpotlightPanel.xib -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMPILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/COMPILE -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/COPYING -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Changelog -------------------------------------------------------------------------------- /Cog-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Cog-Bridging-Header.h -------------------------------------------------------------------------------- /Cog.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Cog.entitlements -------------------------------------------------------------------------------- /Cog.q1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Cog.q1.json -------------------------------------------------------------------------------- /Cog.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Cog.sdef -------------------------------------------------------------------------------- /Cog.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Cog.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CogAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/CogAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /Cog_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Cog_Prefix.pch -------------------------------------------------------------------------------- /DiskImage/dmg-cog.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/DiskImage/dmg-cog.scpt -------------------------------------------------------------------------------- /DiskImage/howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/DiskImage/howto -------------------------------------------------------------------------------- /DiskImage/make-diskimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/DiskImage/make-diskimage.sh -------------------------------------------------------------------------------- /DiskImage/make-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/DiskImage/make-release.sh -------------------------------------------------------------------------------- /DiskImage/pkg-dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/DiskImage/pkg-dmg -------------------------------------------------------------------------------- /DiskImage/template.dmg.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/DiskImage/template.dmg.bz2 -------------------------------------------------------------------------------- /Equalizer/EqualizerWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Equalizer/EqualizerWindowController.h -------------------------------------------------------------------------------- /Equalizer/EqualizerWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Equalizer/EqualizerWindowController.m -------------------------------------------------------------------------------- /Feedback/FeedbackController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Feedback/FeedbackController.h -------------------------------------------------------------------------------- /Feedback/FeedbackController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Feedback/FeedbackController.m -------------------------------------------------------------------------------- /Feedback/FeedbackSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Feedback/FeedbackSocket.h -------------------------------------------------------------------------------- /Feedback/FeedbackSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Feedback/FeedbackSocket.m -------------------------------------------------------------------------------- /FileTree/ContainedNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/ContainedNode.h -------------------------------------------------------------------------------- /FileTree/ContainedNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/ContainedNode.m -------------------------------------------------------------------------------- /FileTree/ContainerNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/ContainerNode.h -------------------------------------------------------------------------------- /FileTree/ContainerNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/ContainerNode.m -------------------------------------------------------------------------------- /FileTree/DirectoryNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/DirectoryNode.h -------------------------------------------------------------------------------- /FileTree/DirectoryNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/DirectoryNode.m -------------------------------------------------------------------------------- /FileTree/FileIconCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileIconCell.h -------------------------------------------------------------------------------- /FileTree/FileIconCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileIconCell.m -------------------------------------------------------------------------------- /FileTree/FileNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileNode.h -------------------------------------------------------------------------------- /FileTree/FileNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileNode.m -------------------------------------------------------------------------------- /FileTree/FileTreeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileTreeController.h -------------------------------------------------------------------------------- /FileTree/FileTreeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileTreeController.m -------------------------------------------------------------------------------- /FileTree/FileTreeDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileTreeDataSource.h -------------------------------------------------------------------------------- /FileTree/FileTreeDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileTreeDataSource.m -------------------------------------------------------------------------------- /FileTree/FileTreeOutlineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileTreeOutlineView.h -------------------------------------------------------------------------------- /FileTree/FileTreeOutlineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileTreeOutlineView.m -------------------------------------------------------------------------------- /FileTree/FileTreeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileTreeViewController.h -------------------------------------------------------------------------------- /FileTree/FileTreeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/FileTreeViewController.m -------------------------------------------------------------------------------- /FileTree/PathNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/PathNode.h -------------------------------------------------------------------------------- /FileTree/PathNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/PathNode.m -------------------------------------------------------------------------------- /FileTree/PathWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/PathWatcher.h -------------------------------------------------------------------------------- /FileTree/PathWatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/PathWatcher.m -------------------------------------------------------------------------------- /FileTree/SmartFolderNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/SmartFolderNode.h -------------------------------------------------------------------------------- /FileTree/SmartFolderNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/FileTree/SmartFolderNode.m -------------------------------------------------------------------------------- /Formatters/BlankZeroFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Formatters/BlankZeroFormatter.h -------------------------------------------------------------------------------- /Formatters/BlankZeroFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Formatters/BlankZeroFormatter.m -------------------------------------------------------------------------------- /Formatters/IndexFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Formatters/IndexFormatter.h -------------------------------------------------------------------------------- /Formatters/IndexFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Formatters/IndexFormatter.m -------------------------------------------------------------------------------- /Formatters/SecondsFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Formatters/SecondsFormatter.h -------------------------------------------------------------------------------- /Formatters/SecondsFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Formatters/SecondsFormatter.m -------------------------------------------------------------------------------- /Frameworks/AdPlug/AdPlug/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/AdPlug/AdPlug/Info.plist -------------------------------------------------------------------------------- /Frameworks/AdPlug/AdPlug/version.h: -------------------------------------------------------------------------------- 1 | #define ADPLUG_VERSION "2.3-5-g14557a4" 2 | -------------------------------------------------------------------------------- /Frameworks/Dumb/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/Info.plist -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/CHANGELOG.md -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/COMPILING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/COMPILING.md -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/README.md -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/include/dumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/include/dumb.h -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/prj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/prj/.gitignore -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/prj/dumb/dumb.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/prj/dumb/dumb.pro -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/core/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/core/atexit.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/core/duhlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/core/duhlen.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/core/duhtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/core/duhtag.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/core/rawsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/core/rawsig.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/core/unload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/core/unload.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/helpers/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/helpers/lpc.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/itload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/itload.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/itload2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/itload2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/itmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/itmisc.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/itorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/itorder.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/itread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/itread.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/itread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/itread2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/itrender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/itrender.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/itunload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/itunload.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/load669.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/load669.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/load6692.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/load6692.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadamf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadamf.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadamf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadamf2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadany.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadany2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadany2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadasy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadasy.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadasy2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadasy2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadmod.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadmod2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadmtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadmtm.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadmtm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadmtm2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadokt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadokt.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadokt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadokt2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadpsm.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadpsm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadpsm2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadptm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadptm.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadptm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadptm2.c -------------------------------------------------------------------------------- /Frameworks/Dumb/dumb/src/it/loadriff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Dumb/dumb/src/it/loadriff.c -------------------------------------------------------------------------------- /Frameworks/GME/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/Info.plist -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ay_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ay_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ay_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ay_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ay_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ay_Cpu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ay_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ay_Cpu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ay_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ay_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ay_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ay_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Blip_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Blip_Buffer.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Blip_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Blip_Buffer.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Bml_Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Bml_Parser.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Bml_Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Bml_Parser.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/CMakeLists.txt -------------------------------------------------------------------------------- /Frameworks/GME/gme/Classic_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Classic_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Classic_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Classic_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Data_Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Data_Reader.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Data_Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Data_Reader.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Dual_Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Dual_Resampler.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Effects_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Effects_Buffer.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Fir_Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Fir_Resampler.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gb_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gb_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gb_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gb_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gb_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gb_Cpu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gb_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gb_Cpu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gb_Oscs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gb_Oscs.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gb_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gb_Oscs.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gbs_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gbs_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gbs_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gbs_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gme_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gme_File.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gme_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gme_File.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gym_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gym_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Gym_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Gym_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Hes_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Hes_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Hes_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Hes_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Hes_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Hes_Cpu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Hes_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Hes_Cpu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Hes_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Hes_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Hes_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Hes_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Kss_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Kss_Cpu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Kss_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Kss_Cpu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Kss_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Kss_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Kss_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Kss_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Kss_Scc_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Kss_Scc_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Kss_Scc_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Kss_Scc_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/M3u_Playlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/M3u_Playlist.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/M3u_Playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/M3u_Playlist.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Multi_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Multi_Buffer.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Multi_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Multi_Buffer.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Music_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Music_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Music_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Music_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Cpu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Cpu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Fds_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Fds_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Fds_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Fds_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Fme7_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Fme7_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Fme7_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Fme7_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Mmc5_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Mmc5_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Namco_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Namco_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Oscs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Oscs.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Oscs.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Vrc6_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Vrc6_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Vrc6_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Vrc6_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Vrc7_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Vrc7_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nes_Vrc7_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nes_Vrc7_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nsf_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nsf_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nsf_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nsf_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nsfe_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nsfe_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Nsfe_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Nsfe_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Sap_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Sap_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Sap_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Sap_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Sap_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Sap_Cpu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Sap_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Sap_Cpu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Sap_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Sap_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Sap_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Sap_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Sms_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Sms_Apu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Sms_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Sms_Apu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Sms_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Sms_Oscs.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Snes_Spc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Snes_Spc.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Snes_Spc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Snes_Spc.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Cpu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Cpu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Dsp.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Dsp.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Filter.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Filter.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Sfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Sfm.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Spc_Sfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Spc_Sfm.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Vgm_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Vgm_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Vgm_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Vgm_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Vgm_Emu_Impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Vgm_Emu_Impl.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Vgm_Emu_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Vgm_Emu_Impl.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ym2413_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ym2413_Emu.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ym2413_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ym2413_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ym2612_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ym2612_Emu.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ym2612_GENS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ym2612_GENS.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ym2612_GENS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ym2612_GENS.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ym2612_MAME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ym2612_MAME.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ym2612_MAME.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ym2612_MAME.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ym2612_Nuked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ym2612_Nuked.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/Ym2612_Nuked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/Ym2612_Nuked.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/blargg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/blargg_common.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/blargg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/blargg_config.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/blargg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/blargg_endian.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/blargg_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/blargg_source.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/2413tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/ext/2413tone.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/ext/LICENSE -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/ext/README.md -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/emu2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/ext/emu2413.c -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/emu2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/ext/emu2413.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/emu2413_NESpatches.txt: -------------------------------------------------------------------------------- 1 | http://forums.nesdev.com/viewtopic.php?f=6&t=9141 2 | -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/emutypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/ext/emutypes.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/mamedef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/panning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/ext/panning.c -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/panning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/ext/panning.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/ext/vrc7tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/ext/vrc7tone.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/gb_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/gb_cpu_io.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/gme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/gme.cpp -------------------------------------------------------------------------------- /Frameworks/GME/gme/gme.cpp.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/gme.cpp.orig -------------------------------------------------------------------------------- /Frameworks/GME/gme/gme.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/gme.exports -------------------------------------------------------------------------------- /Frameworks/GME/gme/gme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/gme.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/gme.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/gme.h.orig -------------------------------------------------------------------------------- /Frameworks/GME/gme/gme_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/gme_types.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/gme_types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/gme_types.h.in -------------------------------------------------------------------------------- /Frameworks/GME/gme/hes_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/hes_cpu_io.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/libgme.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/libgme.pc.in -------------------------------------------------------------------------------- /Frameworks/GME/gme/nes_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/nes_cpu_io.h -------------------------------------------------------------------------------- /Frameworks/GME/gme/sap_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/gme/sap_cpu_io.h -------------------------------------------------------------------------------- /Frameworks/GME/higan/dsp/SPC_DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/higan/dsp/SPC_DSP.h -------------------------------------------------------------------------------- /Frameworks/GME/higan/dsp/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/higan/dsp/dsp.cpp -------------------------------------------------------------------------------- /Frameworks/GME/higan/dsp/dsp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/higan/dsp/dsp.hpp -------------------------------------------------------------------------------- /Frameworks/GME/higan/smp/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/higan/smp/memory.cpp -------------------------------------------------------------------------------- /Frameworks/GME/higan/smp/smp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/higan/smp/smp.cpp -------------------------------------------------------------------------------- /Frameworks/GME/higan/smp/smp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/higan/smp/smp.hpp -------------------------------------------------------------------------------- /Frameworks/GME/higan/smp/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/higan/smp/timing.cpp -------------------------------------------------------------------------------- /Frameworks/GME/license.gpl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/license.gpl2.txt -------------------------------------------------------------------------------- /Frameworks/GME/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/GME/license.txt -------------------------------------------------------------------------------- /Frameworks/HighlyExperimental/HighlyExperimental/Core/.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | Debug 3 | Release -------------------------------------------------------------------------------- /Frameworks/HighlyQuixotic/HighlyQuixotic/Core/.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | Debug 3 | Release -------------------------------------------------------------------------------- /Frameworks/HighlyTheoretical/HighlyTheoretical/Core/c68k/c68k_ini.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/HivelyPlayer/HivelyPlayer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/HivelyPlayer/HivelyPlayer/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/HivelyPlayer/HivelyPlayer/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/HivelyPlayer/HivelyPlayer/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/MPCDec/Files/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/MPCDec/Files/AUTHORS -------------------------------------------------------------------------------- /Frameworks/MPCDec/Files/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/MPCDec/Files/COPYING -------------------------------------------------------------------------------- /Frameworks/MPCDec/Files/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/MPCDec/Files/ChangeLog -------------------------------------------------------------------------------- /Frameworks/MPCDec/Files/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/MPCDec/Files/INSTALL -------------------------------------------------------------------------------- /Frameworks/MPCDec/Files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/MPCDec/Files/README -------------------------------------------------------------------------------- /Frameworks/MPCDec/Files/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/MPCDec/Files/src/crc32.c -------------------------------------------------------------------------------- /Frameworks/MPCDec/Files/src/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/MPCDec/Files/src/tags.c -------------------------------------------------------------------------------- /Frameworks/MPCDec/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/MPCDec/Info.plist -------------------------------------------------------------------------------- /Frameworks/OpenMPT/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/OpenMPT/Info.plist -------------------------------------------------------------------------------- /Frameworks/OpenMPT/OpenMPT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/OpenMPT/OpenMPT/LICENSE -------------------------------------------------------------------------------- /Frameworks/OpenMPT/OpenMPT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/OpenMPT/OpenMPT/Makefile -------------------------------------------------------------------------------- /Frameworks/OpenMPT/OpenMPT/build/djgpp/bin/dxe3gen: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | exec i386-pc-msdosdjgpp-dxe3gen "$@" 3 | -------------------------------------------------------------------------------- /Frameworks/OpenMPT/OpenMPT/build/djgpp/bin/dxe3res: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | exec i386-pc-msdosdjgpp-dxe3res "$@" 3 | -------------------------------------------------------------------------------- /Frameworks/OpenMPT/OpenMPT/build/djgpp/bin/dxe3res.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | exec i386-pc-msdosdjgpp-dxe3res "$@" 3 | -------------------------------------------------------------------------------- /Frameworks/OpenMPT/OpenMPT/contrib/libmodplug-0.8.8.5/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | autoreconf -i 3 | -------------------------------------------------------------------------------- /Frameworks/OpenMPT/OpenMPT/contrib/libmodplug-0.8.9.0/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | autoreconf -i 3 | -------------------------------------------------------------------------------- /Frameworks/OpenMPT/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/OpenMPT/config.h -------------------------------------------------------------------------------- /Frameworks/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/SOURCES -------------------------------------------------------------------------------- /Frameworks/SSEQPlayer/SSEQPlayer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/SSEQPlayer/SSEQPlayer/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/SSEQPlayer/SSEQPlayer/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/SSEQPlayer/SSEQPlayer/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/Shorten/Files/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Shorten/Files/AUTHORS -------------------------------------------------------------------------------- /Frameworks/Shorten/Files/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Shorten/Files/COPYING -------------------------------------------------------------------------------- /Frameworks/Shorten/Files/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Shorten/Files/ChangeLog -------------------------------------------------------------------------------- /Frameworks/Shorten/Files/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = shorten src 2 | -------------------------------------------------------------------------------- /Frameworks/Shorten/Files/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Shorten/Files/NEWS -------------------------------------------------------------------------------- /Frameworks/Shorten/Files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Shorten/Files/README -------------------------------------------------------------------------------- /Frameworks/Shorten/Files/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Shorten/Files/TODO -------------------------------------------------------------------------------- /Frameworks/Shorten/Files/shorten/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = util src 2 | -------------------------------------------------------------------------------- /Frameworks/Shorten/Files/shorten/doc/xmms-shn/AUTHORS: -------------------------------------------------------------------------------- 1 | Jason Jordan 2 | -------------------------------------------------------------------------------- /Frameworks/Shorten/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/Shorten/Info.plist -------------------------------------------------------------------------------- /Frameworks/g719/g719/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/g719/g719/Info.plist -------------------------------------------------------------------------------- /Frameworks/g719/g719/g719.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/g719/g719/g719.c -------------------------------------------------------------------------------- /Frameworks/g719/g719/g719.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/g719/g719/g719.h -------------------------------------------------------------------------------- /Frameworks/g719/g719/stack_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/g719/g719/stack_alloc.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/audio.c -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/audio.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/config.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/cpu.c -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/cpu.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/dma.c -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/dma.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/main.c -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/main.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/memory.c -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/memory.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/opcode.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/os.c -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/os.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/pif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/pif.c -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/pif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/pif.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/rsp.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/rsp/su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/rsp/su.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/tlb.c -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/tlb.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/types.h -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/usf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/usf.c -------------------------------------------------------------------------------- /Frameworks/lazyusf/lazyusf/usf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/lazyusf/lazyusf/usf.h -------------------------------------------------------------------------------- /Frameworks/libcelt_0061/celt-0.6.1/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/libcelt_0061/celt-0.6.1/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/libcelt_0061/celt-0.6.1/INSTALL: -------------------------------------------------------------------------------- 1 | To compile: 2 | 3 | ./configure 4 | make 5 | 6 | -------------------------------------------------------------------------------- /Frameworks/libcelt_0061/celt-0.6.1/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/libcelt_0110/celt-0.11.0/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/libcelt_0110/celt-0.11.0/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/libcelt_0110/celt-0.11.0/INSTALL: -------------------------------------------------------------------------------- 1 | To compile: 2 | 3 | ./configure 4 | make 5 | 6 | -------------------------------------------------------------------------------- /Frameworks/libcelt_0110/celt-0.11.0/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/libsidplayfp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/libsidplayfp/Info.plist -------------------------------------------------------------------------------- /Frameworks/libsidplayfp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/libsidplayfp/README.md -------------------------------------------------------------------------------- /Frameworks/mGBA/mGBA/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/mGBA/mGBA/Info.plist -------------------------------------------------------------------------------- /Frameworks/mGBA/mGBA/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/mGBA/mGBA/version.c -------------------------------------------------------------------------------- /Frameworks/modplay/modplay/barray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/modplay/modplay/barray.c -------------------------------------------------------------------------------- /Frameworks/modplay/modplay/barray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/modplay/modplay/barray.h -------------------------------------------------------------------------------- /Frameworks/modplay/modplay/dbopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/modplay/modplay/dbopl.c -------------------------------------------------------------------------------- /Frameworks/modplay/modplay/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/modplay/modplay/dbopl.h -------------------------------------------------------------------------------- /Frameworks/modplay/modplay/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/modplay/modplay/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/munt/munt/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/munt/munt/Info.plist -------------------------------------------------------------------------------- /Frameworks/nuked-sc55/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/nuked-sc55/LICENSE -------------------------------------------------------------------------------- /Frameworks/nuked-sc55/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/nuked-sc55/README.md -------------------------------------------------------------------------------- /Frameworks/playptmod/playptmod/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/playptmod/playptmod/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/psflib/psflib/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/psflib/psflib/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/psflib/psflib/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/psflib/psflib/psf2fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/psflib/psflib/psf2fs.c -------------------------------------------------------------------------------- /Frameworks/psflib/psflib/psf2fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/psflib/psflib/psf2fs.h -------------------------------------------------------------------------------- /Frameworks/psflib/psflib/psflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/psflib/psflib/psflib.c -------------------------------------------------------------------------------- /Frameworks/psflib/psflib/psflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Frameworks/psflib/psflib/psflib.h -------------------------------------------------------------------------------- /Frameworks/psflib/psflib/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/api_decode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/api_helpers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/api_tags.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/api_version.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/layout/blocked_matx.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/meta/awc_xma_streamfile.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/meta/ps2_b1s.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/meta/ps2_tec.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/meta/ps2_wad.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/meta/vis.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/src/meta/xbox_ims.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/vgmstream/vgmstream/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/vio2sf/vio2sf/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/vio2sf/vio2sf/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/vio2sf/vio2sf/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/vio2sf/vio2sf/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/GoogleService-Info.plist -------------------------------------------------------------------------------- /Huh.icon/Assets/Cog 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Huh.icon/Assets/Cog 2.svg -------------------------------------------------------------------------------- /Huh.icon/Assets/Ellipse 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Huh.icon/Assets/Ellipse 2.svg -------------------------------------------------------------------------------- /Huh.icon/Assets/HuhGlyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Huh.icon/Assets/HuhGlyph.svg -------------------------------------------------------------------------------- /Huh.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Huh.icon/icon.json -------------------------------------------------------------------------------- /Icons/aiff.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/aiff.icns -------------------------------------------------------------------------------- /Icons/ape.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/ape.icns -------------------------------------------------------------------------------- /Icons/cue.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/cue.icns -------------------------------------------------------------------------------- /Icons/filetype.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/filetype.icns -------------------------------------------------------------------------------- /Icons/flac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/flac.icns -------------------------------------------------------------------------------- /Icons/icon_main.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/icon_main.icns -------------------------------------------------------------------------------- /Icons/it.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/it.icns -------------------------------------------------------------------------------- /Icons/m3u.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/m3u.icns -------------------------------------------------------------------------------- /Icons/m4a.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/m4a.icns -------------------------------------------------------------------------------- /Icons/mp3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/mp3.icns -------------------------------------------------------------------------------- /Icons/mpc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/mpc.icns -------------------------------------------------------------------------------- /Icons/ogg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/ogg.icns -------------------------------------------------------------------------------- /Icons/pls.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/pls.icns -------------------------------------------------------------------------------- /Icons/s3m.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/s3m.icns -------------------------------------------------------------------------------- /Icons/shn.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/shn.icns -------------------------------------------------------------------------------- /Icons/song.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/song.icns -------------------------------------------------------------------------------- /Icons/vg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/vg.icns -------------------------------------------------------------------------------- /Icons/wav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/wav.icns -------------------------------------------------------------------------------- /Icons/wv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/wv.icns -------------------------------------------------------------------------------- /Icons/xm.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Icons/xm.icns -------------------------------------------------------------------------------- /Info.plist.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Info.plist.template -------------------------------------------------------------------------------- /InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/InfoPlist.xcstrings -------------------------------------------------------------------------------- /KnownIssues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/KnownIssues -------------------------------------------------------------------------------- /Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Localizable.xcstrings -------------------------------------------------------------------------------- /Pause.icon/Assets/Cog 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Pause.icon/Assets/Cog 2.svg -------------------------------------------------------------------------------- /Pause.icon/Assets/Ellipse 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Pause.icon/Assets/Ellipse 2.svg -------------------------------------------------------------------------------- /Pause.icon/Assets/PauseGlyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Pause.icon/Assets/PauseGlyph.svg -------------------------------------------------------------------------------- /Pause.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Pause.icon/icon.json -------------------------------------------------------------------------------- /Play.icon/Assets/Cog 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Play.icon/Assets/Cog 2.svg -------------------------------------------------------------------------------- /Play.icon/Assets/Ellipse 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Play.icon/Assets/Ellipse 2.svg -------------------------------------------------------------------------------- /Play.icon/Assets/PlayGlyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Play.icon/Assets/PlayGlyph.svg -------------------------------------------------------------------------------- /Play.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Play.icon/icon.json -------------------------------------------------------------------------------- /Playlist/DNDArrayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/DNDArrayController.h -------------------------------------------------------------------------------- /Playlist/DNDArrayController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/DNDArrayController.m -------------------------------------------------------------------------------- /Playlist/PlaylistController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistController.h -------------------------------------------------------------------------------- /Playlist/PlaylistController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistController.m -------------------------------------------------------------------------------- /Playlist/PlaylistEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistEntry.h -------------------------------------------------------------------------------- /Playlist/PlaylistEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistEntry.m -------------------------------------------------------------------------------- /Playlist/PlaylistHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistHeaderView.h -------------------------------------------------------------------------------- /Playlist/PlaylistHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistHeaderView.m -------------------------------------------------------------------------------- /Playlist/PlaylistLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistLoader.h -------------------------------------------------------------------------------- /Playlist/PlaylistLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistLoader.m -------------------------------------------------------------------------------- /Playlist/PlaylistView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistView.h -------------------------------------------------------------------------------- /Playlist/PlaylistView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/PlaylistView.m -------------------------------------------------------------------------------- /Playlist/Shuffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/Shuffle.h -------------------------------------------------------------------------------- /Playlist/Shuffle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/Shuffle.m -------------------------------------------------------------------------------- /Playlist/StatusImageTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/StatusImageTransformer.h -------------------------------------------------------------------------------- /Playlist/StatusImageTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/StatusImageTransformer.m -------------------------------------------------------------------------------- /Playlist/XmlContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/XmlContainer.h -------------------------------------------------------------------------------- /Playlist/XmlContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Playlist/XmlContainer.m -------------------------------------------------------------------------------- /Plugins/APL/APLDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/APL/APLDecoder.h -------------------------------------------------------------------------------- /Plugins/APL/APLDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/APL/APLDecoder.m -------------------------------------------------------------------------------- /Plugins/APL/APLFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/APL/APLFile.h -------------------------------------------------------------------------------- /Plugins/APL/APLFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/APL/APLFile.m -------------------------------------------------------------------------------- /Plugins/APL/APL_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/APL/APL_Prefix.pch -------------------------------------------------------------------------------- /Plugins/APL/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/APL/Info.plist -------------------------------------------------------------------------------- /Plugins/AdPlug/AdPlug/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/AdPlug/AdPlug/Info.plist -------------------------------------------------------------------------------- /Plugins/ArchiveSource/ArchiveSource/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/ArchiveSource/ArchiveSource/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/ArchiveSource/ArchiveSource/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/ArchiveSource/ArchiveSource/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/BASSMODS/BASSMODS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/BASSMODS/BASSMODS/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/CoreAudio/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/CoreAudio/Info.plist -------------------------------------------------------------------------------- /Plugins/CueSheet/CueSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/CueSheet/CueSheet.h -------------------------------------------------------------------------------- /Plugins/CueSheet/CueSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/CueSheet/CueSheet.m -------------------------------------------------------------------------------- /Plugins/CueSheet/CueSheetDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/CueSheet/CueSheetDecoder.h -------------------------------------------------------------------------------- /Plugins/CueSheet/CueSheetDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/CueSheet/CueSheetDecoder.m -------------------------------------------------------------------------------- /Plugins/CueSheet/CueSheetTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/CueSheet/CueSheetTrack.h -------------------------------------------------------------------------------- /Plugins/CueSheet/CueSheetTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/CueSheet/CueSheetTrack.m -------------------------------------------------------------------------------- /Plugins/CueSheet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/CueSheet/Info.plist -------------------------------------------------------------------------------- /Plugins/Dumb/DumbContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/DumbContainer.h -------------------------------------------------------------------------------- /Plugins/Dumb/DumbContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/DumbContainer.m -------------------------------------------------------------------------------- /Plugins/Dumb/DumbDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/DumbDecoder.h -------------------------------------------------------------------------------- /Plugins/Dumb/DumbDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/DumbDecoder.m -------------------------------------------------------------------------------- /Plugins/Dumb/DumbMetadataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/DumbMetadataReader.h -------------------------------------------------------------------------------- /Plugins/Dumb/DumbMetadataReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/DumbMetadataReader.m -------------------------------------------------------------------------------- /Plugins/Dumb/Dumb_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/Dumb_Prefix.pch -------------------------------------------------------------------------------- /Plugins/Dumb/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/Info.plist -------------------------------------------------------------------------------- /Plugins/Dumb/archive/j2b/j2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/archive/j2b/j2b.c -------------------------------------------------------------------------------- /Plugins/Dumb/archive/j2b/j2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/archive/j2b/j2b.h -------------------------------------------------------------------------------- /Plugins/Dumb/archive/mo3/mo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/archive/mo3/mo3.c -------------------------------------------------------------------------------- /Plugins/Dumb/archive/mo3/mo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/archive/mo3/mo3.h -------------------------------------------------------------------------------- /Plugins/Dumb/archive/umx/umr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/archive/umx/umr.h -------------------------------------------------------------------------------- /Plugins/Dumb/archive/umx/umx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/archive/umx/umx.h -------------------------------------------------------------------------------- /Plugins/Dumb/archive/umx/umx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/archive/umx/umx.mm -------------------------------------------------------------------------------- /Plugins/Dumb/archive/umx/urf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Dumb/archive/umx/urf.h -------------------------------------------------------------------------------- /Plugins/FFMPEG/FFMPEGContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/FFMPEG/FFMPEGContainer.h -------------------------------------------------------------------------------- /Plugins/FFMPEG/FFMPEGContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/FFMPEG/FFMPEGContainer.m -------------------------------------------------------------------------------- /Plugins/FFMPEG/FFMPEGDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/FFMPEG/FFMPEGDecoder.h -------------------------------------------------------------------------------- /Plugins/FFMPEG/FFMPEGDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/FFMPEG/FFMPEGDecoder.m -------------------------------------------------------------------------------- /Plugins/FFMPEG/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/FFMPEG/Info.plist -------------------------------------------------------------------------------- /Plugins/FileSource/FileSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/FileSource/FileSource.h -------------------------------------------------------------------------------- /Plugins/FileSource/FileSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/FileSource/FileSource.m -------------------------------------------------------------------------------- /Plugins/FileSource/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/FileSource/Info.plist -------------------------------------------------------------------------------- /Plugins/Flac/FlacDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Flac/FlacDecoder.h -------------------------------------------------------------------------------- /Plugins/Flac/FlacDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Flac/FlacDecoder.m -------------------------------------------------------------------------------- /Plugins/Flac/Flac_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Flac/Flac_Prefix.pch -------------------------------------------------------------------------------- /Plugins/Flac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Flac/Info.plist -------------------------------------------------------------------------------- /Plugins/Flac/cuesheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Flac/cuesheet.m -------------------------------------------------------------------------------- /Plugins/GME/GME_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/GME_Prefix.pch -------------------------------------------------------------------------------- /Plugins/GME/GameContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/GameContainer.h -------------------------------------------------------------------------------- /Plugins/GME/GameContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/GameContainer.m -------------------------------------------------------------------------------- /Plugins/GME/GameDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/GameDecoder.h -------------------------------------------------------------------------------- /Plugins/GME/GameDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/GameDecoder.m -------------------------------------------------------------------------------- /Plugins/GME/GameMetadataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/GameMetadataReader.h -------------------------------------------------------------------------------- /Plugins/GME/GameMetadataReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/GameMetadataReader.m -------------------------------------------------------------------------------- /Plugins/GME/GamePropertiesReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/GamePropertiesReader.h -------------------------------------------------------------------------------- /Plugins/GME/GamePropertiesReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/GamePropertiesReader.m -------------------------------------------------------------------------------- /Plugins/GME/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/GME/Info.plist -------------------------------------------------------------------------------- /Plugins/HTTPSource/HTTPSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/HTTPSource/HTTPSource.h -------------------------------------------------------------------------------- /Plugins/HTTPSource/HTTPSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/HTTPSource/HTTPSource.m -------------------------------------------------------------------------------- /Plugins/HTTPSource/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/HTTPSource/Info.plist -------------------------------------------------------------------------------- /Plugins/HighlyComplete/HighlyComplete/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/HighlyComplete/HighlyComplete/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/HighlyComplete/HighlyComplete/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/HighlyComplete/HighlyComplete/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Hively/Hively/HVLDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Hively/Hively/HVLDecoder.h -------------------------------------------------------------------------------- /Plugins/Hively/Hively/HVLDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Hively/Hively/HVLDecoder.m -------------------------------------------------------------------------------- /Plugins/Hively/Hively/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Hively/Hively/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Hively/Hively/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Hively/Hively/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/M3u/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/M3u/Info.plist -------------------------------------------------------------------------------- /Plugins/M3u/M3uContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/M3u/M3uContainer.h -------------------------------------------------------------------------------- /Plugins/M3u/M3uContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/M3u/M3uContainer.m -------------------------------------------------------------------------------- /Plugins/M3u/M3u_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/M3u/M3u_Prefix.pch -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/AUPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/AUPlayer.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/AUPlayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/AUPlayer.mm -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/AUPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/AUPlayerView.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/AUPlayerView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/AUPlayerView.mm -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/BMPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/BMPlayer.cpp -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/BMPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/BMPlayer.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MIDI-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MIDI-Info.plist -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MIDI-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MIDI-Prefix.pch -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MIDIContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MIDIContainer.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MIDIContainer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MIDIContainer.mm -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MIDIDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MIDIDecoder.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MIDIDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MIDIDecoder.mm -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MIDIPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MIDIPlayer.cpp -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MIDIPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MIDIPlayer.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MSPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MSPlayer.cpp -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MSPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MSPlayer.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MT32Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MT32Player.cpp -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/MT32Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/MT32Player.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/SCCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/SCCore.cpp -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/SCCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/SCCore.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/SCPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/SCPlayer.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/SCPlayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/SCPlayer.mm -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/SFPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/SFPlayer.cpp -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/SFPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/SFPlayer.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/fmopl3lib/opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/fmopl3lib/opl3.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/interface.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/kq6mtgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/kq6mtgm.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/mtgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/mtgm.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/resampler.c -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/MIDI/MIDI/resampler.h -------------------------------------------------------------------------------- /Plugins/MIDI/MIDI/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Musepack/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Musepack/Info.plist -------------------------------------------------------------------------------- /Plugins/Musepack/MusepackDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Musepack/MusepackDecoder.h -------------------------------------------------------------------------------- /Plugins/Musepack/MusepackDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Musepack/MusepackDecoder.m -------------------------------------------------------------------------------- /Plugins/OpenMPT/OpenMPT/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/OpenMPT/OpenMPT/Info.plist -------------------------------------------------------------------------------- /Plugins/Opus/Opus/OpusDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Opus/Opus/OpusDecoder.h -------------------------------------------------------------------------------- /Plugins/Opus/Opus/OpusDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Opus/Opus/OpusDecoder.m -------------------------------------------------------------------------------- /Plugins/Opus/Opus/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Opus/Opus/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Opus/Opus/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Opus/Opus/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Organya/OrganyaDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Organya/OrganyaDecoder.h -------------------------------------------------------------------------------- /Plugins/Organya/OrganyaDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Organya/OrganyaDecoder.mm -------------------------------------------------------------------------------- /Plugins/Organya/fx96.pxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Organya/fx96.pxt -------------------------------------------------------------------------------- /Plugins/Organya/fx97.pxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Organya/fx97.pxt -------------------------------------------------------------------------------- /Plugins/Organya/fx98.pxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Organya/fx98.pxt -------------------------------------------------------------------------------- /Plugins/Organya/fx99.pxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Organya/fx99.pxt -------------------------------------------------------------------------------- /Plugins/Organya/fx9a.pxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Organya/fx9a.pxt -------------------------------------------------------------------------------- /Plugins/Organya/fx9b.pxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Organya/fx9b.pxt -------------------------------------------------------------------------------- /Plugins/Organya/wavetable.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Organya/wavetable.dat -------------------------------------------------------------------------------- /Plugins/Pls/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Pls/Info.plist -------------------------------------------------------------------------------- /Plugins/Pls/PlsContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Pls/PlsContainer.h -------------------------------------------------------------------------------- /Plugins/Pls/PlsContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Pls/PlsContainer.m -------------------------------------------------------------------------------- /Plugins/Pls/Pls_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Pls/Pls_Prefix.pch -------------------------------------------------------------------------------- /Plugins/Quicktime/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Quicktime/Info.plist -------------------------------------------------------------------------------- /Plugins/Shorten/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Shorten/Info.plist -------------------------------------------------------------------------------- /Plugins/Shorten/ShortenDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Shorten/ShortenDecoder.h -------------------------------------------------------------------------------- /Plugins/Shorten/ShortenDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Shorten/ShortenDecoder.mm -------------------------------------------------------------------------------- /Plugins/Shorten/Shorten_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Shorten/Shorten_Prefix.pch -------------------------------------------------------------------------------- /Plugins/Syntrax/Syntrax/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Syntrax/Syntrax/Info.plist -------------------------------------------------------------------------------- /Plugins/TagLib/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/TagLib/Info.plist -------------------------------------------------------------------------------- /Plugins/TagLib/TagLibID3v2Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/TagLib/TagLibID3v2Reader.h -------------------------------------------------------------------------------- /Plugins/TagLib/TagLibID3v2Reader.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/TagLib/TagLibID3v2Reader.mm -------------------------------------------------------------------------------- /Plugins/TagLib/TagLib_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/TagLib/TagLib_Prefix.pch -------------------------------------------------------------------------------- /Plugins/Vorbis/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Vorbis/Info.plist -------------------------------------------------------------------------------- /Plugins/Vorbis/VorbisDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Vorbis/VorbisDecoder.h -------------------------------------------------------------------------------- /Plugins/Vorbis/VorbisDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/Vorbis/VorbisDecoder.m -------------------------------------------------------------------------------- /Plugins/WavPack/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/WavPack/Info.plist -------------------------------------------------------------------------------- /Plugins/WavPack/WavPackDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/WavPack/WavPackDecoder.h -------------------------------------------------------------------------------- /Plugins/WavPack/WavPackDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/WavPack/WavPackDecoder.m -------------------------------------------------------------------------------- /Plugins/WavPack/WavPack_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/WavPack/WavPack_Prefix.pch -------------------------------------------------------------------------------- /Plugins/libvgmPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/libvgmPlayer/Info.plist -------------------------------------------------------------------------------- /Plugins/libvgmPlayer/yrw801.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/libvgmPlayer/yrw801.h -------------------------------------------------------------------------------- /Plugins/minimp3/MP3Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/minimp3/MP3Decoder.h -------------------------------------------------------------------------------- /Plugins/minimp3/MP3Decoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/minimp3/MP3Decoder.m -------------------------------------------------------------------------------- /Plugins/modplay/modplay/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/modplay/modplay/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/playptmod/playptmod/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/playptmod/playptmod/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/sidplay/SidContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/sidplay/SidContainer.h -------------------------------------------------------------------------------- /Plugins/sidplay/SidContainer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/sidplay/SidContainer.mm -------------------------------------------------------------------------------- /Plugins/sidplay/SidDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/sidplay/SidDecoder.h -------------------------------------------------------------------------------- /Plugins/sidplay/SidDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/sidplay/SidDecoder.mm -------------------------------------------------------------------------------- /Plugins/sidplay/SidMetadataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/sidplay/SidMetadataReader.h -------------------------------------------------------------------------------- /Plugins/sidplay/roms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/sidplay/roms.cpp -------------------------------------------------------------------------------- /Plugins/sidplay/roms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/sidplay/roms.hpp -------------------------------------------------------------------------------- /Plugins/sidplay/sidplay/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Plugins/sidplay/sidplay/Info.plist -------------------------------------------------------------------------------- /Plugins/vgmstream/vgmstream/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/vgmstream/vgmstream/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/vgmstream/vgmstream/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Plugins/vgmstream/vgmstream/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Preferences/PreferencePanePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Preferences/PreferencePanePlugin.h -------------------------------------------------------------------------------- /Preferences/Preferences/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Preferences/Preferences/Info.plist -------------------------------------------------------------------------------- /Preferences/Preferences/MIDIPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Preferences/Preferences/MIDIPane.h -------------------------------------------------------------------------------- /Preferences/Preferences/MIDIPane.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Preferences/Preferences/MIDIPane.mm -------------------------------------------------------------------------------- /Preferences/PreferencesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Preferences/PreferencesController.h -------------------------------------------------------------------------------- /Preferences/PreferencesController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Preferences/PreferencesController.m -------------------------------------------------------------------------------- /Preferences/PreferencesWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Preferences/PreferencesWindow.h -------------------------------------------------------------------------------- /Preferences/PreferencesWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Preferences/PreferencesWindow.m -------------------------------------------------------------------------------- /Preferences/Shortcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Preferences/Shortcuts.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/README.md -------------------------------------------------------------------------------- /SADIE_D02-96000.mhr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/SADIE_D02-96000.mhr -------------------------------------------------------------------------------- /Scenes.scnassets/Spectrum.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scenes.scnassets/Spectrum.scn -------------------------------------------------------------------------------- /Scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/build.sh -------------------------------------------------------------------------------- /Scripts/cors-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/cors-policy.xml -------------------------------------------------------------------------------- /Scripts/extract_libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/extract_libraries.sh -------------------------------------------------------------------------------- /Scripts/ffmpeg-build-arm64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/ffmpeg-build-arm64.sh -------------------------------------------------------------------------------- /Scripts/ffmpeg-build-universal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/ffmpeg-build-universal.sh -------------------------------------------------------------------------------- /Scripts/ffmpeg-build-x86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/ffmpeg-build-x86_64.sh -------------------------------------------------------------------------------- /Scripts/genversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/genversion.sh -------------------------------------------------------------------------------- /Scripts/launchd_nightly.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/launchd_nightly.plist -------------------------------------------------------------------------------- /Scripts/sparkleToJSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/sparkleToJSON -------------------------------------------------------------------------------- /Scripts/update_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Scripts/update_feed.rb -------------------------------------------------------------------------------- /Spotlight/NSArray+CogSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Spotlight/NSArray+CogSort.h -------------------------------------------------------------------------------- /Spotlight/NSArray+CogSort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Spotlight/NSArray+CogSort.m -------------------------------------------------------------------------------- /Spotlight/NSNumber+CogSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Spotlight/NSNumber+CogSort.h -------------------------------------------------------------------------------- /Spotlight/NSNumber+CogSort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Spotlight/NSNumber+CogSort.m -------------------------------------------------------------------------------- /Spotlight/SpotlightPlaylistEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Spotlight/SpotlightPlaylistEntry.h -------------------------------------------------------------------------------- /Spotlight/SpotlightPlaylistEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Spotlight/SpotlightPlaylistEntry.m -------------------------------------------------------------------------------- /Spotlight/SpotlightTransformers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Spotlight/SpotlightTransformers.h -------------------------------------------------------------------------------- /Spotlight/SpotlightTransformers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Spotlight/SpotlightTransformers.m -------------------------------------------------------------------------------- /Stop.icon/Assets/Cog 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Stop.icon/Assets/Cog 2.svg -------------------------------------------------------------------------------- /Stop.icon/Assets/Ellipse 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Stop.icon/Assets/Ellipse 2.svg -------------------------------------------------------------------------------- /Stop.icon/Assets/StopGlyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Stop.icon/Assets/StopGlyph.svg -------------------------------------------------------------------------------- /Stop.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Stop.icon/icon.json -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/TODO -------------------------------------------------------------------------------- /TagEditor/TagEditorController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/TagEditor/TagEditorController.h -------------------------------------------------------------------------------- /TagEditor/TagEditorController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/TagEditor/TagEditorController.m -------------------------------------------------------------------------------- /ThirdParty/BASS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/BASS/README.md -------------------------------------------------------------------------------- /ThirdParty/BASS/bass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/BASS/bass.h -------------------------------------------------------------------------------- /ThirdParty/BASS/bassmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/BASS/bassmidi.h -------------------------------------------------------------------------------- /ThirdParty/BASS/sflist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/BASS/sflist.c -------------------------------------------------------------------------------- /ThirdParty/BASS/sflist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/BASS/sflist.h -------------------------------------------------------------------------------- /ThirdParty/BASS/sflist_rewrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/BASS/sflist_rewrite.c -------------------------------------------------------------------------------- /ThirdParty/Frameworks/tag.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /ThirdParty/Frameworks/tag.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /ThirdParty/Frameworks/tag.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /ThirdParty/Frameworks/tag.framework/tag: -------------------------------------------------------------------------------- 1 | Versions/Current/tag -------------------------------------------------------------------------------- /ThirdParty/Frameworks/taglib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/Frameworks/taglib.patch -------------------------------------------------------------------------------- /ThirdParty/Frameworks/taglib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/Frameworks/taglib.txt -------------------------------------------------------------------------------- /ThirdParty/avif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/avif/README.md -------------------------------------------------------------------------------- /ThirdParty/avif/include/avif/avif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/avif/include/avif/avif.h -------------------------------------------------------------------------------- /ThirdParty/fdk-aac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/fdk-aac/README.md -------------------------------------------------------------------------------- /ThirdParty/flac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/flac/README.md -------------------------------------------------------------------------------- /ThirdParty/flac/include/FLAC/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/flac/include/FLAC/all.h -------------------------------------------------------------------------------- /ThirdParty/json/json-builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/json/json-builder.c -------------------------------------------------------------------------------- /ThirdParty/json/json-builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/json/json-builder.h -------------------------------------------------------------------------------- /ThirdParty/json/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/json/json.c -------------------------------------------------------------------------------- /ThirdParty/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/json/json.h -------------------------------------------------------------------------------- /ThirdParty/libid3tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/libid3tag/README.md -------------------------------------------------------------------------------- /ThirdParty/libraries.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/libraries.tar.xz -------------------------------------------------------------------------------- /ThirdParty/libvgm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/libvgm/README.md -------------------------------------------------------------------------------- /ThirdParty/meson-arm64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/meson-arm64.txt -------------------------------------------------------------------------------- /ThirdParty/meson-x86_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/meson-x86_64.txt -------------------------------------------------------------------------------- /ThirdParty/mpg123/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/mpg123/README.md -------------------------------------------------------------------------------- /ThirdParty/ogg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/ogg/README.md -------------------------------------------------------------------------------- /ThirdParty/ogg/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/ogg/include/ogg/ogg.h -------------------------------------------------------------------------------- /ThirdParty/opus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/opus/README.md -------------------------------------------------------------------------------- /ThirdParty/opus/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/opus/include/opus.h -------------------------------------------------------------------------------- /ThirdParty/opusfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/opusfile/README.md -------------------------------------------------------------------------------- /ThirdParty/rubberband/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/rubberband/README.md -------------------------------------------------------------------------------- /ThirdParty/soxr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/soxr/README.md -------------------------------------------------------------------------------- /ThirdParty/soxr/include/soxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/soxr/include/soxr.h -------------------------------------------------------------------------------- /ThirdParty/vorbis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ThirdParty/vorbis/README.md -------------------------------------------------------------------------------- /Transformers/TotalTimeTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Transformers/TotalTimeTransformer.h -------------------------------------------------------------------------------- /Transformers/TotalTimeTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Transformers/TotalTimeTransformer.m -------------------------------------------------------------------------------- /Utils/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/Logging.h -------------------------------------------------------------------------------- /Utils/NSArray+ShuffleUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSArray+ShuffleUtils.h -------------------------------------------------------------------------------- /Utils/NSArray+ShuffleUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSArray+ShuffleUtils.m -------------------------------------------------------------------------------- /Utils/NSData+MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSData+MD5.h -------------------------------------------------------------------------------- /Utils/NSData+MD5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSData+MD5.m -------------------------------------------------------------------------------- /Utils/NSDictionary+Merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSDictionary+Merge.h -------------------------------------------------------------------------------- /Utils/NSDictionary+Merge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSDictionary+Merge.m -------------------------------------------------------------------------------- /Utils/NSDictionary+Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSDictionary+Optional.h -------------------------------------------------------------------------------- /Utils/NSDictionary+Optional.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSDictionary+Optional.m -------------------------------------------------------------------------------- /Utils/NSFileHandle+CreateFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSFileHandle+CreateFile.h -------------------------------------------------------------------------------- /Utils/NSFileHandle+CreateFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSFileHandle+CreateFile.m -------------------------------------------------------------------------------- /Utils/NSString+CogSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSString+CogSort.h -------------------------------------------------------------------------------- /Utils/NSString+CogSort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSString+CogSort.m -------------------------------------------------------------------------------- /Utils/NSString+FinderCompare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSString+FinderCompare.h -------------------------------------------------------------------------------- /Utils/NSString+FinderCompare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSString+FinderCompare.m -------------------------------------------------------------------------------- /Utils/NSView+Visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSView+Visibility.h -------------------------------------------------------------------------------- /Utils/NSView+Visibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/NSView+Visibility.m -------------------------------------------------------------------------------- /Utils/RedundantPlaylistDataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/RedundantPlaylistDataStore.h -------------------------------------------------------------------------------- /Utils/RedundantPlaylistDataStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/RedundantPlaylistDataStore.m -------------------------------------------------------------------------------- /Utils/SHA256Digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/SHA256Digest.h -------------------------------------------------------------------------------- /Utils/SHA256Digest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/SHA256Digest.m -------------------------------------------------------------------------------- /Utils/SQLiteStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/SQLiteStore.h -------------------------------------------------------------------------------- /Utils/SQLiteStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/SQLiteStore.m -------------------------------------------------------------------------------- /Utils/SandboxBroker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/SandboxBroker.h -------------------------------------------------------------------------------- /Utils/SandboxBroker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/SandboxBroker.m -------------------------------------------------------------------------------- /Utils/SideViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/SideViewController.h -------------------------------------------------------------------------------- /Utils/SideViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/SideViewController.m -------------------------------------------------------------------------------- /Utils/ToolTipTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/ToolTipTextField.h -------------------------------------------------------------------------------- /Utils/ToolTipTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/ToolTipTextField.m -------------------------------------------------------------------------------- /Utils/TrackingCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/TrackingCell.h -------------------------------------------------------------------------------- /Utils/TrackingCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/TrackingCell.m -------------------------------------------------------------------------------- /Utils/TrackingSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/TrackingSlider.h -------------------------------------------------------------------------------- /Utils/TrackingSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Utils/TrackingSlider.m -------------------------------------------------------------------------------- /Visualization/SCView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Visualization/SCView.h -------------------------------------------------------------------------------- /Visualization/SCView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Visualization/SCView.m -------------------------------------------------------------------------------- /Visualization/SpectrumItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Visualization/SpectrumItem.h -------------------------------------------------------------------------------- /Visualization/SpectrumItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Visualization/SpectrumItem.m -------------------------------------------------------------------------------- /Visualization/SpectrumViewCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Visualization/SpectrumViewCG.h -------------------------------------------------------------------------------- /Visualization/SpectrumViewCG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Visualization/SpectrumViewCG.m -------------------------------------------------------------------------------- /Visualization/SpectrumViewSK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Visualization/SpectrumViewSK.h -------------------------------------------------------------------------------- /Visualization/SpectrumViewSK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Visualization/SpectrumViewSK.m -------------------------------------------------------------------------------- /Window/AboutWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/AboutWindowController.swift -------------------------------------------------------------------------------- /Window/CogSearchField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/CogSearchField.h -------------------------------------------------------------------------------- /Window/CogSearchField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/CogSearchField.m -------------------------------------------------------------------------------- /Window/DraggableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/DraggableView.swift -------------------------------------------------------------------------------- /Window/DualWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/DualWindow.h -------------------------------------------------------------------------------- /Window/DualWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/DualWindow.m -------------------------------------------------------------------------------- /Window/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/MainWindow.h -------------------------------------------------------------------------------- /Window/MainWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/MainWindow.m -------------------------------------------------------------------------------- /Window/MiniWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/MiniWindow.h -------------------------------------------------------------------------------- /Window/MiniWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/MiniWindow.m -------------------------------------------------------------------------------- /Window/PitchSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/PitchSlider.h -------------------------------------------------------------------------------- /Window/PitchSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/PitchSlider.m -------------------------------------------------------------------------------- /Window/PlaybackButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/PlaybackButtons.h -------------------------------------------------------------------------------- /Window/PlaybackButtons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/PlaybackButtons.m -------------------------------------------------------------------------------- /Window/PositionSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/PositionSlider.h -------------------------------------------------------------------------------- /Window/PositionSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/PositionSlider.m -------------------------------------------------------------------------------- /Window/RepeatTransformers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/RepeatTransformers.h -------------------------------------------------------------------------------- /Window/RepeatTransformers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/RepeatTransformers.m -------------------------------------------------------------------------------- /Window/ShuffleTransformers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/ShuffleTransformers.h -------------------------------------------------------------------------------- /Window/ShuffleTransformers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/ShuffleTransformers.m -------------------------------------------------------------------------------- /Window/SpeedButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/SpeedButton.h -------------------------------------------------------------------------------- /Window/SpeedButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/SpeedButton.m -------------------------------------------------------------------------------- /Window/TempoSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/TempoSlider.h -------------------------------------------------------------------------------- /Window/TempoSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/TempoSlider.m -------------------------------------------------------------------------------- /Window/TimeField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/TimeField.h -------------------------------------------------------------------------------- /Window/TimeField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/TimeField.m -------------------------------------------------------------------------------- /Window/VolumeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/VolumeButton.h -------------------------------------------------------------------------------- /Window/VolumeButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/VolumeButton.m -------------------------------------------------------------------------------- /Window/VolumeSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/VolumeSlider.h -------------------------------------------------------------------------------- /Window/VolumeSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Window/VolumeSlider.m -------------------------------------------------------------------------------- /Xcode-config/Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/Xcode-config/Shared.xcconfig -------------------------------------------------------------------------------- /ci_scripts/ci_post_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ci_scripts/ci_post_clone.sh -------------------------------------------------------------------------------- /ci_scripts/ci_pre_xcodebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ci_scripts/ci_pre_xcodebuild.sh -------------------------------------------------------------------------------- /en.lproj/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/en.lproj/Credits.html -------------------------------------------------------------------------------- /es.lproj/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/es.lproj/Credits.html -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/main.m -------------------------------------------------------------------------------- /mul.lproj/Equalizer.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/Equalizer.xcstrings -------------------------------------------------------------------------------- /mul.lproj/Feedback.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/Feedback.xcstrings -------------------------------------------------------------------------------- /mul.lproj/FileTree.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/FileTree.xcstrings -------------------------------------------------------------------------------- /mul.lproj/InfoInspector.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/InfoInspector.xcstrings -------------------------------------------------------------------------------- /mul.lproj/LyricsWindow.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/LyricsWindow.xcstrings -------------------------------------------------------------------------------- /mul.lproj/MainMenu.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/MainMenu.xcstrings -------------------------------------------------------------------------------- /mul.lproj/OpenURLPanel.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/OpenURLPanel.xcstrings -------------------------------------------------------------------------------- /mul.lproj/SCVisWindow.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/SCVisWindow.xcstrings -------------------------------------------------------------------------------- /mul.lproj/SpectrumWindow.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/SpectrumWindow.xcstrings -------------------------------------------------------------------------------- /mul.lproj/SpotlightPanel.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/mul.lproj/SpotlightPanel.xcstrings -------------------------------------------------------------------------------- /patrons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/patrons.h -------------------------------------------------------------------------------- /pl.lproj/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/Credits.html -------------------------------------------------------------------------------- /pl.lproj/Equalizer.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/Equalizer.strings -------------------------------------------------------------------------------- /pl.lproj/Feedback.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/Feedback.strings -------------------------------------------------------------------------------- /pl.lproj/FileTree.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/FileTree.strings -------------------------------------------------------------------------------- /pl.lproj/InfoInspector.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/InfoInspector.strings -------------------------------------------------------------------------------- /pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /pl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /pl.lproj/LyricsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/LyricsWindow.strings -------------------------------------------------------------------------------- /pl.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/MainMenu.strings -------------------------------------------------------------------------------- /pl.lproj/OpenURLPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/OpenURLPanel.strings -------------------------------------------------------------------------------- /pl.lproj/SpectrumWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/SpectrumWindow.strings -------------------------------------------------------------------------------- /pl.lproj/SpotlightPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/pl.lproj/SpotlightPanel.strings -------------------------------------------------------------------------------- /ru.lproj/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/Credits.html -------------------------------------------------------------------------------- /ru.lproj/Equalizer.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/Equalizer.strings -------------------------------------------------------------------------------- /ru.lproj/Feedback.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/Feedback.strings -------------------------------------------------------------------------------- /ru.lproj/FileTree.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/FileTree.strings -------------------------------------------------------------------------------- /ru.lproj/InfoInspector.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/InfoInspector.strings -------------------------------------------------------------------------------- /ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /ru.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /ru.lproj/LyricsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/LyricsWindow.strings -------------------------------------------------------------------------------- /ru.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/MainMenu.strings -------------------------------------------------------------------------------- /ru.lproj/OpenURLPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/OpenURLPanel.strings -------------------------------------------------------------------------------- /ru.lproj/SpectrumWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/SpectrumWindow.strings -------------------------------------------------------------------------------- /ru.lproj/SpotlightPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/ru.lproj/SpotlightPanel.strings -------------------------------------------------------------------------------- /sf.play.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/sf.play.pdf -------------------------------------------------------------------------------- /tr.lproj/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/Credits.html -------------------------------------------------------------------------------- /tr.lproj/Equalizer.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/Equalizer.strings -------------------------------------------------------------------------------- /tr.lproj/Feedback.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/Feedback.strings -------------------------------------------------------------------------------- /tr.lproj/FileTree.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/FileTree.strings -------------------------------------------------------------------------------- /tr.lproj/InfoInspector.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/InfoInspector.strings -------------------------------------------------------------------------------- /tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /tr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /tr.lproj/LyricsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/LyricsWindow.strings -------------------------------------------------------------------------------- /tr.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/MainMenu.strings -------------------------------------------------------------------------------- /tr.lproj/OpenURLPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/OpenURLPanel.strings -------------------------------------------------------------------------------- /tr.lproj/SpectrumWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/SpectrumWindow.strings -------------------------------------------------------------------------------- /tr.lproj/SpotlightPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/losnoco/Cog/HEAD/tr.lproj/SpotlightPanel.strings --------------------------------------------------------------------------------