ABRStrategyConfiguration
public class ABRStrategyConfiguration : NSObject, Codable
An object specifying strategy and metadata that the player will use for initial playback.
-
The type of strategy used for ABR.
Declaration
Swift
public let type: ABRStrategyType -
The metadata used for ABR.
Declaration
Swift
public let metadata: ABRMetadata? -
Constructs an ABRStrategyConfiguration given an ABRStrategyType enum member and an ABRMetadata struct.
Declaration
Swift
public init(type: ABRStrategyType, metadata: ABRMetadata? = nil)Parameters
typeThe
ABRStrategyTypeto be used.metadatathe
ABRMetadatato be used.