Fields Summary |
---|
public static final int | LAYER_1Indicates support for audio layer 1 |
public static final int | LAYER_2Indicates support for audio layer 2 |
public static final int | LAYER_3Indicates support for audio layer 3 |
public static final int | SAMPLING_RATE_16Indicates support for 16 KHz audio sampling rate |
public static final int | SAMPLING_RATE_22_05Indicates support for 22.05 KHz audio sampling rate |
public static final int | SAMPLING_RATE_24Indicates support for 24 KHz audio sampling rate |
public static final int | SAMPLING_RATE_32Indicates support for 32 KHz audio sampling rate |
public static final int | SAMPLING_RATE_44_1Indicates support for 44.1 KHz audio sampling rate |
public static final int | SAMPLING_RATE_48Indicates support for 48 KHz audio sampling rate |
public static final int | SINGLE_CHANNELIndicates support for single channel layout |
public static final int | TWO_CHANNELS_STEREOIndicates support for two channels stereo layout |
public static final int | TWO_CHANNELS_DUALIndicates support for two channels dual layout |
public static final int | THREE_CHANNELS_2_1Indicates support for three channels 2-1 layout
(Left, Right and single Surround) |
public static final int | THREE_CHANNELS_3_0Indicates support for three channels 3-0 layout
(Left, Center and Right) |
public static final int | FOUR_CHANNELS_2_0_2_0Indicates support for four channels 2-0 2-0 layout
(Left and Right of first program, Left and Right of second program) |
public static final int | FOUR_CHANNELS_2_2Indicates support for four channels 2-2 layout
(Left, Right, Left Surround and Right Surround) |
public static final int | FOUR_CHANNELS_3_1Indicates support for four channels 3-1 layout
(Left, Center, Right and single Surround) |
public static final int | FIVE_CHANNELS_3_0_2_0Indicates support for five channels 3-0 2-0 layout
(Left, Center and Right of first program, Left and Right of
second program) |
public static final int | FIVE_CHANNELS_3_2Indicates support for five channels 3-2 layout
(Left, Center, Right, Left Surround and Right surround) |
Methods Summary |
---|
public int | getAudioLayer()Returns the current MPEG Audio Layer.
|
public int | getChannelLayout()Returns the current MPEG Audio channel layout.
|
public boolean | getLowFrequencyChannel()Returns true if Low Frequency Channel mode is turned on.
|
public boolean | getMultilingualMode()Returns true if Multilingual mode is turned on.
|
public int | getSupportedAudioLayers()Returns the audio layer support capability.
The returned value consists of a logical OR among the relevant flags.
|
public int | getSupportedChannelLayouts()Returns the audio channel layout support capability.
The returned value consists of a logical OR among the relevant flags.
|
public int | getSupportedSamplingRates()Returns the audio sampling rate support capability.
The returned value consists of a logical OR among the relevant flags.
|
public boolean | isLowFrequencyChannelSupported()Returns the low freuqency channel support capability.
|
public boolean | isMultilingualModeSupported()Returns the multilingual mode support capability.
|
public int | setAudioLayer(int audioLayer)Controls the MPEG Audio Layer.
|
public int | setChannelLayout(int channelLayout)Controls the MPEG Audio channel layout.
|
public boolean | setLowFrequencyChannel(boolean on)Controls the Low Frequency Channel mode.
"true" is on; "false" is off.
|
public boolean | setMultilingualMode(boolean on)Controls the Multilingual mode.
"true" is on; "false" is off.
|