react-native-vision-camera/ios/Extensions/AVFrameRateRange+includes.swift

19 lines
382 B
Swift
Raw Normal View History

2021-02-19 08:28:05 -07:00
//
// AVFrameRateRange+includes.swift
// Cuvent
//
// Created by Marc Rousavy on 15.01.21.
// Copyright © 2021 Facebook. All rights reserved.
//
import AVFoundation
extension AVFrameRateRange {
2021-03-11 11:47:51 -07:00
/**
* Returns true if this [AVFrameRateRange] contains the given [fps]
*/
2021-02-19 08:28:05 -07:00
func includes(fps: Double) -> Bool {
return fps >= minFrameRate && fps <= maxFrameRate
}
}