68a716b506
* Use Frame.h * Add orientation * Determine buffer orientation * Replace plugins * fix calls * Update FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx * Update FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx * format * Update CameraPage.tsx * Update FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx * Add links to docs * Use `.` syntax * Make properties `readonly` * Fix `@synthesize` backing store
24 lines
550 B
Objective-C
24 lines
550 B
Objective-C
//
|
|
// FrameProcessorPluginRegistry.h
|
|
// VisionCamera
|
|
//
|
|
// Created by Marc Rousavy on 24.03.21.
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "Frame.h"
|
|
|
|
typedef id (^FrameProcessorPlugin) (Frame* frame, NSArray<id>* arguments);
|
|
|
|
@interface FrameProcessorPluginRegistry : NSObject
|
|
|
|
+ (NSMutableDictionary<NSString*, FrameProcessorPlugin>*)frameProcessorPlugins;
|
|
+ (void) addFrameProcessorPlugin:(NSString*)name callback:(FrameProcessorPlugin)callback;
|
|
|
|
+ (void) markInvalid;
|
|
|
|
@end
|