gitextract_ldpfski0/ ├── .github/ │ └── pull_request_template.md ├── .gitignore ├── AudioUnitSDK.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ ├── AudioUnitSDK.xcscheme │ ├── EmptyPlugIns.xcscheme │ └── Tests.xcscheme ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── _clang-format ├── _clang-tidy ├── demos/ │ └── EmptyPlugIns/ │ ├── EmptyPlugIns.cpp │ └── Info.plist ├── hooks/ │ ├── install.sh │ └── pre-commit ├── include/ │ └── AudioUnitSDK/ │ ├── AUBase.h │ ├── AUBuffer.h │ ├── AUConfig.h │ ├── AUEffectBase.h │ ├── AUInputElement.h │ ├── AUMIDIBase.h │ ├── AUMIDIEffectBase.h │ ├── AUMIDIUtility.h │ ├── AUOutputElement.h │ ├── AUPlugInDispatch.h │ ├── AUScopeElement.h │ ├── AUSilentTimeout.h │ ├── AUThreadSafeList.h │ ├── AUUtility.h │ ├── AudioUnitSDK.h │ ├── ComponentBase.h │ └── MusicDeviceBase.h ├── readme.md ├── src/ │ └── AudioUnitSDK/ │ ├── AUBase.cpp │ ├── AUBuffer.cpp │ ├── AUBufferAllocator.cpp │ ├── AUEffectBase.cpp │ ├── AUInputElement.cpp │ ├── AUMIDIBase.cpp │ ├── AUMIDIEffectBase.cpp │ ├── AUOutputElement.cpp │ ├── AUPlugInDispatch.cpp │ ├── AUScopeElement.cpp │ ├── ComponentBase.cpp │ └── MusicDeviceBase.cpp ├── tests/ │ ├── AUThreadSafeListTests.mm │ ├── Info.plist │ └── Tests.mm └── tools/ ├── FindUB.sh └── build.sh