OTVMediaSelectionOptions
Objective-C
SWIFT_ENUM(NSInteger, OTVMediaSelectionOptions, open) {
/// Preferred media tracks assoiciated with the asset
OTVMediaSelectionOptionsPerferred = 1,
/// All media tracks assoiciated with the asset
OTVMediaSelectionOptionsAll = 2,
}
Swift
enum OTVMediaSelectionOptions : Int, @unchecked Sendable
-
Preferred media tracks assoiciated with the asset
Declaration
Objective-C
OTVMediaSelectionOptionsPerferred = 1Swift
case perferred = 1 -
All media tracks assoiciated with the asset
Declaration
Objective-C
OTVMediaSelectionOptionsAll = 2Swift
case all = 2
OTVMediaSelectionOptions Enumeration Reference