我如何子类化 AVAudioUnit?
How do I subclass AVAudioUnit?
因为实例化一个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
。
来自instantiateWithComponentDescription:completionHandler:
The returned AVAudioUnit instance normally will be of a subclass (AVAudioUnitEffect,
AVAudioUnitGenerator, AVAudioUnitMIDIInstrument, or AVAudioUnitTimeEffect), selected
according to the component's type.
更新
我弄错了 - 你 不能 实例化你自己的 AVAudioUnit
子类,你只能实例化你的 AUAudioUnit
,包裹在相关的内置 AVFoundation AVAudioUnit
子类(例如 AVAudioUnitEffect
,等等)。
以下代码导致 MyAUAudioUnit
实例化 AUAudioUnit
的子类:
#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 中有一个代码片段和一些可能的问题。
因为实例化一个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
。
来自instantiateWithComponentDescription:completionHandler:
The returned AVAudioUnit instance normally will be of a subclass (AVAudioUnitEffect, AVAudioUnitGenerator, AVAudioUnitMIDIInstrument, or AVAudioUnitTimeEffect), selected according to the component's type.
更新
我弄错了 - 你 不能 实例化你自己的 AVAudioUnit
子类,你只能实例化你的 AUAudioUnit
,包裹在相关的内置 AVFoundation AVAudioUnit
子类(例如 AVAudioUnitEffect
,等等)。
以下代码导致 MyAUAudioUnit
实例化 AUAudioUnit
的子类:
#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 中有一个代码片段和一些可能的问题。