├── .DS_Store ├── .gitignore ├── License ├── README.md ├── SFZero.jucer ├── Source ├── ClickableLabel.cpp ├── ClickableLabel.h ├── SFZeroAudioProcessor.cpp ├── SFZeroAudioProcessor.h ├── SFZeroEditor.cpp └── SFZeroEditor.h ├── edit-all └── module └── SFZero ├── SFZero.cpp ├── SFZero.h └── SFZero ├── RIFF.cpp ├── RIFF.h ├── SF2.cpp ├── SF2.h ├── SF2Generator.cpp ├── SF2Generator.h ├── SF2Reader.cpp ├── SF2Reader.h ├── SF2Sound.cpp ├── SF2Sound.h ├── SFZDebug.cpp ├── SFZDebug.h ├── SFZEG.cpp ├── SFZEG.h ├── SFZReader.cpp ├── SFZReader.h ├── SFZRegion.cpp ├── SFZRegion.h ├── SFZSample.cpp ├── SFZSample.h ├── SFZSound.cpp ├── SFZSound.h ├── SFZSynth.cpp ├── SFZSynth.h ├── SFZVoice.cpp ├── SFZVoice.h ├── StringSlice.h ├── WinTypes.h └── sf2-chunks ├── generators.h ├── ibag.h ├── igen.h ├── imod.h ├── inst.h ├── iver.h ├── pbag.h ├── pgen.h ├── phdr.h ├── pmod.h └── shdr.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | JuceLibraryCode 2 | Builds 3 | tags 4 | 5 | -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/README.md -------------------------------------------------------------------------------- /SFZero.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/SFZero.jucer -------------------------------------------------------------------------------- /Source/ClickableLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/Source/ClickableLabel.cpp -------------------------------------------------------------------------------- /Source/ClickableLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/Source/ClickableLabel.h -------------------------------------------------------------------------------- /Source/SFZeroAudioProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/Source/SFZeroAudioProcessor.cpp -------------------------------------------------------------------------------- /Source/SFZeroAudioProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/Source/SFZeroAudioProcessor.h -------------------------------------------------------------------------------- /Source/SFZeroEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/Source/SFZeroEditor.cpp -------------------------------------------------------------------------------- /Source/SFZeroEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/Source/SFZeroEditor.h -------------------------------------------------------------------------------- /edit-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/edit-all -------------------------------------------------------------------------------- /module/SFZero/SFZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/RIFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/RIFF.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/RIFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/RIFF.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SF2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SF2.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SF2.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SF2Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SF2Generator.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SF2Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SF2Generator.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SF2Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SF2Reader.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SF2Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SF2Reader.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SF2Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SF2Sound.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SF2Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SF2Sound.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZDebug.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZDebug.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZEG.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZEG.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZReader.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZReader.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZRegion.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZRegion.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZSample.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZSample.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZSound.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZSound.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZSynth.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZSynth.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZVoice.cpp -------------------------------------------------------------------------------- /module/SFZero/SFZero/SFZVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/SFZVoice.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/StringSlice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/StringSlice.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/WinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/WinTypes.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/generators.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/ibag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/ibag.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/igen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/igen.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/imod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/imod.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/inst.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/iver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/iver.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/pbag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/pbag.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/pgen.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/phdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/phdr.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/pmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/pmod.h -------------------------------------------------------------------------------- /module/SFZero/SFZero/sf2-chunks/shdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevefolta/SFZero/HEAD/module/SFZero/SFZero/sf2-chunks/shdr.h --------------------------------------------------------------------------------