我如何将AVAudioUnit子类化?

时间:2016-11-12 01:09:11

标签: core-audio audiounit avaudioengine

由于实例化AVAudioUnit的方式是:

[AVAudioUnit instantiateWithComponentDescription:componentDescription options:0 completionHandler:^(__kindof AVAudioUnit * _Nullable audioUnit, NSError * _Nullable error) {
    }];

我应该如何继承AVAudioUnit?我试过这个:

[MySubclassOfAVAudioUnit instantiateWithComponentDescription:componentDescription options:0 completionHandler:^(__kindof AVAudioUnit * _Nullable audioUnit, NSError * _Nullable error) {
    }];

但是,块中返回的audioUnit仍然是AVAudioUnit类型而不是MySubclassOfAVAudioUnit

根据Rhythmic Fistman的回复,我正在使用Apple的示例代码注册我的自定义AUAudioUnit子类:

componentDescription.componentType = kAudioUnitType_Effect;
componentDescription.componentSubType = 0x666c7472; /*'fltr'*/
componentDescription.componentManufacturer = 0x44656d6f; /*'Demo'*/
componentDescription.componentFlags = 0;
componentDescription.componentFlagsMask = 0;

我希望我的AVAudioUnit子类始终使用我的AUAudioUnit

1 个答案:

答案 0 :(得分:3)

来自instantiateWithComponentDescription:completionHandler:

  

返回的AVAudioUnit实例通常是子类(AVAudioUnitEffect,           AVAudioUnitGenerator,AVAudioUnitMIDIInstrument或AVAudioUnitTimeEffect),已选中           根据组件的类型。

<强>更新 我弄错了 - 你无法实例化你自己的AVAudioUnit子类,你只能实例化你的AUAudioUnit,包含在相关的内置AVFoundation中AVAudioUnit子类(例如AVAudioUnitEffect等)。

以下代码导致MyAUAudioUnitAUAudioUnit的子类被实例化:

#import <AVFoundation/AVFoundation.h>

@interface MyAUAudioUnit : AUAudioUnit {

}
@end

@implementation MyAUAudioUnit
    // implement it here
@end

// later
- (void)instantiateMyAUAudioUnitWrappedInAVAudioUnit {
    // register it (need only be done once)
    AudioComponentDescription desc;
    desc.componentType = kAudioUnitType_Effect;
    desc.componentSubType = 0x666c7472; /*'fltr'*/
    desc.componentManufacturer = 0x44656d6f; /*'Demo'*/
    desc.componentFlags = 0;
    desc.componentFlagsMask = 0;

    [AUAudioUnit registerSubclass:MyAUAudioUnit.class asComponentDescription:desc name:@"MyAU" version:1];

    // Instantiate as many times as you like:
    [AVAudioUnit instantiateWithComponentDescription:desc options:0 completionHandler:^(AVAudioUnit * audioUnit, NSError *error) {
        NSLog(@"AVAudioUnit: %@, error: %@", audioUnit, error);
    }];
}

错误的位置

因此要实例化AVAudioUnit子类,必须先使用 AUAudioUnit 方法注册它:

+[AUAudioUnit registerSubclass:asComponentDescription:name:version:]

this devforum thread中有一段代码段和一些可能的陷阱。