├── addon_config.mk ├── example-1-hello ├── addons.make ├── bin │ └── data │ │ └── entertainer.mp3 └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-2-oscilloscope ├── addons.make ├── bin │ └── data │ │ └── .gitkeep └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-3-busses ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── hats.wav │ │ ├── kick.wav │ │ └── snare.wav └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-4-parameters ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── chopin.mp3 └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-5-rendering ├── addons.make ├── bin │ └── data │ │ └── .gitkeep └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── license.txt ├── ofxaddons_thumbnail.png ├── readme.md └── src ├── CAPublicUtility ├── AUParamInfo.cpp ├── AUParamInfo.h ├── CAAUParameter.cpp ├── CAAUParameter.h ├── CADebugMacros.cpp ├── CADebugMacros.h └── CAXException.h ├── TPCircularBuffer ├── TPCircularBuffer.c └── TPCircularBuffer.h ├── ofxAudioUnit.cpp ├── ofxAudioUnit.h ├── ofxAudioUnitBase.h ├── ofxAudioUnitCocoaUtilties.mm ├── ofxAudioUnitDSPNode.cpp ├── ofxAudioUnitDSPNode.h ├── ofxAudioUnitFftNode.cpp ├── ofxAudioUnitFftNode.h ├── ofxAudioUnitFilePlayer.cpp ├── ofxAudioUnitFilePlayer.h ├── ofxAudioUnitHardwareUtils.cpp ├── ofxAudioUnitHardwareUtils.h ├── ofxAudioUnitInput.cpp ├── ofxAudioUnitInput.h ├── ofxAudioUnitMatrixMixer.cpp ├── ofxAudioUnitMatrixMixer.h ├── ofxAudioUnitMidi.cpp ├── ofxAudioUnitMidi.h ├── ofxAudioUnitMixer.cpp ├── ofxAudioUnitMixer.h ├── ofxAudioUnitNetReceive.cpp ├── ofxAudioUnitNetReceive.h ├── ofxAudioUnitNetSend.cpp ├── ofxAudioUnitNetSend.h ├── ofxAudioUnitOutput.cpp ├── ofxAudioUnitOutput.h ├── ofxAudioUnitRecorder.cpp ├── ofxAudioUnitRecorder.h ├── ofxAudioUnitSampler.cpp ├── ofxAudioUnitSampler.h ├── ofxAudioUnitSpeechSynth.cpp ├── ofxAudioUnitSpeechSynth.h ├── ofxAudioUnitTap.cpp ├── ofxAudioUnitTap.h └── ofxAudioUnitUtils.h /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/addon_config.mk -------------------------------------------------------------------------------- /example-1-hello/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioUnit 2 | -------------------------------------------------------------------------------- /example-1-hello/bin/data/entertainer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-1-hello/bin/data/entertainer.mp3 -------------------------------------------------------------------------------- /example-1-hello/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-1-hello/src/main.cpp -------------------------------------------------------------------------------- /example-1-hello/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-1-hello/src/ofApp.cpp -------------------------------------------------------------------------------- /example-1-hello/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-1-hello/src/ofApp.h -------------------------------------------------------------------------------- /example-2-oscilloscope/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioUnit 2 | -------------------------------------------------------------------------------- /example-2-oscilloscope/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-2-oscilloscope/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-2-oscilloscope/src/main.cpp -------------------------------------------------------------------------------- /example-2-oscilloscope/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-2-oscilloscope/src/ofApp.cpp -------------------------------------------------------------------------------- /example-2-oscilloscope/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-2-oscilloscope/src/ofApp.h -------------------------------------------------------------------------------- /example-3-busses/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioUnit 2 | -------------------------------------------------------------------------------- /example-3-busses/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-3-busses/bin/data/hats.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-3-busses/bin/data/hats.wav -------------------------------------------------------------------------------- /example-3-busses/bin/data/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-3-busses/bin/data/kick.wav -------------------------------------------------------------------------------- /example-3-busses/bin/data/snare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-3-busses/bin/data/snare.wav -------------------------------------------------------------------------------- /example-3-busses/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-3-busses/src/main.cpp -------------------------------------------------------------------------------- /example-3-busses/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-3-busses/src/ofApp.cpp -------------------------------------------------------------------------------- /example-3-busses/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-3-busses/src/ofApp.h -------------------------------------------------------------------------------- /example-4-parameters/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioUnit 2 | -------------------------------------------------------------------------------- /example-4-parameters/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-4-parameters/bin/data/chopin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-4-parameters/bin/data/chopin.mp3 -------------------------------------------------------------------------------- /example-4-parameters/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-4-parameters/src/main.cpp -------------------------------------------------------------------------------- /example-4-parameters/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-4-parameters/src/ofApp.cpp -------------------------------------------------------------------------------- /example-4-parameters/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-4-parameters/src/ofApp.h -------------------------------------------------------------------------------- /example-5-rendering/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioUnit 2 | -------------------------------------------------------------------------------- /example-5-rendering/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-5-rendering/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-5-rendering/src/main.cpp -------------------------------------------------------------------------------- /example-5-rendering/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-5-rendering/src/ofApp.cpp -------------------------------------------------------------------------------- /example-5-rendering/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/example-5-rendering/src/ofApp.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/license.txt -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/readme.md -------------------------------------------------------------------------------- /src/CAPublicUtility/AUParamInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/CAPublicUtility/AUParamInfo.cpp -------------------------------------------------------------------------------- /src/CAPublicUtility/AUParamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/CAPublicUtility/AUParamInfo.h -------------------------------------------------------------------------------- /src/CAPublicUtility/CAAUParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/CAPublicUtility/CAAUParameter.cpp -------------------------------------------------------------------------------- /src/CAPublicUtility/CAAUParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/CAPublicUtility/CAAUParameter.h -------------------------------------------------------------------------------- /src/CAPublicUtility/CADebugMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/CAPublicUtility/CADebugMacros.cpp -------------------------------------------------------------------------------- /src/CAPublicUtility/CADebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/CAPublicUtility/CADebugMacros.h -------------------------------------------------------------------------------- /src/CAPublicUtility/CAXException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/CAPublicUtility/CAXException.h -------------------------------------------------------------------------------- /src/TPCircularBuffer/TPCircularBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/TPCircularBuffer/TPCircularBuffer.c -------------------------------------------------------------------------------- /src/TPCircularBuffer/TPCircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/TPCircularBuffer/TPCircularBuffer.h -------------------------------------------------------------------------------- /src/ofxAudioUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnit.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnit.h -------------------------------------------------------------------------------- /src/ofxAudioUnitBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitBase.h -------------------------------------------------------------------------------- /src/ofxAudioUnitCocoaUtilties.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitCocoaUtilties.mm -------------------------------------------------------------------------------- /src/ofxAudioUnitDSPNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitDSPNode.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitDSPNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitDSPNode.h -------------------------------------------------------------------------------- /src/ofxAudioUnitFftNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitFftNode.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitFftNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitFftNode.h -------------------------------------------------------------------------------- /src/ofxAudioUnitFilePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitFilePlayer.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitFilePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitFilePlayer.h -------------------------------------------------------------------------------- /src/ofxAudioUnitHardwareUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitHardwareUtils.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitHardwareUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitHardwareUtils.h -------------------------------------------------------------------------------- /src/ofxAudioUnitInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitInput.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitInput.h -------------------------------------------------------------------------------- /src/ofxAudioUnitMatrixMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitMatrixMixer.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitMatrixMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitMatrixMixer.h -------------------------------------------------------------------------------- /src/ofxAudioUnitMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitMidi.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitMidi.h -------------------------------------------------------------------------------- /src/ofxAudioUnitMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitMixer.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitMixer.h -------------------------------------------------------------------------------- /src/ofxAudioUnitNetReceive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitNetReceive.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitNetReceive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitNetReceive.h -------------------------------------------------------------------------------- /src/ofxAudioUnitNetSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitNetSend.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitNetSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitNetSend.h -------------------------------------------------------------------------------- /src/ofxAudioUnitOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitOutput.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitOutput.h -------------------------------------------------------------------------------- /src/ofxAudioUnitRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitRecorder.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitRecorder.h -------------------------------------------------------------------------------- /src/ofxAudioUnitSampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitSampler.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitSampler.h -------------------------------------------------------------------------------- /src/ofxAudioUnitSpeechSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitSpeechSynth.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitSpeechSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitSpeechSynth.h -------------------------------------------------------------------------------- /src/ofxAudioUnitTap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitTap.cpp -------------------------------------------------------------------------------- /src/ofxAudioUnitTap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitTap.h -------------------------------------------------------------------------------- /src/ofxAudioUnitUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admsyn/ofxAudioUnit/HEAD/src/ofxAudioUnitUtils.h --------------------------------------------------------------------------------