036856aed5
* Move everything into package * Remove .DS_Store * Move scripts and eslintrc to package * Create CODE_OF_CONDUCT.md * fix some links * Update all links (I think) * Update generated docs * Update notice-yarn-changes.yml * Update validate-android.yml * Update validate-cpp.yml * Delete notice-yarn-changes.yml * Update validate-cpp.yml * Update validate-cpp.yml * Update validate-js.yml * Update validate-cpp.yml * Update validate-cpp.yml * wrong c++ style * Revert "wrong c++ style" This reverts commit 55a3575589c6f13f8b05134d83384f55e0601ab2.
40 lines
1.1 KiB
Swift
40 lines
1.1 KiB
Swift
//
|
|
// AVCaptureDevice.Format+isBetterThan.swift
|
|
// mrousavy
|
|
//
|
|
// Created by Marc Rousavy on 19.12.20.
|
|
// Copyright © 2020 mrousavy. All rights reserved.
|
|
//
|
|
|
|
import AVFoundation
|
|
|
|
extension AVCaptureDevice.Format {
|
|
/** Compares the current Format to the given format and returns true if the current format has either:
|
|
* 1. Higher still image capture dimensions
|
|
* 2. Higher video format dimensions (iOS 13.0)
|
|
* 3. Higher FPS
|
|
*/
|
|
func isBetterThan(_ other: AVCaptureDevice.Format) -> Bool {
|
|
// compare still image dimensions
|
|
let leftDimensions = highResolutionStillImageDimensions
|
|
let rightDimensions = other.highResolutionStillImageDimensions
|
|
if leftDimensions.height * leftDimensions.width > rightDimensions.height * rightDimensions.width {
|
|
return true
|
|
}
|
|
|
|
// compare video dimensions
|
|
let leftVideo = videoDimensions
|
|
let rightVideo = other.videoDimensions
|
|
if leftVideo.height * leftVideo.width > rightVideo.height * rightVideo.width {
|
|
return true
|
|
}
|
|
|
|
// compare max fps
|
|
if maxFrameRate > other.maxFrameRate {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
}
|