├── ABOUT-NLS ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── README.md ├── TODO.tasks ├── azure-pipelines.yml ├── cmake ├── CheckDIRSymbolExists.cmake ├── CheckPrototypeExists.cmake ├── CheckSTDC.cmake ├── DefaultDirs.cmake ├── FindGObjectIntrospection.cmake ├── GObjectIntrospectionMacros.cmake ├── MacroOptionalFindPackage.cmake ├── UnsetPkgConfig.cmake └── cmake_uninstall.cmake.in ├── config.h.cmake ├── docs ├── CMakeLists.txt └── reference │ ├── CMakeLists.txt │ └── libinstpatch-docs.xml ├── examples ├── create_sf2.c ├── create_sf2.py └── split_sfont.c ├── libinstpatch-1.0.pc.in ├── libinstpatch ├── CMakeLists.txt ├── IpatchBase.c ├── IpatchBase.h ├── IpatchContainer.c ├── IpatchContainer.h ├── IpatchContainer_notify.c ├── IpatchConvert_DLS2.c ├── IpatchConvert_DLS2.h ├── IpatchConvert_Gig.c ├── IpatchConvert_Gig.h ├── IpatchConvert_SF2.c ├── IpatchConvert_SF2.h ├── IpatchConvert_SLI.c ├── IpatchConvert_SLI.h ├── IpatchConverter.c ├── IpatchConverter.h ├── IpatchConverterSF2VoiceCache.c ├── IpatchConverterSF2VoiceCache.h ├── IpatchConverter_priv.h ├── IpatchDLS2.c ├── IpatchDLS2.h ├── IpatchDLS2Conn.c ├── IpatchDLS2Conn.h ├── IpatchDLS2Info.c ├── IpatchDLS2Info.h ├── IpatchDLS2Inst.c ├── IpatchDLS2Inst.h ├── IpatchDLS2Region.c ├── IpatchDLS2Region.h ├── IpatchDLS2Sample.c ├── IpatchDLS2Sample.h ├── IpatchDLSFile.c ├── IpatchDLSFile.h ├── IpatchDLSFile_priv.h ├── IpatchDLSReader.c ├── IpatchDLSReader.h ├── IpatchDLSWriter.c ├── IpatchDLSWriter.h ├── IpatchFile.c ├── IpatchFile.h ├── IpatchFileBuf.c ├── IpatchGig.c ├── IpatchGig.h ├── IpatchGigDimension.c ├── IpatchGigDimension.h ├── IpatchGigEffects.c ├── IpatchGigEffects.h ├── IpatchGigFile.c ├── IpatchGigFile.h ├── IpatchGigFile_priv.h ├── IpatchGigInst.c ├── IpatchGigInst.h ├── IpatchGigRegion.c ├── IpatchGigRegion.h ├── IpatchGigSample.c ├── IpatchGigSample.h ├── IpatchGigSubRegion.c ├── IpatchGigSubRegion.h ├── IpatchItem.c ├── IpatchItem.h ├── IpatchItemProp.c ├── IpatchIter.c ├── IpatchIter.h ├── IpatchList.c ├── IpatchList.h ├── IpatchParamProp.c ├── IpatchParamProp.h ├── IpatchPaste.c ├── IpatchPaste.h ├── IpatchRange.c ├── IpatchRange.h ├── IpatchRiff.c ├── IpatchRiff.h ├── IpatchSF2.c ├── IpatchSF2.h ├── IpatchSF2File.c ├── IpatchSF2File.h ├── IpatchSF2File_priv.h ├── IpatchSF2Gen.c ├── IpatchSF2Gen.h ├── IpatchSF2GenItem.c ├── IpatchSF2GenItem.h ├── IpatchSF2Gen_tables.c ├── IpatchSF2IZone.c ├── IpatchSF2IZone.h ├── IpatchSF2Inst.c ├── IpatchSF2Inst.h ├── IpatchSF2Mod.c ├── IpatchSF2Mod.h ├── IpatchSF2ModItem.c ├── IpatchSF2ModItem.h ├── IpatchSF2ModList.c ├── IpatchSF2ModList.h ├── IpatchSF2PZone.c ├── IpatchSF2PZone.h ├── IpatchSF2Preset.c ├── IpatchSF2Preset.h ├── IpatchSF2Reader.c ├── IpatchSF2Reader.h ├── IpatchSF2Sample.c ├── IpatchSF2Sample.h ├── IpatchSF2VoiceCache.c ├── IpatchSF2VoiceCache.h ├── IpatchSF2VoiceCache_DLS.c ├── IpatchSF2VoiceCache_DLS.h ├── IpatchSF2VoiceCache_Gig.c ├── IpatchSF2VoiceCache_Gig.h ├── IpatchSF2VoiceCache_SF2.c ├── IpatchSF2VoiceCache_SF2.h ├── IpatchSF2VoiceCache_SLI.c ├── IpatchSF2VoiceCache_SLI.h ├── IpatchSF2VoiceCache_VBank.c ├── IpatchSF2VoiceCache_VBank.h ├── IpatchSF2Writer.c ├── IpatchSF2Writer.h ├── IpatchSF2Zone.c ├── IpatchSF2Zone.h ├── IpatchSLI.c ├── IpatchSLI.h ├── IpatchSLIFile.c ├── IpatchSLIFile.h ├── IpatchSLIFile_priv.h ├── IpatchSLIInst.c ├── IpatchSLIInst.h ├── IpatchSLIInst_CatMaps.c ├── IpatchSLIReader.c ├── IpatchSLIReader.h ├── IpatchSLISample.c ├── IpatchSLISample.h ├── IpatchSLIWriter.c ├── IpatchSLIWriter.h ├── IpatchSLIZone.c ├── IpatchSLIZone.h ├── IpatchSample.c ├── IpatchSample.h ├── IpatchSampleData.c ├── IpatchSampleData.h ├── IpatchSampleList.c ├── IpatchSampleList.h ├── IpatchSampleStore.c ├── IpatchSampleStore.h ├── IpatchSampleStoreCache.c ├── IpatchSampleStoreCache.h ├── IpatchSampleStoreFile.c ├── IpatchSampleStoreFile.h ├── IpatchSampleStoreRam.c ├── IpatchSampleStoreRam.h ├── IpatchSampleStoreRom.c ├── IpatchSampleStoreRom.h ├── IpatchSampleStoreSndFile.c ├── IpatchSampleStoreSndFile.h ├── IpatchSampleStoreSplit24.c ├── IpatchSampleStoreSplit24.h ├── IpatchSampleStoreSwap.c ├── IpatchSampleStoreSwap.h ├── IpatchSampleStoreVirtual.c ├── IpatchSampleStoreVirtual.h ├── IpatchSampleTransform.c ├── IpatchSampleTransform.h ├── IpatchSndFile.c ├── IpatchSndFile.h ├── IpatchState.c ├── IpatchState.h ├── IpatchStateGroup.c ├── IpatchStateGroup.h ├── IpatchStateItem.c ├── IpatchStateItem.h ├── IpatchState_types.c ├── IpatchState_types.h ├── IpatchTypeProp.c ├── IpatchTypeProp.h ├── IpatchUnit.c ├── IpatchUnit.h ├── IpatchUnit_DLS.c ├── IpatchUnit_DLS.h ├── IpatchUnit_SF2.c ├── IpatchUnit_SF2.h ├── IpatchUnit_generic.c ├── IpatchUnit_generic.h ├── IpatchVBank.c ├── IpatchVBank.h ├── IpatchVBankInst.c ├── IpatchVBankInst.h ├── IpatchVBankRegion.c ├── IpatchVBankRegion.h ├── IpatchVirtualContainer.c ├── IpatchVirtualContainer.h ├── IpatchVirtualContainer_types.c ├── IpatchVirtualContainer_types.h ├── IpatchXml.c ├── IpatchXml.h ├── IpatchXmlObject.c ├── IpatchXmlObject.h ├── builtin_enums.c ├── builtin_enums.h ├── compat.c ├── compat.h ├── gir_prog.c ├── i18n.h ├── ipatch_priv.h ├── libinstpatch.def ├── libinstpatch.h.in ├── marshals.list ├── md5.c ├── md5.h ├── misc.c ├── misc.h ├── sample.c ├── sample.h ├── util.c ├── util.h └── version.h.in ├── tests ├── Converter.py ├── SF2.py ├── SampleTransform.py ├── TODO ├── Test.py ├── sample_list_test.c └── sample_test.c └── utils ├── CMakeLists.txt ├── ipatch_convert.c └── riff_dump.c /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/ChangeLog -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/README.md -------------------------------------------------------------------------------- /TODO.tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/TODO.tasks -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /cmake/CheckDIRSymbolExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/cmake/CheckDIRSymbolExists.cmake -------------------------------------------------------------------------------- /cmake/CheckPrototypeExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/cmake/CheckPrototypeExists.cmake -------------------------------------------------------------------------------- /cmake/CheckSTDC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/cmake/CheckSTDC.cmake -------------------------------------------------------------------------------- /cmake/DefaultDirs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/cmake/DefaultDirs.cmake -------------------------------------------------------------------------------- /cmake/FindGObjectIntrospection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/cmake/FindGObjectIntrospection.cmake -------------------------------------------------------------------------------- /cmake/GObjectIntrospectionMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/cmake/GObjectIntrospectionMacros.cmake -------------------------------------------------------------------------------- /cmake/MacroOptionalFindPackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/cmake/MacroOptionalFindPackage.cmake -------------------------------------------------------------------------------- /cmake/UnsetPkgConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/cmake/UnsetPkgConfig.cmake -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/config.h.cmake -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/reference/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/docs/reference/CMakeLists.txt -------------------------------------------------------------------------------- /docs/reference/libinstpatch-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/docs/reference/libinstpatch-docs.xml -------------------------------------------------------------------------------- /examples/create_sf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/examples/create_sf2.c -------------------------------------------------------------------------------- /examples/create_sf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/examples/create_sf2.py -------------------------------------------------------------------------------- /examples/split_sfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/examples/split_sfont.c -------------------------------------------------------------------------------- /libinstpatch-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch-1.0.pc.in -------------------------------------------------------------------------------- /libinstpatch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/CMakeLists.txt -------------------------------------------------------------------------------- /libinstpatch/IpatchBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchBase.c -------------------------------------------------------------------------------- /libinstpatch/IpatchBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchBase.h -------------------------------------------------------------------------------- /libinstpatch/IpatchContainer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchContainer.c -------------------------------------------------------------------------------- /libinstpatch/IpatchContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchContainer.h -------------------------------------------------------------------------------- /libinstpatch/IpatchContainer_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchContainer_notify.c -------------------------------------------------------------------------------- /libinstpatch/IpatchConvert_DLS2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConvert_DLS2.c -------------------------------------------------------------------------------- /libinstpatch/IpatchConvert_DLS2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConvert_DLS2.h -------------------------------------------------------------------------------- /libinstpatch/IpatchConvert_Gig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConvert_Gig.c -------------------------------------------------------------------------------- /libinstpatch/IpatchConvert_Gig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConvert_Gig.h -------------------------------------------------------------------------------- /libinstpatch/IpatchConvert_SF2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConvert_SF2.c -------------------------------------------------------------------------------- /libinstpatch/IpatchConvert_SF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConvert_SF2.h -------------------------------------------------------------------------------- /libinstpatch/IpatchConvert_SLI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConvert_SLI.c -------------------------------------------------------------------------------- /libinstpatch/IpatchConvert_SLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConvert_SLI.h -------------------------------------------------------------------------------- /libinstpatch/IpatchConverter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConverter.c -------------------------------------------------------------------------------- /libinstpatch/IpatchConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConverter.h -------------------------------------------------------------------------------- /libinstpatch/IpatchConverterSF2VoiceCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConverterSF2VoiceCache.c -------------------------------------------------------------------------------- /libinstpatch/IpatchConverterSF2VoiceCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConverterSF2VoiceCache.h -------------------------------------------------------------------------------- /libinstpatch/IpatchConverter_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchConverter_priv.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2.c -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Conn.c -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Conn.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Info.c -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Info.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Inst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Inst.c -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Inst.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Region.c -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Region.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Sample.c -------------------------------------------------------------------------------- /libinstpatch/IpatchDLS2Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLS2Sample.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLSFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLSFile.c -------------------------------------------------------------------------------- /libinstpatch/IpatchDLSFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLSFile.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLSFile_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLSFile_priv.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLSReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLSReader.c -------------------------------------------------------------------------------- /libinstpatch/IpatchDLSReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLSReader.h -------------------------------------------------------------------------------- /libinstpatch/IpatchDLSWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLSWriter.c -------------------------------------------------------------------------------- /libinstpatch/IpatchDLSWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchDLSWriter.h -------------------------------------------------------------------------------- /libinstpatch/IpatchFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchFile.c -------------------------------------------------------------------------------- /libinstpatch/IpatchFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchFile.h -------------------------------------------------------------------------------- /libinstpatch/IpatchFileBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchFileBuf.c -------------------------------------------------------------------------------- /libinstpatch/IpatchGig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGig.c -------------------------------------------------------------------------------- /libinstpatch/IpatchGig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGig.h -------------------------------------------------------------------------------- /libinstpatch/IpatchGigDimension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigDimension.c -------------------------------------------------------------------------------- /libinstpatch/IpatchGigDimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigDimension.h -------------------------------------------------------------------------------- /libinstpatch/IpatchGigEffects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigEffects.c -------------------------------------------------------------------------------- /libinstpatch/IpatchGigEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigEffects.h -------------------------------------------------------------------------------- /libinstpatch/IpatchGigFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigFile.c -------------------------------------------------------------------------------- /libinstpatch/IpatchGigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigFile.h -------------------------------------------------------------------------------- /libinstpatch/IpatchGigFile_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigFile_priv.h -------------------------------------------------------------------------------- /libinstpatch/IpatchGigInst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigInst.c -------------------------------------------------------------------------------- /libinstpatch/IpatchGigInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigInst.h -------------------------------------------------------------------------------- /libinstpatch/IpatchGigRegion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigRegion.c -------------------------------------------------------------------------------- /libinstpatch/IpatchGigRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigRegion.h -------------------------------------------------------------------------------- /libinstpatch/IpatchGigSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigSample.c -------------------------------------------------------------------------------- /libinstpatch/IpatchGigSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigSample.h -------------------------------------------------------------------------------- /libinstpatch/IpatchGigSubRegion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigSubRegion.c -------------------------------------------------------------------------------- /libinstpatch/IpatchGigSubRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchGigSubRegion.h -------------------------------------------------------------------------------- /libinstpatch/IpatchItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchItem.c -------------------------------------------------------------------------------- /libinstpatch/IpatchItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchItem.h -------------------------------------------------------------------------------- /libinstpatch/IpatchItemProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchItemProp.c -------------------------------------------------------------------------------- /libinstpatch/IpatchIter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchIter.c -------------------------------------------------------------------------------- /libinstpatch/IpatchIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchIter.h -------------------------------------------------------------------------------- /libinstpatch/IpatchList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchList.c -------------------------------------------------------------------------------- /libinstpatch/IpatchList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchList.h -------------------------------------------------------------------------------- /libinstpatch/IpatchParamProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchParamProp.c -------------------------------------------------------------------------------- /libinstpatch/IpatchParamProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchParamProp.h -------------------------------------------------------------------------------- /libinstpatch/IpatchPaste.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchPaste.c -------------------------------------------------------------------------------- /libinstpatch/IpatchPaste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchPaste.h -------------------------------------------------------------------------------- /libinstpatch/IpatchRange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchRange.c -------------------------------------------------------------------------------- /libinstpatch/IpatchRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchRange.h -------------------------------------------------------------------------------- /libinstpatch/IpatchRiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchRiff.c -------------------------------------------------------------------------------- /libinstpatch/IpatchRiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchRiff.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2File.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2File.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2File.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2File_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2File_priv.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Gen.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Gen.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2GenItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2GenItem.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2GenItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2GenItem.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Gen_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Gen_tables.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2IZone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2IZone.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2IZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2IZone.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Inst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Inst.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Inst.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Mod.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Mod.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2ModItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2ModItem.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2ModItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2ModItem.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2ModList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2ModList.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2ModList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2ModList.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2PZone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2PZone.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2PZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2PZone.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Preset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Preset.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Preset.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Reader.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Reader.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Sample.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Sample.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_DLS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_DLS.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_DLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_DLS.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_Gig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_Gig.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_Gig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_Gig.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_SF2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_SF2.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_SF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_SF2.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_SLI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_SLI.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_SLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_SLI.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_VBank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_VBank.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2VoiceCache_VBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2VoiceCache_VBank.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Writer.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Writer.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Zone.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSF2Zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSF2Zone.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSLI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLI.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLI.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIFile.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIFile.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIFile_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIFile_priv.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIInst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIInst.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIInst.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIInst_CatMaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIInst_CatMaps.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIReader.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIReader.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSLISample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLISample.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSLISample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLISample.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIWriter.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIWriter.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIZone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIZone.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSLIZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSLIZone.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSample.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSample.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleData.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleData.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleList.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleList.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStore.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStore.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreCache.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreCache.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreFile.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreFile.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreRam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreRam.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreRam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreRam.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreRom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreRom.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreRom.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreSndFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreSndFile.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreSndFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreSndFile.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreSplit24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreSplit24.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreSplit24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreSplit24.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreSwap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreSwap.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreSwap.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreVirtual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreVirtual.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleStoreVirtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleStoreVirtual.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleTransform.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSampleTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSampleTransform.h -------------------------------------------------------------------------------- /libinstpatch/IpatchSndFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSndFile.c -------------------------------------------------------------------------------- /libinstpatch/IpatchSndFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchSndFile.h -------------------------------------------------------------------------------- /libinstpatch/IpatchState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchState.c -------------------------------------------------------------------------------- /libinstpatch/IpatchState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchState.h -------------------------------------------------------------------------------- /libinstpatch/IpatchStateGroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchStateGroup.c -------------------------------------------------------------------------------- /libinstpatch/IpatchStateGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchStateGroup.h -------------------------------------------------------------------------------- /libinstpatch/IpatchStateItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchStateItem.c -------------------------------------------------------------------------------- /libinstpatch/IpatchStateItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchStateItem.h -------------------------------------------------------------------------------- /libinstpatch/IpatchState_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchState_types.c -------------------------------------------------------------------------------- /libinstpatch/IpatchState_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchState_types.h -------------------------------------------------------------------------------- /libinstpatch/IpatchTypeProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchTypeProp.c -------------------------------------------------------------------------------- /libinstpatch/IpatchTypeProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchTypeProp.h -------------------------------------------------------------------------------- /libinstpatch/IpatchUnit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchUnit.c -------------------------------------------------------------------------------- /libinstpatch/IpatchUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchUnit.h -------------------------------------------------------------------------------- /libinstpatch/IpatchUnit_DLS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchUnit_DLS.c -------------------------------------------------------------------------------- /libinstpatch/IpatchUnit_DLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchUnit_DLS.h -------------------------------------------------------------------------------- /libinstpatch/IpatchUnit_SF2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchUnit_SF2.c -------------------------------------------------------------------------------- /libinstpatch/IpatchUnit_SF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchUnit_SF2.h -------------------------------------------------------------------------------- /libinstpatch/IpatchUnit_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchUnit_generic.c -------------------------------------------------------------------------------- /libinstpatch/IpatchUnit_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchUnit_generic.h -------------------------------------------------------------------------------- /libinstpatch/IpatchVBank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVBank.c -------------------------------------------------------------------------------- /libinstpatch/IpatchVBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVBank.h -------------------------------------------------------------------------------- /libinstpatch/IpatchVBankInst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVBankInst.c -------------------------------------------------------------------------------- /libinstpatch/IpatchVBankInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVBankInst.h -------------------------------------------------------------------------------- /libinstpatch/IpatchVBankRegion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVBankRegion.c -------------------------------------------------------------------------------- /libinstpatch/IpatchVBankRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVBankRegion.h -------------------------------------------------------------------------------- /libinstpatch/IpatchVirtualContainer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVirtualContainer.c -------------------------------------------------------------------------------- /libinstpatch/IpatchVirtualContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVirtualContainer.h -------------------------------------------------------------------------------- /libinstpatch/IpatchVirtualContainer_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVirtualContainer_types.c -------------------------------------------------------------------------------- /libinstpatch/IpatchVirtualContainer_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchVirtualContainer_types.h -------------------------------------------------------------------------------- /libinstpatch/IpatchXml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchXml.c -------------------------------------------------------------------------------- /libinstpatch/IpatchXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchXml.h -------------------------------------------------------------------------------- /libinstpatch/IpatchXmlObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchXmlObject.c -------------------------------------------------------------------------------- /libinstpatch/IpatchXmlObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/IpatchXmlObject.h -------------------------------------------------------------------------------- /libinstpatch/builtin_enums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/builtin_enums.c -------------------------------------------------------------------------------- /libinstpatch/builtin_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/builtin_enums.h -------------------------------------------------------------------------------- /libinstpatch/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/compat.c -------------------------------------------------------------------------------- /libinstpatch/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/compat.h -------------------------------------------------------------------------------- /libinstpatch/gir_prog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/gir_prog.c -------------------------------------------------------------------------------- /libinstpatch/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/i18n.h -------------------------------------------------------------------------------- /libinstpatch/ipatch_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/ipatch_priv.h -------------------------------------------------------------------------------- /libinstpatch/libinstpatch.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/libinstpatch.def -------------------------------------------------------------------------------- /libinstpatch/libinstpatch.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/libinstpatch.h.in -------------------------------------------------------------------------------- /libinstpatch/marshals.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/marshals.list -------------------------------------------------------------------------------- /libinstpatch/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/md5.c -------------------------------------------------------------------------------- /libinstpatch/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/md5.h -------------------------------------------------------------------------------- /libinstpatch/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/misc.c -------------------------------------------------------------------------------- /libinstpatch/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/misc.h -------------------------------------------------------------------------------- /libinstpatch/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/sample.c -------------------------------------------------------------------------------- /libinstpatch/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/sample.h -------------------------------------------------------------------------------- /libinstpatch/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/util.c -------------------------------------------------------------------------------- /libinstpatch/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/util.h -------------------------------------------------------------------------------- /libinstpatch/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/libinstpatch/version.h.in -------------------------------------------------------------------------------- /tests/Converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/tests/Converter.py -------------------------------------------------------------------------------- /tests/SF2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/tests/SF2.py -------------------------------------------------------------------------------- /tests/SampleTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/tests/SampleTransform.py -------------------------------------------------------------------------------- /tests/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/tests/TODO -------------------------------------------------------------------------------- /tests/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/tests/Test.py -------------------------------------------------------------------------------- /tests/sample_list_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/tests/sample_list_test.c -------------------------------------------------------------------------------- /tests/sample_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/tests/sample_test.c -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/ipatch_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/utils/ipatch_convert.c -------------------------------------------------------------------------------- /utils/riff_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami/libinstpatch/HEAD/utils/riff_dump.c --------------------------------------------------------------------------------