375e894038
* Make Frame Processors an extra subspec * Update VisionCamera.podspec * Make optional * Make VisionCamera compile without Skia * Fix * Add skia again * Update VisionCamera.podspec * Make VisionCamera build without Frame Processors * Rename error to `system/frame-processors-unavailable` * Fix Frame Processor returning early * Remove `preset`, FP partial rewrite * Only warn on frame drop * Fix wrong queue * fix: Run on CameraQueue again * Update CameraView.swift * fix: Activate audio session asynchronously on audio queue * Update CameraView+RecordVideo.swift * Update PreviewView.h * Cleanups * Cleanup * fix cast * feat: Add LiDAR Depth Camera support * Upgrade Ruby * Add vector icons type * Update Gemfile.lock * fix: Stop queues on deinit * Also load `builtInTrueDepthCamera` * Update CameraViewManager.swift * Update SkImageHelpers.mm * Extract FrameProcessorCallback to FrameProcessor Holds more context now :) * Rename to .m * fix: Add `RCTLog` import * Create SkiaFrameProcessor * Update CameraBridge.h * Call Frame Processor * Fix defines * fix: Allow deleting callback funcs * fix Skia build * batch * Just call `setSkiaFrameProcessor` * Rewrite in Swift * Pass `SkiaRenderer` * Fix Import * Move `PreviewView` to Swift * Fix Layer * Set Skia Canvas to Frame Host Object * Make `DrawableFrameHostObject` subclass * Fix TS types * Use same MTLDevice and apply scale * Make getter * Extract `setTorch` and `Preview` * fix: Fix nil metal device * Don't wait for session stop in deinit * Use main pixel ratio * Use unique_ptr for Render Contexts * fix: Fix SkiaPreviewDisplayLink broken after deinit * inline `getTextureCache` * Update CameraPage.tsx * chore: Format iOS * perf: Allow MTLLayer to be optimized for only frame buffers * Add RN Video types * fix: Fix Frame Processors if guard * Find nodeModules recursively * Create `Frame.isDrawable` * Add `cocoapods-check` dependency
171 lines
7.2 KiB
Plaintext
171 lines
7.2 KiB
Plaintext
//
|
|
// FrameHostObject.m
|
|
// VisionCamera
|
|
//
|
|
// Created by Marc Rousavy on 22.03.21.
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#import "FrameHostObject.h"
|
|
#import <Foundation/Foundation.h>
|
|
#import <jsi/jsi.h>
|
|
#import "WKTJsiHostObject.h"
|
|
|
|
#import "../../cpp/JSITypedArray.h"
|
|
|
|
std::vector<jsi::PropNameID> FrameHostObject::getPropertyNames(jsi::Runtime& rt) {
|
|
std::vector<jsi::PropNameID> result;
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("width")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("height")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("bytesPerRow")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("planesCount")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("orientation")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("isMirrored")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("timestamp")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("isDrawable")));
|
|
// Conversion
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("toString")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("toArrayBuffer")));
|
|
// Ref Management
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("isValid")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("incrementRefCount")));
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("decrementRefCount")));
|
|
|
|
return result;
|
|
}
|
|
|
|
jsi::Value FrameHostObject::get(jsi::Runtime& runtime, const jsi::PropNameID& propName) {
|
|
auto name = propName.utf8(runtime);
|
|
|
|
if (name == "toString") {
|
|
auto toString = JSI_HOST_FUNCTION_LAMBDA {
|
|
if (this->frame == nil) {
|
|
return jsi::String::createFromUtf8(runtime, "[closed frame]");
|
|
}
|
|
auto imageBuffer = CMSampleBufferGetImageBuffer(frame.buffer);
|
|
auto width = CVPixelBufferGetWidth(imageBuffer);
|
|
auto height = CVPixelBufferGetHeight(imageBuffer);
|
|
|
|
NSMutableString* string = [NSMutableString stringWithFormat:@"%lu x %lu Frame", width, height];
|
|
return jsi::String::createFromUtf8(runtime, string.UTF8String);
|
|
};
|
|
return jsi::Function::createFromHostFunction(runtime, jsi::PropNameID::forUtf8(runtime, "toString"), 0, toString);
|
|
}
|
|
if (name == "incrementRefCount") {
|
|
auto incrementRefCount = JSI_HOST_FUNCTION_LAMBDA {
|
|
// Increment retain count by one so ARC doesn't destroy the Frame Buffer.
|
|
CFRetain(frame.buffer);
|
|
return jsi::Value::undefined();
|
|
};
|
|
return jsi::Function::createFromHostFunction(runtime,
|
|
jsi::PropNameID::forUtf8(runtime, "incrementRefCount"),
|
|
0,
|
|
incrementRefCount);
|
|
}
|
|
if (name == "decrementRefCount") {
|
|
auto decrementRefCount = JSI_HOST_FUNCTION_LAMBDA {
|
|
// Decrement retain count by one. If the retain count is zero, ARC will destroy the Frame Buffer.
|
|
CFRelease(frame.buffer);
|
|
return jsi::Value::undefined();
|
|
};
|
|
return jsi::Function::createFromHostFunction(runtime,
|
|
jsi::PropNameID::forUtf8(runtime, "decrementRefCount"),
|
|
0,
|
|
decrementRefCount);
|
|
}
|
|
if (name == "toArrayBuffer") {
|
|
auto toArrayBuffer = JSI_HOST_FUNCTION_LAMBDA {
|
|
auto pixelBuffer = CMSampleBufferGetImageBuffer(frame.buffer);
|
|
auto bytesPerRow = CVPixelBufferGetBytesPerRow(pixelBuffer);
|
|
auto height = CVPixelBufferGetHeight(pixelBuffer);
|
|
auto buffer = (uint8_t*) CVPixelBufferGetBaseAddress(pixelBuffer);
|
|
auto arraySize = bytesPerRow * height;
|
|
|
|
static constexpr auto ARRAYBUFFER_CACHE_PROP_NAME = "__frameArrayBufferCache";
|
|
if (!runtime.global().hasProperty(runtime, ARRAYBUFFER_CACHE_PROP_NAME)) {
|
|
vision::TypedArray<vision::TypedArrayKind::Uint8ClampedArray> arrayBuffer(runtime, arraySize);
|
|
runtime.global().setProperty(runtime, ARRAYBUFFER_CACHE_PROP_NAME, arrayBuffer);
|
|
}
|
|
|
|
auto arrayBufferCache = runtime.global().getPropertyAsObject(runtime, ARRAYBUFFER_CACHE_PROP_NAME);
|
|
auto arrayBuffer = vision::getTypedArray(runtime, arrayBufferCache).get<vision::TypedArrayKind::Uint8ClampedArray>(runtime);
|
|
|
|
if (arrayBuffer.size(runtime) != arraySize) {
|
|
arrayBuffer = vision::TypedArray<vision::TypedArrayKind::Uint8ClampedArray>(runtime, arraySize);
|
|
runtime.global().setProperty(runtime, ARRAYBUFFER_CACHE_PROP_NAME, arrayBuffer);
|
|
}
|
|
|
|
arrayBuffer.updateUnsafe(runtime, buffer, arraySize);
|
|
|
|
return arrayBuffer;
|
|
};
|
|
return jsi::Function::createFromHostFunction(runtime, jsi::PropNameID::forUtf8(runtime, "toArrayBuffer"), 0, toArrayBuffer);
|
|
}
|
|
|
|
if (name == "isDrawable") {
|
|
return jsi::Value(false);
|
|
}
|
|
if (name == "isValid") {
|
|
auto isValid = frame != nil && frame.buffer != nil && CFGetRetainCount(frame.buffer) > 0 && CMSampleBufferIsValid(frame.buffer);
|
|
return jsi::Value(isValid);
|
|
}
|
|
if (name == "width") {
|
|
auto imageBuffer = CMSampleBufferGetImageBuffer(frame.buffer);
|
|
auto width = CVPixelBufferGetWidth(imageBuffer);
|
|
return jsi::Value((double) width);
|
|
}
|
|
if (name == "height") {
|
|
auto imageBuffer = CMSampleBufferGetImageBuffer(frame.buffer);
|
|
auto height = CVPixelBufferGetHeight(imageBuffer);
|
|
return jsi::Value((double) height);
|
|
}
|
|
if (name == "orientation") {
|
|
switch (frame.orientation) {
|
|
case UIImageOrientationUp:
|
|
case UIImageOrientationUpMirrored:
|
|
return jsi::String::createFromUtf8(runtime, "portrait");
|
|
case UIImageOrientationDown:
|
|
case UIImageOrientationDownMirrored:
|
|
return jsi::String::createFromUtf8(runtime, "portraitUpsideDown");
|
|
case UIImageOrientationLeft:
|
|
case UIImageOrientationLeftMirrored:
|
|
return jsi::String::createFromUtf8(runtime, "landscapeLeft");
|
|
case UIImageOrientationRight:
|
|
case UIImageOrientationRightMirrored:
|
|
return jsi::String::createFromUtf8(runtime, "landscapeRight");
|
|
}
|
|
}
|
|
if (name == "isMirrored") {
|
|
switch (frame.orientation) {
|
|
case UIImageOrientationUp:
|
|
case UIImageOrientationDown:
|
|
case UIImageOrientationLeft:
|
|
case UIImageOrientationRight:
|
|
return jsi::Value(false);
|
|
case UIImageOrientationDownMirrored:
|
|
case UIImageOrientationUpMirrored:
|
|
case UIImageOrientationLeftMirrored:
|
|
case UIImageOrientationRightMirrored:
|
|
return jsi::Value(true);
|
|
}
|
|
}
|
|
if (name == "timestamp") {
|
|
auto timestamp = CMSampleBufferGetPresentationTimeStamp(frame.buffer);
|
|
auto seconds = static_cast<double>(CMTimeGetSeconds(timestamp));
|
|
return jsi::Value(seconds * 1000.0);
|
|
}
|
|
if (name == "bytesPerRow") {
|
|
auto imageBuffer = CMSampleBufferGetImageBuffer(frame.buffer);
|
|
auto bytesPerRow = CVPixelBufferGetBytesPerRow(imageBuffer);
|
|
return jsi::Value((double) bytesPerRow);
|
|
}
|
|
if (name == "planesCount") {
|
|
auto imageBuffer = CMSampleBufferGetImageBuffer(frame.buffer);
|
|
auto planesCount = CVPixelBufferGetPlaneCount(imageBuffer);
|
|
return jsi::Value((double) planesCount);
|
|
}
|
|
|
|
// fallback to base implementation
|
|
return HostObject::get(runtime, propName);
|
|
}
|