ABRStrategyType
public enum ABRStrategyType : Intextension ABRStrategyType: CodableThe different adaptive bitrate (ABR) strategies. This configuration will only work with THEOlive streams and will not have any effect for other types of streams.
- 
                  
                  The player will optimize ABR behavior to focus on the performance of the player. Remark This strategy initiates playback with the lowest quality suitable for the device which often means faster start-up time.DeclarationSwift case performance = 1
- 
                  
                  The player will optimize ABR behavior to focus on displaying the best visual quality to the end-user as fast as possible. Remark This does not mean that the playback will start with the highest quality, only that it will switch to it faster.DeclarationSwift case quality = 2
- 
                  
                  The player will optimize ABR behavior to focus on displaying the most optimal quality based on the ABR metadata passed in with the ABRStrategyConfiguration, by initially capping the bitrate to match the provided bitrate in the ABR metadata. Remark This is the default strategy.DeclarationSwift case bandwidth = 3
- 
                  
                  The raw value of type String. DeclarationSwift public var _rawValue: String { get set }
