public static enum EncodingConfiguration.ChannelConfig extends java.lang.Enum<EncodingConfiguration.ChannelConfig>
Enum Constant and Description |
---|
ENCODER_CHOICE
Let the encoder decide which to use.(recommended)
|
EXHAUSTIVE
Encode all options possible, and take the best(slow)
|
INDEPENDENT
Encode channels independently
|
LEFT_SIDE
Encode LEFT and SIDE channels for stereo stream
|
MID_SIDE
Encode MID and SIDE channels for stereo stream
|
RIGHT_SIDE
Encode RIGHT and SIDE channels for stereo stream
|
Modifier and Type | Method and Description |
---|---|
static EncodingConfiguration.ChannelConfig |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EncodingConfiguration.ChannelConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncodingConfiguration.ChannelConfig INDEPENDENT
public static final EncodingConfiguration.ChannelConfig LEFT_SIDE
public static final EncodingConfiguration.ChannelConfig RIGHT_SIDE
public static final EncodingConfiguration.ChannelConfig MID_SIDE
public static final EncodingConfiguration.ChannelConfig EXHAUSTIVE
public static final EncodingConfiguration.ChannelConfig ENCODER_CHOICE
public static EncodingConfiguration.ChannelConfig[] values()
for (EncodingConfiguration.ChannelConfig c : EncodingConfiguration.ChannelConfig.values()) System.out.println(c);
public static EncodingConfiguration.ChannelConfig 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