├── .github └── workflows │ ├── compute-checksum.yml │ ├── run-tests-macos-action.yml │ └── run-tests-windows-action.yml ├── .gitignore ├── CMakeLists.txt ├── Doxyfile.in ├── LICENSE.txt ├── README.md ├── RELEASE.md ├── audio-unit ├── CoreAudioSDK │ ├── CoreAudio │ │ ├── AudioCodecs │ │ │ └── ACPublic │ │ │ │ ├── ACBaseCodec.cpp │ │ │ │ ├── ACBaseCodec.h │ │ │ │ ├── ACCodec.cpp │ │ │ │ ├── ACCodec.h │ │ │ │ ├── ACCodecDispatchTypes.h │ │ │ │ ├── ACComponentResources.r │ │ │ │ ├── ACConditionalMacros.h │ │ │ │ ├── ACPlugInDispatch.cpp │ │ │ │ ├── ACPlugInDispatch.h │ │ │ │ ├── ACSimpleCodec.cpp │ │ │ │ ├── ACSimpleCodec.h │ │ │ │ ├── GetCodecBundle.cpp │ │ │ │ └── GetCodecBundle.h │ │ ├── AudioFile │ │ │ └── AFPublic │ │ │ │ ├── AudioFileComponentBase.cpp │ │ │ │ ├── AudioFileComponentBase.h │ │ │ │ ├── AudioFileFormat.cpp │ │ │ │ ├── AudioFileFormat.h │ │ │ │ ├── AudioFileObject.cpp │ │ │ │ ├── AudioFileObject.h │ │ │ │ ├── CompressedPacketTable.cpp │ │ │ │ ├── CompressedPacketTable.h │ │ │ │ ├── DataSource.cpp │ │ │ │ └── DataSource.h │ │ ├── AudioUnits │ │ │ └── AUPublic │ │ │ │ ├── AUBase │ │ │ │ ├── AUBase.cpp │ │ │ │ ├── AUBase.h │ │ │ │ ├── AUDispatch.cpp │ │ │ │ ├── AUDispatch.h │ │ │ │ ├── AUInputElement.cpp │ │ │ │ ├── AUInputElement.h │ │ │ │ ├── AUOutputElement.cpp │ │ │ │ ├── AUOutputElement.h │ │ │ │ ├── AUPlugInDispatch.cpp │ │ │ │ ├── AUPlugInDispatch.h │ │ │ │ ├── AUResources.r │ │ │ │ ├── AUScopeElement.cpp │ │ │ │ ├── AUScopeElement.h │ │ │ │ ├── ComponentBase.cpp │ │ │ │ └── ComponentBase.h │ │ │ │ ├── AUCarbonViewBase │ │ │ │ ├── AUCarbonViewBase.cpp │ │ │ │ ├── AUCarbonViewBase.h │ │ │ │ ├── AUCarbonViewControl.cpp │ │ │ │ ├── AUCarbonViewControl.h │ │ │ │ ├── AUCarbonViewDispatch.cpp │ │ │ │ ├── AUControlGroup.cpp │ │ │ │ ├── AUControlGroup.h │ │ │ │ ├── CarbonEventHandler.cpp │ │ │ │ └── CarbonEventHandler.h │ │ │ │ ├── AUInstrumentBase │ │ │ │ ├── AUInstrumentBase.cpp │ │ │ │ ├── AUInstrumentBase.h │ │ │ │ ├── LockFreeFIFO.h │ │ │ │ ├── MIDIControlHandler.h │ │ │ │ ├── SynthElement.cpp │ │ │ │ ├── SynthElement.h │ │ │ │ ├── SynthEvent.h │ │ │ │ ├── SynthNote.cpp │ │ │ │ ├── SynthNote.h │ │ │ │ ├── SynthNoteList.cpp │ │ │ │ └── SynthNoteList.h │ │ │ │ ├── AUViewBase │ │ │ │ └── AUViewLocalizedStringKeys.h │ │ │ │ ├── OtherBases │ │ │ │ ├── AUEffectBase.cpp │ │ │ │ ├── AUEffectBase.h │ │ │ │ ├── AUMIDIBase.cpp │ │ │ │ ├── AUMIDIBase.h │ │ │ │ ├── AUMIDIEffectBase.cpp │ │ │ │ ├── AUMIDIEffectBase.h │ │ │ │ ├── AUOutputBase.cpp │ │ │ │ ├── AUOutputBase.h │ │ │ │ ├── AUPannerBase.cpp │ │ │ │ ├── AUPannerBase.h │ │ │ │ ├── MusicDeviceBase.cpp │ │ │ │ └── MusicDeviceBase.h │ │ │ │ └── Utility │ │ │ │ ├── AUBaseHelper.cpp │ │ │ │ ├── AUBaseHelper.h │ │ │ │ ├── AUBuffer.cpp │ │ │ │ ├── AUBuffer.h │ │ │ │ ├── AUInputFormatConverter.h │ │ │ │ ├── AUMIDIDefs.h │ │ │ │ ├── AUSilentTimeout.h │ │ │ │ ├── AUTimestampGenerator.cpp │ │ │ │ └── AUTimestampGenerator.h │ │ └── PublicUtility │ │ │ ├── AUOutputBL.cpp │ │ │ ├── AUOutputBL.h │ │ │ ├── AUParamInfo.cpp │ │ │ ├── AUParamInfo.h │ │ │ ├── CAAUMIDIMap.cpp │ │ │ ├── CAAUMIDIMap.h │ │ │ ├── CAAUMIDIMapManager.cpp │ │ │ ├── CAAUMIDIMapManager.h │ │ │ ├── CAAUParameter.cpp │ │ │ ├── CAAUParameter.h │ │ │ ├── CAAUProcessor.cpp │ │ │ ├── CAAUProcessor.h │ │ │ ├── CAAtomic.h │ │ │ ├── CAAtomicStack.h │ │ │ ├── CAAudioBufferList.cpp │ │ │ ├── CAAudioBufferList.h │ │ │ ├── CAAudioChannelLayout.cpp │ │ │ ├── CAAudioChannelLayout.h │ │ │ ├── CAAudioChannelLayoutObject.cpp │ │ │ ├── CAAudioFileFormats.cpp │ │ │ ├── CAAudioFileFormats.h │ │ │ ├── CAAudioTimeStamp.cpp │ │ │ ├── CAAudioTimeStamp.h │ │ │ ├── CAAudioUnit.cpp │ │ │ ├── CAAudioUnit.h │ │ │ ├── CAAudioUnitOutputCapturer.h │ │ │ ├── CAAudioValueRange.cpp │ │ │ ├── CAAudioValueRange.h │ │ │ ├── CAAutoDisposer.h │ │ │ ├── CABitOperations.h │ │ │ ├── CABool.h │ │ │ ├── CABufferList.cpp │ │ │ ├── CABufferList.h │ │ │ ├── CABundleLocker.cpp │ │ │ ├── CABundleLocker.h │ │ │ ├── CAByteOrder.h │ │ │ ├── CACFArray.cpp │ │ │ ├── CACFArray.h │ │ │ ├── CACFData.h │ │ │ ├── CACFDictionary.cpp │ │ │ ├── CACFDictionary.h │ │ │ ├── CACFDistributedNotification.cpp │ │ │ ├── CACFDistributedNotification.h │ │ │ ├── CACFMachPort.cpp │ │ │ ├── CACFMachPort.h │ │ │ ├── CACFMessagePort.cpp │ │ │ ├── CACFMessagePort.h │ │ │ ├── CACFNumber.cpp │ │ │ ├── CACFNumber.h │ │ │ ├── CACFObject.h │ │ │ ├── CACFPlugIn.h │ │ │ ├── CACFPreferences.cpp │ │ │ ├── CACFPreferences.h │ │ │ ├── CACFString.cpp │ │ │ ├── CACFString.h │ │ │ ├── CAComponent.cpp │ │ │ ├── CAComponent.h │ │ │ ├── CAComponentDescription.cpp │ │ │ ├── CAComponentDescription.h │ │ │ ├── CADebugMacros.cpp │ │ │ ├── CADebugMacros.h │ │ │ ├── CADebugPrintf.cpp │ │ │ ├── CADebugPrintf.h │ │ │ ├── CADebugger.cpp │ │ │ ├── CADebugger.h │ │ │ ├── CAException.h │ │ │ ├── CAExtAudioFile.h │ │ │ ├── CAFilePathUtils.cpp │ │ │ ├── CAFilePathUtils.h │ │ │ ├── CAGuard.cpp │ │ │ ├── CAGuard.h │ │ │ ├── CAHALAudioDevice.cpp │ │ │ ├── CAHALAudioDevice.h │ │ │ ├── CAHALAudioObject.cpp │ │ │ ├── CAHALAudioObject.h │ │ │ ├── CAHALAudioStream.cpp │ │ │ ├── CAHALAudioStream.h │ │ │ ├── CAHALAudioSystemObject.cpp │ │ │ ├── CAHALAudioSystemObject.h │ │ │ ├── CAHostTimeBase.cpp │ │ │ ├── CAHostTimeBase.h │ │ │ ├── CALogMacros.h │ │ │ ├── CAMath.h │ │ │ ├── CAMixMap.h │ │ │ ├── CAMutex.cpp │ │ │ ├── CAMutex.h │ │ │ ├── CAPThread.cpp │ │ │ ├── CAPThread.h │ │ │ ├── CAPersistence.cpp │ │ │ ├── CAProcess.cpp │ │ │ ├── CAProcess.h │ │ │ ├── CAPropertyAddress.h │ │ │ ├── CAReferenceCounted.h │ │ │ ├── CARingBuffer.cpp │ │ │ ├── CARingBuffer.h │ │ │ ├── CASettingsStorage.cpp │ │ │ ├── CASettingsStorage.h │ │ │ ├── CASharedLibrary.cpp │ │ │ ├── CASharedLibrary.h │ │ │ ├── CASpectralProcessor.cpp │ │ │ ├── CASpectralProcessor.h │ │ │ ├── CAStreamBasicDescription.cpp │ │ │ ├── CAStreamBasicDescription.h │ │ │ ├── CAStreamRangedDescription.cpp │ │ │ ├── CAStreamRangedDescription.h │ │ │ ├── CAThreadSafeList.h │ │ │ ├── CATink.h │ │ │ ├── CATokenMap.h │ │ │ ├── CAVectorUnit.cpp │ │ │ ├── CAVectorUnit.h │ │ │ ├── CAVectorUnitTypes.h │ │ │ ├── CAVolumeCurve.cpp │ │ │ ├── CAVolumeCurve.h │ │ │ ├── CAXException.cpp │ │ │ ├── CAXException.h │ │ │ ├── MatrixMixerVolumes.cpp │ │ │ └── MatrixMixerVolumes.h │ └── Readme.rtf ├── auwrapper │ └── CMakeLists.txt └── plugin │ └── CMakeLists.txt ├── blank-plugin ├── .gitignore ├── .vscode │ ├── launch.json │ └── settings.json ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── archive │ ├── README-macOS_64bits.txt │ └── README-win_64bits.txt ├── audio-unit │ ├── Info.plist │ └── audiounitconfig.h ├── configure.py ├── fetch_jamba.cmake ├── mac │ └── Info.plist ├── resource │ ├── __Plugin__.rc │ ├── __Plugin__.uidesc │ ├── __snapshot_uuid___snapshot.png │ └── __snapshot_uuid___snapshot_2.0x.png ├── src │ └── cpp │ │ ├── GUI │ │ ├── __Plugin__Controller.cpp │ │ └── __Plugin__Controller.h │ │ ├── Plugin.h │ │ ├── RT │ │ ├── __Plugin__Processor.cpp │ │ └── __Plugin__Processor.h │ │ ├── __Plugin__CIDs.h │ │ ├── __Plugin___VST3.cpp │ │ └── version.h.in └── test │ └── cpp │ └── test-__Plugin__.cpp ├── cmake ├── JambaAddAllResources.cmake ├── JambaAddAudioUnitPlugin.cmake ├── JambaAddTest.cmake ├── JambaAddVST3Plugin.cmake ├── JambaAddVSTPlugin.cmake ├── JambaCreateArchive.cmake ├── JambaDevScript.cmake ├── JambaFetchContent.cmake ├── JambaFetchGoogleTest.cmake ├── JambaFetchVST3.cmake ├── JambaOptions.cmake ├── JambaSetArchitecture.cmake └── JambaSetupVST3.cmake ├── create-plugin.py ├── jamba-logo.svg ├── jamba-test-plugin ├── CMakeLists.txt ├── audio-unit │ ├── Info.plist │ └── audiounitconfig.h ├── configure.py ├── mac │ └── Info.plist ├── resource │ ├── JambaTestPlugin.rc │ ├── JambaTestPlugin.uidesc │ ├── button_2frames.png │ ├── button_3frames.png │ ├── button_4frames.png │ ├── image_2frames.png │ ├── image_3frames.png │ └── image_4frames.png └── src │ └── cpp │ ├── GUI │ ├── JTPTextButtonController.h │ ├── JambaTestPluginController.cpp │ └── JambaTestPluginController.h │ ├── JambaTestPluginCIDs.h │ ├── JambaTestPlugin_VST3.cpp │ ├── Model.h │ ├── Plugin.cpp │ ├── Plugin.h │ ├── RT │ ├── JambaTestPluginProcessor.cpp │ └── JambaTestPluginProcessor.h │ └── version.h.in ├── jamba.cmake ├── jamba_doxygen.css ├── scripts ├── jamba.bat.in ├── jamba.py.in └── jamba.sh.in ├── src ├── CMakeLists.txt └── cpp │ └── pongasoft │ ├── Utils │ ├── Clock │ │ └── Clock.h │ ├── Collection │ │ └── CircularBuffer.h │ ├── Concurrent │ │ ├── Concurrent.h │ │ └── SpinLock.h │ ├── Constants.h │ ├── Cpp17.h │ ├── Disposable.h │ ├── Lerp.h │ ├── Metaprogramming.h │ ├── Misc.h │ ├── Operators.h │ ├── StringUtils.cpp │ ├── StringUtils.h │ └── stl.h │ ├── VST │ ├── AudioBuffer.h │ ├── AudioUtils.h │ ├── Debug │ │ ├── ParamDisplay.cpp │ │ ├── ParamDisplay.h │ │ ├── ParamLine.cpp │ │ ├── ParamLine.h │ │ ├── ParamTable.cpp │ │ └── ParamTable.h │ ├── FObjectCx.cpp │ ├── FObjectCx.h │ ├── GUI │ │ ├── DrawContext.cpp │ │ ├── DrawContext.h │ │ ├── GUIController.cpp │ │ ├── GUIController.h │ │ ├── GUIState.cpp │ │ ├── GUIState.h │ │ ├── GUIUtils.h │ │ ├── IDialogHandler.h │ │ ├── LookAndFeel.h │ │ ├── ParamAwareViews.cpp │ │ ├── ParamAwareViews.h │ │ ├── Params │ │ │ ├── GUIJmbParameter.cpp │ │ │ ├── GUIJmbParameter.h │ │ │ ├── GUIOptionalParam.h │ │ │ ├── GUIParamCx.cpp │ │ │ ├── GUIParamCx.h │ │ │ ├── GUIParamCxAware.h │ │ │ ├── GUIParamCxAware.hpp │ │ │ ├── GUIParamCxMgr.cpp │ │ │ ├── GUIParamCxMgr.h │ │ │ ├── GUIParamCxMgr.hpp │ │ │ ├── GUIParamSerializers.h │ │ │ ├── GUIRawVstParameter.cpp │ │ │ ├── GUIRawVstParameter.h │ │ │ ├── GUIValParameter.h │ │ │ ├── GUIVstParameter.h │ │ │ ├── IGUIParameter.h │ │ │ ├── IGUIParameter.hpp │ │ │ ├── ParamAware.cpp │ │ │ ├── ParamAware.h │ │ │ ├── ParamAware.hpp │ │ │ └── VstParameters.h │ │ ├── Types.h │ │ └── Views │ │ │ ├── CustomControlView.cpp │ │ │ ├── CustomControlView.h │ │ │ ├── CustomController.h │ │ │ ├── CustomView.cpp │ │ │ ├── CustomView.h │ │ │ ├── CustomViewCreator.h │ │ │ ├── CustomViewFactory.cpp │ │ │ ├── CustomViewFactory.h │ │ │ ├── CustomViewLifecycle.h │ │ │ ├── DebugParamDisplayView.h │ │ │ ├── DiscreteButtonView.cpp │ │ │ ├── DiscreteButtonView.h │ │ │ ├── GlobalKeyboardHook.h │ │ │ ├── ImageView.cpp │ │ │ ├── ImageView.h │ │ │ ├── JambaViews.h │ │ │ ├── MomentaryButtonView.cpp │ │ │ ├── MomentaryButtonView.h │ │ │ ├── ParamDisplayView.cpp │ │ │ ├── ParamDisplayView.h │ │ │ ├── ParamImageView.cpp │ │ │ ├── ParamImageView.h │ │ │ ├── PluginAccessor.h │ │ │ ├── ScrollbarView.cpp │ │ │ ├── ScrollbarView.h │ │ │ ├── SelfContainedViewListener.h │ │ │ ├── StateAware.h │ │ │ ├── StepButtonView.cpp │ │ │ ├── StepButtonView.h │ │ │ ├── StepPadView.cpp │ │ │ ├── StepPadView.h │ │ │ ├── SwitchViewContainer.cpp │ │ │ ├── SwitchViewContainer.h │ │ │ ├── TextButtonView.cpp │ │ │ ├── TextButtonView.h │ │ │ ├── TextEditView.cpp │ │ │ ├── TextEditView.h │ │ │ ├── ToggleButtonView.cpp │ │ │ └── ToggleButtonView.h │ ├── Jamba.md │ ├── MessageHandler.cpp │ ├── MessageHandler.h │ ├── MessageProducer.h │ ├── Messaging.h │ ├── NormalizedState.cpp │ ├── NormalizedState.h │ ├── ParamConverters.h │ ├── ParamDef.h │ ├── ParamSerializers.h │ ├── Parameters.cpp │ ├── Parameters.h │ ├── PluginFactory.h │ ├── RT │ │ ├── RTJmbInParameter.h │ │ ├── RTJmbOutParameter.h │ │ ├── RTParameter.cpp │ │ ├── RTParameter.h │ │ ├── RTProcessor.cpp │ │ ├── RTProcessor.h │ │ ├── RTState.cpp │ │ └── RTState.h │ ├── SampleRateBasedClock.h │ ├── Timer.h │ ├── Types.h │ └── VstUtils │ │ ├── ExpiringDataCache.h │ │ ├── FastWriteMemoryStream.cpp │ │ ├── FastWriteMemoryStream.h │ │ ├── ReadOnlyMemoryStream.cpp │ │ ├── ReadOnlyMemoryStream.h │ │ └── Utils.h │ └── logging │ ├── jamba_version.h.in │ ├── logging.h │ ├── loguru.cpp │ └── loguru.hpp ├── test └── cpp │ └── pongasoft │ ├── Utils │ ├── Collection │ │ └── test-CircularBuffer.cpp │ ├── Concurrent │ │ ├── test-concurrent.cpp │ │ └── test-concurrent_lockfree.cpp │ ├── test-Lerp.cpp │ └── test-StringUtils.cpp │ └── VST │ ├── GUI │ ├── Params │ │ ├── test-GUIParameters.cpp │ │ └── test-ParamAware.cpp │ └── Views │ │ ├── test-CustomViewCreator.cpp │ │ └── test-SelfContainedViewListener.cpp │ ├── Utils │ ├── test-FastWriteMemoryStream.cpp │ ├── test-ReadOnlyMemoryStream.cpp │ └── test-Utils.cpp │ ├── test-AudioBuffers.cpp │ ├── test-AudioUtils.cpp │ ├── test-ParamConverters.cpp │ └── test-SampleRateBasedClock.cpp ├── todo.txt ├── vst3sdk_3.7.12 └── vstgui4 │ └── vstgui │ └── lib │ └── platform │ └── win32 │ └── win32resourcestream.cpp ├── vst3sdk_3.7.13 └── vstgui4 │ └── vstgui │ └── lib │ └── platform │ └── win32 │ └── win32resourcestream.cpp ├── vst3sdk_3.7.14 └── vstgui4 │ └── vstgui │ └── lib │ └── platform │ └── win32 │ └── win32resourcestream.cpp ├── vst3sdk_3.7.5 ├── cmake │ └── modules │ │ └── SMTG_PlatformToolset.cmake └── vstgui4 │ └── vstgui │ └── lib │ ├── platform │ └── win32 │ │ └── win32resourcestream.cpp │ └── vstguibase.h ├── vst3sdk_3.7.8 └── vstgui4 │ └── vstgui │ └── lib │ └── platform │ └── win32 │ └── win32resourcestream.cpp └── vst3sdk_3.8.0 └── vstgui4 └── vstgui └── lib └── platform └── win32 └── win32resourcestream.cpp /.github/workflows/compute-checksum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/.github/workflows/compute-checksum.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests-macos-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/.github/workflows/run-tests-macos-action.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests-windows-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/.github/workflows/run-tests-windows-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/RELEASE.md -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACBaseCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACBaseCodec.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACBaseCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACBaseCodec.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACCodec.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACCodec.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACCodecDispatchTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACCodecDispatchTypes.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACComponentResources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACComponentResources.r -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACConditionalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACConditionalMacros.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACPlugInDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACPlugInDispatch.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACPlugInDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACPlugInDispatch.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACSimpleCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACSimpleCodec.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACSimpleCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/ACSimpleCodec.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/GetCodecBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/GetCodecBundle.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/GetCodecBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioCodecs/ACPublic/GetCodecBundle.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileComponentBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileComponentBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileComponentBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileComponentBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileFormat.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileFormat.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileObject.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/AudioFileObject.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/CompressedPacketTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/CompressedPacketTable.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/CompressedPacketTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/CompressedPacketTable.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/DataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/DataSource.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/DataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioFile/AFPublic/DataSource.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUDispatch.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUInputElement.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUOutputElement.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUPlugInDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUPlugInDispatch.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUPlugInDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUPlugInDispatch.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUResources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUResources.r -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/AUScopeElement.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUBase/ComponentBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewControl.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewControl.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUCarbonViewDispatch.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUControlGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUControlGroup.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUControlGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/AUControlGroup.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/CarbonEventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/CarbonEventHandler.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/CarbonEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUCarbonViewBase/CarbonEventHandler.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/AUInstrumentBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/AUInstrumentBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/AUInstrumentBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/AUInstrumentBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/LockFreeFIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/LockFreeFIFO.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/MIDIControlHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/MIDIControlHandler.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthElement.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthElement.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthEvent.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthNote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthNote.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthNote.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthNoteList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthNoteList.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthNoteList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUInstrumentBase/SynthNoteList.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUViewBase/AUViewLocalizedStringKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/AUViewBase/AUViewLocalizedStringKeys.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUEffectBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUMIDIBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUMIDIBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUMIDIBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUMIDIBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUMIDIEffectBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUMIDIEffectBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUMIDIEffectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUMIDIEffectBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUOutputBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUOutputBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUOutputBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUOutputBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUPannerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUPannerBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUPannerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/AUPannerBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/MusicDeviceBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/MusicDeviceBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/MusicDeviceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/OtherBases/MusicDeviceBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUBaseHelper.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUInputFormatConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUInputFormatConverter.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUMIDIDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUMIDIDefs.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUSilentTimeout.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUTimestampGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUTimestampGenerator.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUTimestampGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/AudioUnits/AUPublic/Utility/AUTimestampGenerator.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/AUOutputBL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/AUOutputBL.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/AUOutputBL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/AUOutputBL.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/AUParamInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/AUParamInfo.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/AUParamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/AUParamInfo.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUMIDIMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUMIDIMap.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUMIDIMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUMIDIMap.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUMIDIMapManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUMIDIMapManager.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUMIDIMapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUMIDIMapManager.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUParameter.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUParameter.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUProcessor.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAUProcessor.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAtomic.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAtomicStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAtomicStack.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioBufferList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioBufferList.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioBufferList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioBufferList.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioChannelLayout.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioChannelLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioChannelLayout.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioChannelLayoutObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioChannelLayoutObject.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioFileFormats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioFileFormats.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioFileFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioFileFormats.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioTimeStamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioTimeStamp.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioTimeStamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioTimeStamp.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioUnit.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioUnit.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioUnitOutputCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioUnitOutputCapturer.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioValueRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioValueRange.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioValueRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAudioValueRange.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAutoDisposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAAutoDisposer.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABitOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABitOperations.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABool.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABufferList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABufferList.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABufferList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABufferList.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABundleLocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABundleLocker.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABundleLocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CABundleLocker.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAByteOrder.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFArray.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFArray.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFData.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFDictionary.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFDictionary.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFDistributedNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFDistributedNotification.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFDistributedNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFDistributedNotification.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFMachPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFMachPort.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFMachPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFMachPort.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFMessagePort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFMessagePort.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFMessagePort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFMessagePort.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFNumber.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFNumber.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFObject.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFPlugIn.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFPreferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFPreferences.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFPreferences.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFString.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CACFString.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAComponent.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAComponent.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAComponentDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAComponentDescription.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAComponentDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAComponentDescription.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugMacros.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugMacros.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugPrintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugPrintf.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugPrintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugPrintf.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugger.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CADebugger.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAException.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAExtAudioFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAExtAudioFile.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAFilePathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAFilePathUtils.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAFilePathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAFilePathUtils.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAGuard.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAGuard.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioDevice.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioDevice.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioObject.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioObject.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioStream.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioStream.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioSystemObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioSystemObject.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioSystemObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHALAudioSystemObject.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHostTimeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHostTimeBase.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHostTimeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAHostTimeBase.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CALogMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CALogMacros.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAMath.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAMixMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAMixMap.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAMutex.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAMutex.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAPThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAPThread.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAPThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAPThread.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAPersistence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAPersistence.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAProcess.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAProcess.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAPropertyAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAPropertyAddress.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAReferenceCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAReferenceCounted.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CARingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CARingBuffer.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CARingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CARingBuffer.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASettingsStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASettingsStorage.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASettingsStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASettingsStorage.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASharedLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASharedLibrary.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASharedLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASharedLibrary.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASpectralProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASpectralProcessor.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASpectralProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CASpectralProcessor.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAStreamBasicDescription.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAStreamBasicDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAStreamBasicDescription.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAStreamRangedDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAStreamRangedDescription.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAStreamRangedDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAStreamRangedDescription.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAThreadSafeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAThreadSafeList.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CATink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CATink.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CATokenMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CATokenMap.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVectorUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVectorUnit.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVectorUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVectorUnit.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVectorUnitTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVectorUnitTypes.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVolumeCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVolumeCurve.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVolumeCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAVolumeCurve.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAXException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAXException.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAXException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/CAXException.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/MatrixMixerVolumes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/MatrixMixerVolumes.cpp -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/MatrixMixerVolumes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/CoreAudio/PublicUtility/MatrixMixerVolumes.h -------------------------------------------------------------------------------- /audio-unit/CoreAudioSDK/Readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/CoreAudioSDK/Readme.rtf -------------------------------------------------------------------------------- /audio-unit/auwrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/auwrapper/CMakeLists.txt -------------------------------------------------------------------------------- /audio-unit/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/audio-unit/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /blank-plugin/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | build -------------------------------------------------------------------------------- /blank-plugin/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/.vscode/launch.json -------------------------------------------------------------------------------- /blank-plugin/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.generator": "Visual Studio 17 2022" 3 | } -------------------------------------------------------------------------------- /blank-plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/CMakeLists.txt -------------------------------------------------------------------------------- /blank-plugin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/LICENSE.txt -------------------------------------------------------------------------------- /blank-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/README.md -------------------------------------------------------------------------------- /blank-plugin/archive/README-macOS_64bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/archive/README-macOS_64bits.txt -------------------------------------------------------------------------------- /blank-plugin/archive/README-win_64bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/archive/README-win_64bits.txt -------------------------------------------------------------------------------- /blank-plugin/audio-unit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/audio-unit/Info.plist -------------------------------------------------------------------------------- /blank-plugin/audio-unit/audiounitconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/audio-unit/audiounitconfig.h -------------------------------------------------------------------------------- /blank-plugin/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/configure.py -------------------------------------------------------------------------------- /blank-plugin/fetch_jamba.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/fetch_jamba.cmake -------------------------------------------------------------------------------- /blank-plugin/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/mac/Info.plist -------------------------------------------------------------------------------- /blank-plugin/resource/__Plugin__.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/resource/__Plugin__.rc -------------------------------------------------------------------------------- /blank-plugin/resource/__Plugin__.uidesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/resource/__Plugin__.uidesc -------------------------------------------------------------------------------- /blank-plugin/resource/__snapshot_uuid___snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/resource/__snapshot_uuid___snapshot.png -------------------------------------------------------------------------------- /blank-plugin/resource/__snapshot_uuid___snapshot_2.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/resource/__snapshot_uuid___snapshot_2.0x.png -------------------------------------------------------------------------------- /blank-plugin/src/cpp/GUI/__Plugin__Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/src/cpp/GUI/__Plugin__Controller.cpp -------------------------------------------------------------------------------- /blank-plugin/src/cpp/GUI/__Plugin__Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/src/cpp/GUI/__Plugin__Controller.h -------------------------------------------------------------------------------- /blank-plugin/src/cpp/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/src/cpp/Plugin.h -------------------------------------------------------------------------------- /blank-plugin/src/cpp/RT/__Plugin__Processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/src/cpp/RT/__Plugin__Processor.cpp -------------------------------------------------------------------------------- /blank-plugin/src/cpp/RT/__Plugin__Processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/src/cpp/RT/__Plugin__Processor.h -------------------------------------------------------------------------------- /blank-plugin/src/cpp/__Plugin__CIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/src/cpp/__Plugin__CIDs.h -------------------------------------------------------------------------------- /blank-plugin/src/cpp/__Plugin___VST3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/src/cpp/__Plugin___VST3.cpp -------------------------------------------------------------------------------- /blank-plugin/src/cpp/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/src/cpp/version.h.in -------------------------------------------------------------------------------- /blank-plugin/test/cpp/test-__Plugin__.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/blank-plugin/test/cpp/test-__Plugin__.cpp -------------------------------------------------------------------------------- /cmake/JambaAddAllResources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaAddAllResources.cmake -------------------------------------------------------------------------------- /cmake/JambaAddAudioUnitPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaAddAudioUnitPlugin.cmake -------------------------------------------------------------------------------- /cmake/JambaAddTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaAddTest.cmake -------------------------------------------------------------------------------- /cmake/JambaAddVST3Plugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaAddVST3Plugin.cmake -------------------------------------------------------------------------------- /cmake/JambaAddVSTPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaAddVSTPlugin.cmake -------------------------------------------------------------------------------- /cmake/JambaCreateArchive.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaCreateArchive.cmake -------------------------------------------------------------------------------- /cmake/JambaDevScript.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaDevScript.cmake -------------------------------------------------------------------------------- /cmake/JambaFetchContent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaFetchContent.cmake -------------------------------------------------------------------------------- /cmake/JambaFetchGoogleTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaFetchGoogleTest.cmake -------------------------------------------------------------------------------- /cmake/JambaFetchVST3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaFetchVST3.cmake -------------------------------------------------------------------------------- /cmake/JambaOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaOptions.cmake -------------------------------------------------------------------------------- /cmake/JambaSetArchitecture.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaSetArchitecture.cmake -------------------------------------------------------------------------------- /cmake/JambaSetupVST3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/cmake/JambaSetupVST3.cmake -------------------------------------------------------------------------------- /create-plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/create-plugin.py -------------------------------------------------------------------------------- /jamba-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-logo.svg -------------------------------------------------------------------------------- /jamba-test-plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/CMakeLists.txt -------------------------------------------------------------------------------- /jamba-test-plugin/audio-unit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/audio-unit/Info.plist -------------------------------------------------------------------------------- /jamba-test-plugin/audio-unit/audiounitconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/audio-unit/audiounitconfig.h -------------------------------------------------------------------------------- /jamba-test-plugin/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/configure.py -------------------------------------------------------------------------------- /jamba-test-plugin/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/mac/Info.plist -------------------------------------------------------------------------------- /jamba-test-plugin/resource/JambaTestPlugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/resource/JambaTestPlugin.rc -------------------------------------------------------------------------------- /jamba-test-plugin/resource/JambaTestPlugin.uidesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/resource/JambaTestPlugin.uidesc -------------------------------------------------------------------------------- /jamba-test-plugin/resource/button_2frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/resource/button_2frames.png -------------------------------------------------------------------------------- /jamba-test-plugin/resource/button_3frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/resource/button_3frames.png -------------------------------------------------------------------------------- /jamba-test-plugin/resource/button_4frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/resource/button_4frames.png -------------------------------------------------------------------------------- /jamba-test-plugin/resource/image_2frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/resource/image_2frames.png -------------------------------------------------------------------------------- /jamba-test-plugin/resource/image_3frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/resource/image_3frames.png -------------------------------------------------------------------------------- /jamba-test-plugin/resource/image_4frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/resource/image_4frames.png -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/GUI/JTPTextButtonController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/GUI/JTPTextButtonController.h -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/GUI/JambaTestPluginController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/GUI/JambaTestPluginController.cpp -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/GUI/JambaTestPluginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/GUI/JambaTestPluginController.h -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/JambaTestPluginCIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/JambaTestPluginCIDs.h -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/JambaTestPlugin_VST3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/JambaTestPlugin_VST3.cpp -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/Model.h -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/Plugin.cpp -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/Plugin.h -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/RT/JambaTestPluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/RT/JambaTestPluginProcessor.cpp -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/RT/JambaTestPluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/RT/JambaTestPluginProcessor.h -------------------------------------------------------------------------------- /jamba-test-plugin/src/cpp/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba-test-plugin/src/cpp/version.h.in -------------------------------------------------------------------------------- /jamba.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba.cmake -------------------------------------------------------------------------------- /jamba_doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/jamba_doxygen.css -------------------------------------------------------------------------------- /scripts/jamba.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/scripts/jamba.bat.in -------------------------------------------------------------------------------- /scripts/jamba.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/scripts/jamba.py.in -------------------------------------------------------------------------------- /scripts/jamba.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/scripts/jamba.sh.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Clock/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Clock/Clock.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Collection/CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Collection/CircularBuffer.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Concurrent/Concurrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Concurrent/Concurrent.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Concurrent/SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Concurrent/SpinLock.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Constants.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Cpp17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Cpp17.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Disposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Disposable.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Lerp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Lerp.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Metaprogramming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Metaprogramming.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Misc.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/Operators.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/StringUtils.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/StringUtils.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/Utils/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/Utils/stl.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/AudioBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/AudioBuffer.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/AudioUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/AudioUtils.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Debug/ParamDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Debug/ParamDisplay.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Debug/ParamDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Debug/ParamDisplay.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Debug/ParamLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Debug/ParamLine.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Debug/ParamLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Debug/ParamLine.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Debug/ParamTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Debug/ParamTable.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Debug/ParamTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Debug/ParamTable.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/FObjectCx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/FObjectCx.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/FObjectCx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/FObjectCx.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/DrawContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/DrawContext.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/DrawContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/DrawContext.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/GUIController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/GUIController.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/GUIController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/GUIController.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/GUIState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/GUIState.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/GUIState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/GUIState.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/GUIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/GUIUtils.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/IDialogHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/IDialogHandler.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/LookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/LookAndFeel.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/ParamAwareViews.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/ParamAwareViews.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/ParamAwareViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/ParamAwareViews.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIJmbParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIJmbParameter.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIJmbParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIJmbParameter.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIOptionalParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIOptionalParam.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIParamCx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIParamCx.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIParamCx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIParamCx.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIParamCxAware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIParamCxAware.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIParamCxAware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIParamCxAware.hpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIParamCxMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIParamCxMgr.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIParamCxMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIParamCxMgr.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIParamCxMgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIParamCxMgr.hpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIParamSerializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIParamSerializers.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIRawVstParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIRawVstParameter.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIRawVstParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIRawVstParameter.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIValParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIValParameter.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/GUIVstParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/GUIVstParameter.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/IGUIParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/IGUIParameter.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/IGUIParameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/IGUIParameter.hpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/ParamAware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/ParamAware.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/ParamAware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/ParamAware.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/ParamAware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/ParamAware.hpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Params/VstParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Params/VstParameters.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Types.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/CustomControlView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/CustomControlView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/CustomControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/CustomControlView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/CustomController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/CustomController.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/CustomView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/CustomView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/CustomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/CustomView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/CustomViewCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/CustomViewCreator.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/CustomViewFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/CustomViewFactory.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/CustomViewFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/CustomViewFactory.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/CustomViewLifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/CustomViewLifecycle.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/DebugParamDisplayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/DebugParamDisplayView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/DiscreteButtonView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/DiscreteButtonView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/DiscreteButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/DiscreteButtonView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/GlobalKeyboardHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/GlobalKeyboardHook.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ImageView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ImageView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/JambaViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/JambaViews.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/MomentaryButtonView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/MomentaryButtonView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/MomentaryButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/MomentaryButtonView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ParamDisplayView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ParamDisplayView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ParamDisplayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ParamDisplayView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ParamImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ParamImageView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ParamImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ParamImageView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/PluginAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/PluginAccessor.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ScrollbarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ScrollbarView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ScrollbarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ScrollbarView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/SelfContainedViewListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/SelfContainedViewListener.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/StateAware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/StateAware.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/StepButtonView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/StepButtonView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/StepButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/StepButtonView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/StepPadView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/StepPadView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/StepPadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/StepPadView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/SwitchViewContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/SwitchViewContainer.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/SwitchViewContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/SwitchViewContainer.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/TextButtonView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/TextButtonView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/TextButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/TextButtonView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/TextEditView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/TextEditView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/TextEditView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/TextEditView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ToggleButtonView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ToggleButtonView.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/GUI/Views/ToggleButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/GUI/Views/ToggleButtonView.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Jamba.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Jamba.md -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/MessageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/MessageHandler.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/MessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/MessageHandler.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/MessageProducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/MessageProducer.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Messaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Messaging.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/NormalizedState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/NormalizedState.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/NormalizedState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/NormalizedState.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/ParamConverters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/ParamConverters.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/ParamDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/ParamDef.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/ParamSerializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/ParamSerializers.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Parameters.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Parameters.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/PluginFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/PluginFactory.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/RT/RTJmbInParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/RT/RTJmbInParameter.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/RT/RTJmbOutParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/RT/RTJmbOutParameter.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/RT/RTParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/RT/RTParameter.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/RT/RTParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/RT/RTParameter.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/RT/RTProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/RT/RTProcessor.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/RT/RTProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/RT/RTProcessor.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/RT/RTState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/RT/RTState.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/RT/RTState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/RT/RTState.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/SampleRateBasedClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/SampleRateBasedClock.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Timer.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/Types.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/VstUtils/ExpiringDataCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/VstUtils/ExpiringDataCache.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/VstUtils/FastWriteMemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/VstUtils/FastWriteMemoryStream.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/VstUtils/FastWriteMemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/VstUtils/FastWriteMemoryStream.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/VstUtils/ReadOnlyMemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/VstUtils/ReadOnlyMemoryStream.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/VstUtils/ReadOnlyMemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/VstUtils/ReadOnlyMemoryStream.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/VST/VstUtils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/VST/VstUtils/Utils.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/logging/jamba_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/logging/jamba_version.h.in -------------------------------------------------------------------------------- /src/cpp/pongasoft/logging/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/logging/logging.h -------------------------------------------------------------------------------- /src/cpp/pongasoft/logging/loguru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/logging/loguru.cpp -------------------------------------------------------------------------------- /src/cpp/pongasoft/logging/loguru.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/src/cpp/pongasoft/logging/loguru.hpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/Utils/Collection/test-CircularBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/Utils/Collection/test-CircularBuffer.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/Utils/Concurrent/test-concurrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/Utils/Concurrent/test-concurrent.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/Utils/Concurrent/test-concurrent_lockfree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/Utils/Concurrent/test-concurrent_lockfree.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/Utils/test-Lerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/Utils/test-Lerp.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/Utils/test-StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/Utils/test-StringUtils.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/GUI/Params/test-GUIParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/GUI/Params/test-GUIParameters.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/GUI/Params/test-ParamAware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/GUI/Params/test-ParamAware.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/GUI/Views/test-CustomViewCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/GUI/Views/test-CustomViewCreator.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/GUI/Views/test-SelfContainedViewListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/GUI/Views/test-SelfContainedViewListener.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/Utils/test-FastWriteMemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/Utils/test-FastWriteMemoryStream.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/Utils/test-ReadOnlyMemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/Utils/test-ReadOnlyMemoryStream.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/Utils/test-Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/Utils/test-Utils.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/test-AudioBuffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/test-AudioBuffers.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/test-AudioUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/test-AudioUtils.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/test-ParamConverters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/test-ParamConverters.cpp -------------------------------------------------------------------------------- /test/cpp/pongasoft/VST/test-SampleRateBasedClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/test/cpp/pongasoft/VST/test-SampleRateBasedClock.cpp -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- 1 | TODO 2 | ==== 3 | -------------------------------------------------------------------------------- /vst3sdk_3.7.12/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/vst3sdk_3.7.12/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp -------------------------------------------------------------------------------- /vst3sdk_3.7.13/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/vst3sdk_3.7.13/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp -------------------------------------------------------------------------------- /vst3sdk_3.7.14/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/vst3sdk_3.7.14/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp -------------------------------------------------------------------------------- /vst3sdk_3.7.5/cmake/modules/SMTG_PlatformToolset.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/vst3sdk_3.7.5/cmake/modules/SMTG_PlatformToolset.cmake -------------------------------------------------------------------------------- /vst3sdk_3.7.5/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/vst3sdk_3.7.5/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp -------------------------------------------------------------------------------- /vst3sdk_3.7.5/vstgui4/vstgui/lib/vstguibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/vst3sdk_3.7.5/vstgui4/vstgui/lib/vstguibase.h -------------------------------------------------------------------------------- /vst3sdk_3.7.8/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/vst3sdk_3.7.8/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp -------------------------------------------------------------------------------- /vst3sdk_3.8.0/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pongasoft/jamba/HEAD/vst3sdk_3.8.0/vstgui4/vstgui/lib/platform/win32/win32resourcestream.cpp --------------------------------------------------------------------------------