public static class AudioFormat.Builder
extends Object
java.lang.Object | |
↳ | android.media.AudioFormat.Builder |
Builder class for AudioFormat
objects. Use this class to configure and create an AudioFormat instance. By setting format characteristics such as audio encoding, channel mask or sample rate, you indicate which of those are to vary from the default behavior on this device wherever this audio format is used. See AudioFormat
for a complete description of the different parameters that can be used to configure an AudioFormat
instance.
AudioFormat
is for instance used in AudioTrack(AudioAttributes, AudioFormat, int, int, int)
. In this constructor, every format characteristic set on the Builder
(e.g. with setSampleRate(int)
) will alter the default values used by an AudioTrack
. In this case for audio playback with AudioTrack
, the sample rate set in the Builder
would override the platform output sample rate which would otherwise be selected by default.
Public constructors |
|
---|---|
AudioFormat.Builder() Constructs a new Builder with none of the format characteristics set. |
|
AudioFormat.Builder(AudioFormat af) Constructs a new Builder from a given |
Public methods |
|
---|---|
AudioFormat |
build() Combines all of the format characteristics that have been set and return a new |
AudioFormat.Builder |
setChannelIndexMask(int channelIndexMask) Sets the channel index mask. |
AudioFormat.Builder |
setChannelMask(int channelMask) Sets the channel position mask. |
AudioFormat.Builder |
setEncoding(int encoding) Sets the data encoding format. |
AudioFormat.Builder |
setSampleRate(int sampleRate) Sets the sample rate. |
Inherited methods |
|
---|---|
![]() java.lang.Object
|
AudioFormat.Builder ()
Constructs a new Builder with none of the format characteristics set.
AudioFormat.Builder (AudioFormat af)
Constructs a new Builder from a given AudioFormat
.
Parameters | |
---|---|
af |
AudioFormat : the AudioFormat object whose data will be reused in the new Builder. |
AudioFormat build ()
Combines all of the format characteristics that have been set and return a new AudioFormat
object.
Returns | |
---|---|
AudioFormat |
a new AudioFormat object |
AudioFormat.Builder setChannelIndexMask (int channelIndexMask)
Sets the channel index mask. A channel index mask specifies the association of audio samples in the frame with numbered endpoint channels. The i-th bit in the channel index mask corresponds to the i-th endpoint channel. For example, an endpoint with four channels is represented as index mask bits 0 through 3. This setChannelMask(int) for a positional mask interpretation.
Both AudioTrack
and AudioRecord
support a channel index mask. If a channel index mask is specified it is used, otherwise the channel position mask specified by setChannelMask
is used. For AudioTrack
and AudioRecord
, a channel position mask is not required if a channel index mask is specified.
Parameters | |
---|---|
channelIndexMask |
int : describes the configuration of the audio channels. For output, the For input, the |
Returns | |
---|---|
AudioFormat.Builder |
the same Builder instance. |
Throws | |
---|---|
IllegalArgumentException |
if the channel index mask is invalid or if both channel index mask and channel position mask are specified but do not have the same channel count. |
AudioFormat.Builder setChannelMask (int channelMask)
Sets the channel position mask. The channel position mask specifies the association between audio samples in a frame with named endpoint channels. The samples in the frame correspond to the named set bits in the channel position mask, in ascending bit order. See setChannelIndexMask(int)
to specify channels based on endpoint numbered channels. This Parameters channelMask
int
: describes the configuration of the audio channels.
For output, the channelMask can be an OR-ed combination of channel position masks, e.g. CHANNEL_OUT_FRONT_LEFT
, CHANNEL_OUT_FRONT_RIGHT
, CHANNEL_OUT_FRONT_CENTER
, CHANNEL_OUT_LOW_FREQUENCY
CHANNEL_OUT_BACK_LEFT
, CHANNEL_OUT_BACK_RIGHT
, CHANNEL_OUT_BACK_CENTER
, CHANNEL_OUT_SIDE_LEFT
, CHANNEL_OUT_SIDE_RIGHT
.
For a valid AudioTrack
channel position mask, the following conditions apply:
(1) at most eight channel positions may be used;
(2) right/left pairs should be matched.
For input or AudioRecord
, the mask should be CHANNEL_IN_MONO
or CHANNEL_IN_STEREO
. CHANNEL_IN_MONO
is guaranteed to work on all devices.
Returns | |
---|---|
AudioFormat.Builder |
the same Builder instance. |
Throws | |
---|---|
IllegalArgumentException |
if the channel mask is invalid or if both channel index mask and channel position mask are specified but do not have the same channel count. |
AudioFormat.Builder setEncoding (int encoding)
Sets the data encoding format.
Parameters | |
---|---|
encoding |
int : one of ENCODING_DEFAULT , ENCODING_PCM_8BIT , ENCODING_PCM_16BIT , ENCODING_PCM_FLOAT , ENCODING_AC3 , ENCODING_E_AC3 . ENCODING_DTS , ENCODING_DTS_HD . |
Returns | |
---|---|
AudioFormat.Builder |
the same Builder instance. |
Throws | |
---|---|
IllegalArgumentException |
AudioFormat.Builder setSampleRate (int sampleRate)
Sets the sample rate.
Parameters | |
---|---|
sampleRate |
int : the sample rate expressed in Hz |
Returns | |
---|---|
AudioFormat.Builder |
the same Builder instance. |
Throws | |
---|---|
IllegalArgumentException |