fix: Fix FP Plugin init call

This commit is contained in:
Marc Rousavy 2023-07-31 11:34:27 +02:00
parent deeb8db59f
commit c2096a4c71

View File

@ -41,7 +41,7 @@
+ (void) load {
[FrameProcessorPluginRegistry addFrameProcessorPlugin:@"example_plugin"
withInitializer:^FrameProcessorPlugin*(NSDictionary* options) {
return [[ExampleFrameProcessorPlugin alloc] initWithOptions:options];
return [[ExampleFrameProcessorPlugin alloc] init];
}];
}