public static enum StreamingProfile.EncoderRCModes extends java.lang.Enum<StreamingProfile.EncoderRCModes>
Enum Constant and Description |
---|
BITRATE_PRIORITY
In order to control the request bitrate accurately, the video quality maybe not good.
|
QUALITY_PRIORITY
In order to improve the video quality, the real bitrate maybe higher than the requests.
|
Modifier and Type | Method and Description |
---|---|
static StreamingProfile.EncoderRCModes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StreamingProfile.EncoderRCModes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamingProfile.EncoderRCModes QUALITY_PRIORITY
public static final StreamingProfile.EncoderRCModes BITRATE_PRIORITY
public static StreamingProfile.EncoderRCModes[] values()
for (StreamingProfile.EncoderRCModes c : StreamingProfile.EncoderRCModes.values()) System.out.println(c);
public static StreamingProfile.EncoderRCModes valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null