FrameInfo
public struct FrameInfo : Equatable, Hashable, Comparable, Codable
Basic structure to hold video frame info
-
video frame presentation timestamp
Declaration
Swift
public let presentationTimestamp: CMTime -
video frame time offset from the start of the video in seconds
Declaration
Swift
public let offset: Double -
video frame number
Declaration
Swift
public let frameNum: Int -
Undocumented
Declaration
Swift
public init(presentationTimestamp: CMTime, frameNum: Int) -
Undocumented
Declaration
Swift
public init(offset: Double, frameNum: Int) -
Undocumented
Declaration
Swift
public static let zero: FrameInfo -
Declaration
Swift
public static func == (lhs: FrameInfo, rhs: FrameInfo) -> Bool -
Declaration
Swift
public static func < (lhs: FrameInfo, rhs: FrameInfo) -> Bool
FrameInfo Structure Reference