UNPKG

react-native-vision-camera

Version:

A powerful, high-performance React Native Camera library.

45 lines (41 loc) 1.77 kB
import { CameraModule } from '../NativeCameraModule'; import { FrameProcessorsUnavailableError } from './FrameProcessorsUnavailableError'; /** * An initialized native instance of a FrameProcessorPlugin. * All memory allocated by this plugin will be deleted once this value goes out of scope. */ let proxy; try { // 1. Load react-native-worklets-core require('react-native-worklets-core'); // 2. If react-native-worklets-core could be loaded, try to install Frame Processor bindings const result = CameraModule.installFrameProcessorBindings(); if (result !== true) throw new Error(`Failed to install Frame Processor JSI bindings! installFrameProcessorBindings() returned ${result}`); // 3. Get global.VisionCameraProxy which was just installed by installFrameProcessorBindings() // @ts-expect-error it's a global JSI variable injected by native const globalProxy = global.VisionCameraProxy; if (globalProxy == null) throw new Error('global.VisionCameraProxy is not installed! Was installFrameProcessorBindings() called?'); proxy = globalProxy; } catch (e) { // global.VisionCameraProxy is not injected! // Just use dummy implementations that will throw when the user tries to use Frame Processors. proxy = { initFrameProcessorPlugin: () => { throw new FrameProcessorsUnavailableError(e); }, removeFrameProcessor: () => { throw new FrameProcessorsUnavailableError(e); }, setFrameProcessor: () => { throw new FrameProcessorsUnavailableError(e); }, workletContext: undefined }; } /** * The JSI Proxy for the Frame Processors Runtime. * * This will be replaced with a CxxTurboModule in the future. */ export const VisionCameraProxy = proxy; //# sourceMappingURL=VisionCameraProxy.js.map