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 = 1

    Swift

    case perferred = 1
  • All media tracks assoiciated with the asset

    Declaration

    Objective-C

    OTVMediaSelectionOptionsAll = 2

    Swift

    case all = 2