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
|
|
|
|
}
|
|
|
|
}
|