cd0b413706
Moves everything Camera related into `core/` / `Core/` so that it is better encapsulated from React Native. Benefits: 1. Code is much better organized. Should be easier for collaborators now, and cleaner codebase for me. 2. Locking is fully atomically as you can now only configure the session through a lock/Mutex which is batch-overridable * On iOS, this makes Camera startup time **MUCH** faster, I measured speedups from **1.5 seconds** to only **240 milliseconds** since we only lock/commit once! 🚀 * On Android, this fixes a few out-of-sync/concurrency issues like "Capture Request contains unconfigured Input/Output Surface!" since it is now a single lock-operation! 💪 3. It is easier to integrate VisionCamera outside of React Native (e.g. Native iOS Apps, NativeScript, Flutter, etc) With this PR, VisionCamera V3 is up to **7x** faster than V2
58 lines
1.6 KiB
Swift
58 lines
1.6 KiB
Swift
//
|
|
// AVCaptureDevice.Format+toDictionary.swift
|
|
// mrousavy
|
|
//
|
|
// Created by Marc Rousavy on 15.01.21.
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
|
//
|
|
|
|
import AVFoundation
|
|
|
|
extension AVCaptureDevice.Format {
|
|
var videoStabilizationModes: [AVCaptureVideoStabilizationMode] {
|
|
let allModes = AVCaptureDevice.Format.getAllVideoStabilizationModes()
|
|
return allModes.filter { self.isVideoStabilizationModeSupported($0) }
|
|
}
|
|
|
|
var minFps: Float64 {
|
|
let maxRange = videoSupportedFrameRateRanges.max { l, r in
|
|
return l.maxFrameRate < r.maxFrameRate
|
|
}
|
|
return maxRange?.maxFrameRate ?? 0
|
|
}
|
|
|
|
var maxFps: Float64 {
|
|
let maxRange = videoSupportedFrameRateRanges.max { l, r in
|
|
return l.maxFrameRate < r.maxFrameRate
|
|
}
|
|
return maxRange?.maxFrameRate ?? 0
|
|
}
|
|
|
|
var supportsVideoHDR: Bool {
|
|
let pixelFormat = CMFormatDescriptionGetMediaSubType(formatDescription)
|
|
let hdrFormats = [
|
|
kCVPixelFormatType_420YpCbCr10BiPlanarFullRange,
|
|
kCVPixelFormatType_420YpCbCr10BiPlanarVideoRange,
|
|
kCVPixelFormatType_Lossless_420YpCbCr10PackedBiPlanarVideoRange,
|
|
]
|
|
return hdrFormats.contains(pixelFormat)
|
|
}
|
|
|
|
var supportsPhotoHDR: Bool {
|
|
// TODO: Supports Photo HDR on iOS?
|
|
return false
|
|
}
|
|
|
|
var supportsDepthCapture: Bool {
|
|
return !supportedDepthDataFormats.isEmpty
|
|
}
|
|
|
|
private static func getAllVideoStabilizationModes() -> [AVCaptureVideoStabilizationMode] {
|
|
var modes: [AVCaptureVideoStabilizationMode] = [.auto, .cinematic, .off, .standard]
|
|
if #available(iOS 13, *) {
|
|
modes.append(.cinematicExtended)
|
|
}
|
|
return modes
|
|
}
|
|
}
|