2021-03-26 09:20:57 -06:00
|
|
|
//
|
|
|
|
// CameraView+AVCaptureSession.swift
|
|
|
|
// VisionCamera
|
|
|
|
//
|
|
|
|
// Created by Marc Rousavy on 26.03.21.
|
2021-06-01 05:07:57 -06:00
|
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
2021-03-26 09:20:57 -06:00
|
|
|
//
|
|
|
|
|
|
|
|
import AVFoundation
|
2021-03-26 09:28:08 -06:00
|
|
|
import Foundation
|
2021-03-26 09:20:57 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
Extension for CameraView that sets up the AVCaptureSession, Device and Format.
|
|
|
|
*/
|
|
|
|
extension CameraView {
|
2021-06-03 06:16:02 -06:00
|
|
|
// pragma MARK: Configure Capture Session
|
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
/**
|
|
|
|
Configures the Capture Session.
|
|
|
|
*/
|
2021-03-26 09:28:08 -06:00
|
|
|
final func configureCaptureSession() {
|
2021-03-29 06:12:04 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Configuring Session...")
|
2021-03-26 09:20:57 -06:00
|
|
|
isReady = false
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
#if targetEnvironment(simulator)
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.device(.notAvailableOnSimulator))
|
|
|
|
return
|
2021-03-26 09:20:57 -06:00
|
|
|
#endif
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
guard cameraId != nil else {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.device(.noDevice))
|
|
|
|
return
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
|
|
|
let cameraId = self.cameraId! as String
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Initializing Camera with device \(cameraId)...")
|
|
|
|
captureSession.beginConfiguration()
|
|
|
|
defer {
|
|
|
|
captureSession.commitConfiguration()
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-06-03 06:16:02 -06:00
|
|
|
// pragma MARK: Capture Session Inputs
|
2021-03-26 09:20:57 -06:00
|
|
|
// Video Input
|
|
|
|
do {
|
2021-12-10 01:44:54 -07:00
|
|
|
if let videoDeviceInput = videoDeviceInput {
|
2021-03-26 09:20:57 -06:00
|
|
|
captureSession.removeInput(videoDeviceInput)
|
2021-06-03 06:16:02 -06:00
|
|
|
self.videoDeviceInput = nil
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
2021-06-03 06:16:02 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Adding Video input...")
|
2021-03-26 09:20:57 -06:00
|
|
|
guard let videoDevice = AVCaptureDevice(uniqueID: cameraId) else {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.device(.invalid))
|
|
|
|
return
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
|
|
|
videoDeviceInput = try AVCaptureDeviceInput(device: videoDevice)
|
|
|
|
guard captureSession.canAddInput(videoDeviceInput!) else {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.parameter(.unsupportedInput(inputDescriptor: "video-input")))
|
|
|
|
return
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
|
|
|
captureSession.addInput(videoDeviceInput!)
|
|
|
|
} catch {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.device(.invalid))
|
|
|
|
return
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-06-03 06:16:02 -06:00
|
|
|
// pragma MARK: Capture Session Outputs
|
|
|
|
|
|
|
|
// Photo Output
|
2021-12-10 01:44:54 -07:00
|
|
|
if let photoOutput = photoOutput {
|
2021-03-26 09:20:57 -06:00
|
|
|
captureSession.removeOutput(photoOutput)
|
2021-06-03 06:16:02 -06:00
|
|
|
self.photoOutput = nil
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
2021-06-07 05:08:40 -06:00
|
|
|
if photo?.boolValue == true {
|
|
|
|
ReactLogger.log(level: .info, message: "Adding Photo output...")
|
|
|
|
photoOutput = AVCapturePhotoOutput()
|
2021-06-10 05:49:34 -06:00
|
|
|
|
|
|
|
if enableHighQualityPhotos?.boolValue == true {
|
2023-08-21 04:50:14 -06:00
|
|
|
// TODO: In iOS 16 this will be removed in favor of maxPhotoDimensions.
|
2021-06-10 05:49:34 -06:00
|
|
|
photoOutput!.isHighResolutionCaptureEnabled = true
|
|
|
|
if #available(iOS 13.0, *) {
|
2023-08-21 04:50:14 -06:00
|
|
|
// TODO: Test if this actually does any fusion or if this just calls the captureOutput twice. If the latter, remove it.
|
2021-06-10 05:49:34 -06:00
|
|
|
photoOutput!.isVirtualDeviceConstituentPhotoDeliveryEnabled = photoOutput!.isVirtualDeviceConstituentPhotoDeliverySupported
|
|
|
|
photoOutput!.maxPhotoQualityPrioritization = .quality
|
|
|
|
} else {
|
|
|
|
photoOutput!.isDualCameraDualPhotoDeliveryEnabled = photoOutput!.isDualCameraDualPhotoDeliverySupported
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if enableDepthData {
|
|
|
|
photoOutput!.isDepthDataDeliveryEnabled = photoOutput!.isDepthDataDeliverySupported
|
2021-06-07 05:08:40 -06:00
|
|
|
}
|
2021-06-10 05:49:34 -06:00
|
|
|
if #available(iOS 12.0, *), enablePortraitEffectsMatteDelivery {
|
|
|
|
photoOutput!.isPortraitEffectsMatteDeliveryEnabled = photoOutput!.isPortraitEffectsMatteDeliverySupported
|
2021-06-07 05:08:40 -06:00
|
|
|
}
|
|
|
|
guard captureSession.canAddOutput(photoOutput!) else {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.parameter(.unsupportedOutput(outputDescriptor: "photo-output")))
|
|
|
|
return
|
2021-06-07 05:08:40 -06:00
|
|
|
}
|
|
|
|
captureSession.addOutput(photoOutput!)
|
|
|
|
if videoDeviceInput!.device.position == .front {
|
|
|
|
photoOutput!.mirror()
|
|
|
|
}
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
// Video Output + Frame Processor
|
2021-12-10 01:44:54 -07:00
|
|
|
if let videoOutput = videoOutput {
|
2021-05-06 06:11:55 -06:00
|
|
|
captureSession.removeOutput(videoOutput)
|
|
|
|
self.videoOutput = nil
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
2021-07-12 07:16:03 -06:00
|
|
|
if video?.boolValue == true || enableFrameProcessor {
|
2021-06-07 05:08:40 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Adding Video Data output...")
|
|
|
|
videoOutput = AVCaptureVideoDataOutput()
|
|
|
|
guard captureSession.canAddOutput(videoOutput!) else {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.parameter(.unsupportedOutput(outputDescriptor: "video-output")))
|
|
|
|
return
|
2021-06-07 05:08:40 -06:00
|
|
|
}
|
2023-07-20 07:30:04 -06:00
|
|
|
videoOutput!.setSampleBufferDelegate(self, queue: CameraQueues.videoQueue)
|
2021-06-11 13:06:19 -06:00
|
|
|
videoOutput!.alwaysDiscardsLateVideoFrames = false
|
2023-02-21 07:00:48 -07:00
|
|
|
|
2023-08-21 04:50:14 -06:00
|
|
|
if let pixelFormat = pixelFormat as? String {
|
2023-09-01 07:07:16 -06:00
|
|
|
let supportedPixelFormats = videoOutput!.availableVideoPixelFormatTypes
|
|
|
|
let defaultFormat = supportedPixelFormats.first! // first value is always the most efficient format
|
2023-08-21 04:50:14 -06:00
|
|
|
var pixelFormatType: OSType = defaultFormat
|
|
|
|
switch pixelFormat {
|
|
|
|
case "yuv":
|
2023-09-01 07:07:16 -06:00
|
|
|
if supportedPixelFormats.contains(kCVPixelFormatType_420YpCbCr8BiPlanarFullRange) {
|
|
|
|
pixelFormatType = kCVPixelFormatType_420YpCbCr8BiPlanarFullRange
|
|
|
|
} else if supportedPixelFormats.contains(kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange) {
|
|
|
|
pixelFormatType = kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange
|
|
|
|
} else {
|
|
|
|
invokeOnError(.device(.pixelFormatNotSupported))
|
|
|
|
}
|
2023-08-21 04:50:14 -06:00
|
|
|
case "rgb":
|
2023-09-01 07:07:16 -06:00
|
|
|
if supportedPixelFormats.contains(kCVPixelFormatType_420YpCbCr8BiPlanarFullRange) {
|
|
|
|
pixelFormatType = kCVPixelFormatType_32BGRA
|
|
|
|
} else {
|
|
|
|
invokeOnError(.device(.pixelFormatNotSupported))
|
|
|
|
}
|
2023-08-21 04:50:14 -06:00
|
|
|
case "native":
|
|
|
|
pixelFormatType = defaultFormat
|
|
|
|
default:
|
|
|
|
invokeOnError(.parameter(.invalid(unionName: "pixelFormat", receivedValue: pixelFormat)))
|
|
|
|
}
|
2023-02-21 07:00:48 -07:00
|
|
|
videoOutput!.videoSettings = [
|
2023-08-21 04:50:14 -06:00
|
|
|
String(kCVPixelBufferPixelFormatTypeKey): pixelFormatType,
|
2023-02-21 07:00:48 -07:00
|
|
|
]
|
|
|
|
}
|
2021-06-07 05:08:40 -06:00
|
|
|
captureSession.addOutput(videoOutput!)
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2023-09-01 07:07:16 -06:00
|
|
|
if outputOrientation != .portrait {
|
|
|
|
updateOrientation()
|
|
|
|
}
|
2021-07-26 03:32:58 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
invokeOnInitialized()
|
|
|
|
isReady = true
|
2021-03-29 06:12:04 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Session successfully configured!")
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-06-03 06:16:02 -06:00
|
|
|
// pragma MARK: Configure Device
|
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
/**
|
2023-08-21 04:50:14 -06:00
|
|
|
Configures the Video Device with the given FPS and HDR modes.
|
2021-03-26 09:20:57 -06:00
|
|
|
*/
|
2021-03-26 09:28:08 -06:00
|
|
|
final func configureDevice() {
|
2021-03-29 06:12:04 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Configuring Device...")
|
2021-03-26 09:20:57 -06:00
|
|
|
guard let device = videoDeviceInput?.device else {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.session(.cameraNotReady))
|
|
|
|
return
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
do {
|
|
|
|
try device.lockForConfiguration()
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-12-10 01:44:54 -07:00
|
|
|
if let fps = fps?.int32Value {
|
2021-08-28 06:14:16 -06:00
|
|
|
let supportsGivenFps = device.activeFormat.videoSupportedFrameRateRanges.contains { range in
|
|
|
|
return range.includes(fps: Double(fps))
|
|
|
|
}
|
|
|
|
if !supportsGivenFps {
|
|
|
|
invokeOnError(.format(.invalidFps(fps: Int(fps))))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
let duration = CMTimeMake(value: 1, timescale: fps)
|
|
|
|
device.activeVideoMinFrameDuration = duration
|
|
|
|
device.activeVideoMaxFrameDuration = duration
|
|
|
|
} else {
|
|
|
|
device.activeVideoMinFrameDuration = CMTime.invalid
|
|
|
|
device.activeVideoMaxFrameDuration = CMTime.invalid
|
|
|
|
}
|
|
|
|
if hdr != nil {
|
|
|
|
if hdr == true && !device.activeFormat.isVideoHDRSupported {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.format(.invalidHdr))
|
|
|
|
return
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
|
|
|
if !device.automaticallyAdjustsVideoHDREnabled {
|
|
|
|
if device.isVideoHDREnabled != hdr!.boolValue {
|
|
|
|
device.isVideoHDREnabled = hdr!.boolValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if lowLightBoost != nil {
|
|
|
|
if lowLightBoost == true && !device.isLowLightBoostSupported {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.device(.lowLightBoostNotSupported))
|
|
|
|
return
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
|
|
|
if device.automaticallyEnablesLowLightBoostWhenAvailable != lowLightBoost!.boolValue {
|
|
|
|
device.automaticallyEnablesLowLightBoostWhenAvailable = lowLightBoost!.boolValue
|
|
|
|
}
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
device.unlockForConfiguration()
|
2021-03-29 06:12:04 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Device successfully configured!")
|
2021-03-26 09:20:57 -06:00
|
|
|
} catch let error as NSError {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.device(.configureError), cause: error)
|
|
|
|
return
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-06-03 06:16:02 -06:00
|
|
|
// pragma MARK: Configure Format
|
|
|
|
|
2021-03-26 09:28:08 -06:00
|
|
|
/**
|
|
|
|
Configures the Video Device to find the best matching Format.
|
|
|
|
*/
|
|
|
|
final func configureFormat() {
|
2021-03-29 06:12:04 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Configuring Format...")
|
2021-12-10 01:44:54 -07:00
|
|
|
guard let filter = format else {
|
2021-03-26 09:28:08 -06:00
|
|
|
// Format Filter was null. Ignore it.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
guard let device = videoDeviceInput?.device else {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.session(.cameraNotReady))
|
|
|
|
return
|
2021-03-26 09:28:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if device.activeFormat.matchesFilter(filter) {
|
|
|
|
ReactLogger.log(level: .info, message: "Active format already matches filter.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// get matching format
|
|
|
|
let matchingFormats = device.formats.filter { $0.matchesFilter(filter) }.sorted { $0.isBetterThan($1) }
|
|
|
|
guard let format = matchingFormats.first else {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.format(.invalidFormat))
|
|
|
|
return
|
2021-03-26 09:28:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
try device.lockForConfiguration()
|
|
|
|
device.activeFormat = format
|
|
|
|
device.unlockForConfiguration()
|
2021-03-29 06:12:04 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Format successfully configured!")
|
2021-03-26 09:28:08 -06:00
|
|
|
} catch let error as NSError {
|
2021-06-09 03:14:49 -06:00
|
|
|
invokeOnError(.device(.configureError), cause: error)
|
|
|
|
return
|
2021-03-26 09:28:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-03 06:16:02 -06:00
|
|
|
// pragma MARK: Notifications/Interruptions
|
|
|
|
|
2021-03-26 09:28:08 -06:00
|
|
|
@objc
|
|
|
|
func sessionRuntimeError(notification: Notification) {
|
2021-09-06 08:27:16 -06:00
|
|
|
ReactLogger.log(level: .error, message: "Unexpected Camera Runtime Error occured!")
|
2021-03-26 09:28:08 -06:00
|
|
|
guard let error = notification.userInfo?[AVCaptureSessionErrorKey] as? AVError else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
invokeOnError(.unknown(message: error._nsError.description), cause: error._nsError)
|
|
|
|
|
|
|
|
if isActive {
|
|
|
|
// restart capture session after an error occured
|
2023-07-20 07:30:04 -06:00
|
|
|
CameraQueues.cameraQueue.async {
|
2021-03-26 09:28:08 -06:00
|
|
|
self.captureSession.startRunning()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|