Created
May 4, 2019 13:20
-
-
Save standinga/610a9ff9e6f403d256dc706bf872d919 to your computer and use it in GitHub Desktop.
VolumePluginAudioUnit properties for busses and instance variable for buffer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define parameter addresses. | |
const AudioUnitParameterID myParam1 = 0; | |
@interface VolumePluginAudioUnit () | |
@property (nonatomic, readwrite) AUParameterTree *parameterTree; | |
@property AUAudioUnitBus *inputBus; | |
@property AUAudioUnitBus *outputBus; | |
@property AUAudioUnitBusArray *inputBusArray; | |
@property AUAudioUnitBusArray *outputBusArray; | |
@end | |
@implementation VolumePluginAudioUnit { | |
Buffer _buffer; | |
} | |
@synthesize parameterTree = _parameterTree; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment