相关文章推荐
冷冷的麦片  ·  Apple Watch SE 3 - ...·  2 月前    · 
大力的油条  ·  Studio Display - ...·  2 月前    · 
怕考试的西瓜  ·  Apple One - Apple (台灣)·  1 月前    · 
奔放的萝卜  ·  iPad 鍵盤- Apple (台灣)·  1 月前    · 
没有腹肌的八宝粥  ·  AudioKit Tutorial: ...·  2 年前    · 
没有腹肌的八宝粥  ·  Discover AudioKit | ...·  2 年前    · 
没有腹肌的八宝粥  ·  AudioKit Pro·  2 年前    · 
AudioUnitSDK - version 1.1.0
* The `Source` folder was split in two folders: `include` for public headers, and `src` for private source files.
* Add Mac Catalyst Support.
* Several small bug fixes and improvements.
53a9a20

Git stats

AudioUnitSDK

Overview

The AudioUnitSDK contains a set of base classes as well as utility sources required for Audio Unit development. These utility classes extend or wrap Core Audio API’s providing developers with the essential scaffolding to create audio effects, instruments, and generators on Apple platforms. They provide an easier to implement C++ class model wrapping the C framework APIs.

Installing dependencies

  • Install Xcode
  • Building the project

  • Open AudioUnitSDK.xcodeproj
  • Build the AudioUnitSDK target
  • Add the include folder to your projects Header Search Paths
  • Link libAudioUnitSDK.a to your project
  • Alternatively, you can add the AudioUnitSDK source directly to your project and build as part of your target.

    Supported Deployment Targets

    macOS (OS X) 10.9 / iOS 9.0 or later.

    Changelog

    Version 1.1.0

    The Source folder was split in two folders: include for public headers, and src for private source files. Users building the AudioUnitSDK sources from within their Xcode project should update the source file locations and change the include path to path/to/AudioUnitSDK/include . Include directives should be prefixed with AudioUnitSDK (i.e. #include "AudioUnitSDK/AUBase.h" instead of #include "AUBase.h" ).

    Version 1.0.0

    Initial upload.