| Package | com.adobe.mediacore |
| Class | public final class ABRControlParametersBuilder |
| Inheritance | ABRControlParametersBuilder Object |
| Property | Defined By | ||
|---|---|---|---|
| initialBitRate : int
The value of the initial bit-rate control parameter. | ABRControlParametersBuilder | ||
| maxBitRate : int
The value of the maximum bit-rate control parameter. | ABRControlParametersBuilder | ||
| minBitRate : int
The value of the minimum bit-rate control parameter. | ABRControlParametersBuilder | ||
| policy : String
The value of the initial bit-rate control parameter. | ABRControlParametersBuilder | ||
| Method | Defined By | ||
|---|---|---|---|
Default constructor. | ABRControlParametersBuilder | ||
Builder method for an ABRControlParameter instance. | ABRControlParametersBuilder | ||
| initialBitRate | property |
initialBitRate:intThe value of the initial bit-rate control parameter.
public function get initialBitRate():int public function set initialBitRate(value:int):void| maxBitRate | property |
maxBitRate:intThe value of the maximum bit-rate control parameter. Setting this property to NaN or a value smaller than minBitRate will result in an ArgumentError being thrown.
public function get maxBitRate():int public function set maxBitRate(value:int):void| minBitRate | property |
minBitRate:intThe value of the minimum bit-rate control parameter. Setting this property to NaN or a value greater than maxBitRate will result in an ArgumentError being thrown.
public function get minBitRate():int public function set minBitRate(value:int):void| policy | property |
policy:StringThe value of the initial bit-rate control parameter. Setting this property to an unsupported ABR policy will result in an ArgumentError being thrown.
public function get policy():String public function set policy(value:String):void| ABRControlParametersBuilder | () | Constructor |
public function ABRControlParametersBuilder()Default constructor.
| toABRControlParameters | () | method |
public function toABRControlParameters():ABRControlParametersBuilder method for an ABRControlParameter instance.
ReturnsABRControlParameters — a valid ABRControlParameter instance.
|