Compare commits
No commits in common. "bf122db919945335f2c12871291cd0fe71a52f40" and "58714f9dac67ef703fd798e5b2c085d17bff875d" have entirely different histories.
bf122db919
...
58714f9dac
@ -34,7 +34,7 @@ extension CameraSession {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let enableAudio = self.configuration?.audio != .disabled
|
let enableAudio = self.configuration?.audio != .disabled
|
||||||
|
|
||||||
// Callback for when new chunks are ready
|
// Callback for when new chunks are ready
|
||||||
let onChunkReady: (ChunkedRecorder.Chunk) -> Void = { chunk in
|
let onChunkReady: (ChunkedRecorder.Chunk) -> Void = { chunk in
|
||||||
guard let delegate = self.delegate else {
|
guard let delegate = self.delegate else {
|
||||||
@ -191,7 +191,7 @@ extension CameraSession {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func lockCurrentExposure(promise: Promise) {
|
func lockCurrentExposure(promise: Promise) {
|
||||||
CameraQueues.cameraQueue.async {
|
CameraQueues.cameraQueue.async {
|
||||||
withPromise(promise) {
|
withPromise(promise) {
|
||||||
@ -199,19 +199,15 @@ extension CameraSession {
|
|||||||
print("No capture device available")
|
print("No capture device available")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
guard captureDevice.isExposureModeSupported(.custom) else {
|
|
||||||
ReactLogger.log(level: .info, message: "Custom exposure mode not supported")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
do {
|
do {
|
||||||
// Lock the device for configuration
|
// Lock the device for configuration
|
||||||
try captureDevice.lockForConfiguration()
|
try captureDevice.lockForConfiguration()
|
||||||
|
|
||||||
// Get the current exposure duration and ISO
|
// Get the current exposure duration and ISO
|
||||||
let currentExposureDuration = captureDevice.exposureDuration
|
let currentExposureDuration = captureDevice.exposureDuration
|
||||||
let currentISO = captureDevice.iso
|
let currentISO = captureDevice.iso
|
||||||
|
|
||||||
// Check if the device supports custom exposure settings
|
// Check if the device supports custom exposure settings
|
||||||
if captureDevice.isExposureModeSupported(.custom) {
|
if captureDevice.isExposureModeSupported(.custom) {
|
||||||
// Lock the current exposure and ISO by setting custom exposure mode
|
// Lock the current exposure and ISO by setting custom exposure mode
|
||||||
@ -220,19 +216,19 @@ extension CameraSession {
|
|||||||
} else {
|
} else {
|
||||||
ReactLogger.log(level: .info, message:"Custom exposure mode not supported")
|
ReactLogger.log(level: .info, message:"Custom exposure mode not supported")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Unlock the device after configuration
|
// Unlock the device after configuration
|
||||||
captureDevice.unlockForConfiguration()
|
captureDevice.unlockForConfiguration()
|
||||||
|
|
||||||
} catch {
|
} catch {
|
||||||
ReactLogger.log(level: .warning, message:"Error locking exposure: \(error)")
|
ReactLogger.log(level: .warning, message:"Error locking exposure: \(error)")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func unlockCurrentExposure(promise: Promise) {
|
func unlockCurrentExposure(promise: Promise) {
|
||||||
CameraQueues.cameraQueue.async {
|
CameraQueues.cameraQueue.async {
|
||||||
withPromise(promise) {
|
withPromise(promise) {
|
||||||
@ -240,7 +236,7 @@ extension CameraSession {
|
|||||||
print("No capture device available")
|
print("No capture device available")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if captureDevice.isExposureModeSupported(.autoExpose) {
|
if captureDevice.isExposureModeSupported(.autoExpose) {
|
||||||
try captureDevice.lockForConfiguration()
|
try captureDevice.lockForConfiguration()
|
||||||
@ -250,7 +246,7 @@ extension CameraSession {
|
|||||||
} catch {
|
} catch {
|
||||||
ReactLogger.log(level: .warning, message:"Error unlocking exposure: \(error)")
|
ReactLogger.log(level: .warning, message:"Error unlocking exposure: \(error)")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user