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
30 lines
617 B
Objective-C
30 lines
617 B
Objective-C
//
|
|
// FrameHostObject.h
|
|
// VisionCamera
|
|
//
|
|
// Created by Marc Rousavy on 22.03.21.
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <jsi/jsi.h>
|
|
#import <CoreMedia/CMSampleBuffer.h>
|
|
#import "Frame.h"
|
|
|
|
using namespace facebook;
|
|
|
|
class JSI_EXPORT FrameHostObject: public jsi::HostObject {
|
|
public:
|
|
explicit FrameHostObject(Frame* frame): frame(frame) {}
|
|
~FrameHostObject();
|
|
|
|
public:
|
|
jsi::Value get(jsi::Runtime&, const jsi::PropNameID& name) override;
|
|
std::vector<jsi::PropNameID> getPropertyNames(jsi::Runtime& rt) override;
|
|
void destroyBuffer();
|
|
|
|
public:
|
|
Frame* frame;
|
|
};
|