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.
  • Enum Constant Details

    • CONSERVATIVE

      public static final BroadcastConfiguration.AutomaticBitrateProfile 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

      public static final BroadcastConfiguration.AutomaticBitrateProfile 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 name
      NullPointerException - if the argument is null