Package com.amazonaws.ivs.broadcast
Enum Class BroadcastConfiguration.AutomaticBitrateProfile
java.lang.Object
java.lang.Enum<BroadcastConfiguration.AutomaticBitrateProfile>
com.amazonaws.ivs.broadcast.BroadcastConfiguration.AutomaticBitrateProfile
- All Implemented Interfaces:
Serializable
,Comparable<BroadcastConfiguration.AutomaticBitrateProfile>
,Constable
- Enclosing class:
- BroadcastConfiguration
public static enum BroadcastConfiguration.AutomaticBitrateProfile
extends Enum<BroadcastConfiguration.AutomaticBitrateProfile>
Profiles for the automatic video bitrate behavior.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThis profile is conservative in how it ramps up the bitrate when the network health is good, but fast to drop the bitrate when network health is bad.This profile is fast to ramp up the bitrate when the network health is good, and fast to drop the bitrate when network health is bad. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONSERVATIVE
This profile is conservative in how it ramps up the bitrate when the network health is good, but fast to drop the bitrate when network health is bad. This leads to slow recovery times after congestion, but the bitrate will be more stable. -
FAST_INCREASE
This profile is fast to ramp up the bitrate when the network health is good, and fast to drop the bitrate when network health is bad. This will lead to quicker recoveries towards the maximum bitrate after congestion, but could result in congestion being detected more frequently as a result of probing above the available bandwidth.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-