71730a73ef
* Set category always if different * rename org * Fix video format sorting * fix format filtering * Update AVAudioSession+setCategoryIfNotSet.swift * upgrade all dependencies * Also run dependabot for JS codebase * Update MediaPage.tsx * Use typescript 4.2.4 * Also run TS in check-all * Downgrade typescript to 4.2.3 * f * recreate lockfiles * docs: Revert package.json changes * revert all package.json changes * Update Podfile.lock * bump all dependencies, pin typescript to 4.2.4 * Downgrade react-native-navigation for now * upgrade to later snapshot * Update yarn.lock * remove yeet
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
//
|
|
// FrameProcessorPluginRegistry.mm
|
|
// VisionCamera
|
|
//
|
|
// Created by Marc Rousavy on 24.03.21.
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#import "FrameProcessorPluginRegistry.h"
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@implementation FrameProcessorPluginRegistry
|
|
|
|
+ (NSMutableDictionary<NSString*, FrameProcessorPlugin>*)frameProcessorPlugins {
|
|
static NSMutableDictionary<NSString*, FrameProcessorPlugin>* plugins = nil;
|
|
if (plugins == nil) {
|
|
plugins = [[NSMutableDictionary alloc] init];
|
|
}
|
|
return plugins;
|
|
}
|
|
|
|
static BOOL _isValid = YES;
|
|
+ (void) markInvalid {
|
|
_isValid = NO;
|
|
[[FrameProcessorPluginRegistry frameProcessorPlugins] removeAllObjects];
|
|
}
|
|
|
|
+ (void) addFrameProcessorPlugin:(NSString*)name callback:(FrameProcessorPlugin)callback {
|
|
NSAssert(_isValid, @"Tried to add Frame Processor Plugin but Frame Processor Registry has already registered all plugins!");
|
|
|
|
BOOL alreadyExists = [[FrameProcessorPluginRegistry frameProcessorPlugins] valueForKey:name] != nil;
|
|
NSAssert(!alreadyExists, @"Tried to two Frame Processor Plugins with the same name! Either choose unique names, or remove the unused plugin.");
|
|
|
|
[[FrameProcessorPluginRegistry frameProcessorPlugins] setValue:callback forKey:name];
|
|
}
|
|
|
|
@end
|