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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum 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 SummaryModifier 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- 
CONSERVATIVEThis 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_INCREASEThis 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- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-