public static enum EncodingConfiguration.ChannelConfig extends 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(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.