CapturingAudioSink, DefaultAudioSink, ForwardingAudioSinkpublic interface AudioSink
Before starting playback, specify the input audio format by calling configure(Format,
int, int[]).
Call handleBuffer(ByteBuffer, long, int) to write data, and handleDiscontinuity() when the data being fed is discontinuous. Call play() to start
playing the written data.
Call configure(Format, int, int[]) whenever the input format changes. The sink will
be reinitialized on the next call to handleBuffer(ByteBuffer, long, int).
Call flush() to prepare the sink to receive audio data from a new playback position.
Call playToEndOfStream() repeatedly to play out all data when no more input buffers
will be provided via handleBuffer(ByteBuffer, long, int) until the next flush(). Call reset() when the instance is no longer required.
The implementation may be backed by a platform AudioTrack. In this case, setAudioSessionId(int), setAudioAttributes(AudioAttributes), enableTunnelingV21() and disableTunneling() may be called before writing data to the
sink. These methods may also be called after writing data to the sink, in which case it will be
reinitialized as required. For implementations that are not based on platform AudioTracks, calling methods relating to audio sessions, audio attributes, and tunneling may
have no effect.
| Modifier and Type | Interface | Description |
|---|---|---|
static class |
AudioSink.ConfigurationException |
Thrown when a failure occurs configuring the sink.
|
static class |
AudioSink.InitializationException |
Thrown when a failure occurs initializing the sink.
|
static interface |
AudioSink.Listener |
Listener for audio sink events.
|
static interface |
AudioSink.SinkFormatSupport |
The level of support the sink provides for a format.
|
static class |
AudioSink.WriteException |
Thrown when a failure occurs writing to the sink.
|
| Modifier and Type | Field | Description |
|---|---|---|
static long |
CURRENT_POSITION_NOT_SET |
Returned by
getCurrentPositionUs(boolean) when the position is not set. |
static int |
SINK_FORMAT_SUPPORTED_DIRECTLY |
The sink supports the format directly, without the need for internal transcoding.
|
static int |
SINK_FORMAT_SUPPORTED_WITH_TRANSCODING |
The sink supports the format, but needs to transcode it internally to do so.
|
static int |
SINK_FORMAT_UNSUPPORTED |
The sink does not support the format.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
configure(Format inputFormat,
int specifiedBufferSize,
int[] outputChannels) |
Configures (or reconfigures) the sink.
|
void |
disableTunneling() |
Disables tunneling.
|
void |
enableTunnelingV21() |
Enables tunneling, if possible.
|
void |
experimentalFlushWithoutAudioTrackRelease() |
Flushes the sink, after which it is ready to receive buffers from a new playback position.
|
void |
flush() |
Flushes the sink, after which it is ready to receive buffers from a new playback position.
|
long |
getCurrentPositionUs(boolean sourceEnded) |
Returns the playback position in the stream starting at zero, in microseconds, or
CURRENT_POSITION_NOT_SET if it is not yet available. |
int |
getFormatSupport(Format format) |
Returns the level of support that the sink provides for a given
Format. |
PlaybackParameters |
getPlaybackParameters() |
Returns the active
PlaybackParameters. |
boolean |
getSkipSilenceEnabled() |
Returns whether silences are skipped in the audio stream.
|
boolean |
handleBuffer(ByteBuffer buffer,
long presentationTimeUs,
int encodedAccessUnitCount) |
Attempts to process data from a
ByteBuffer, starting from its current position and
ending at its limit (exclusive). |
void |
handleDiscontinuity() |
Signals to the sink that the next buffer may be discontinuous with the previous buffer.
|
boolean |
hasPendingData() |
Returns whether the sink has data pending that has not been consumed yet.
|
boolean |
isEnded() |
Returns whether
playToEndOfStream() has been called and all buffers have been processed. |
void |
pause() |
Pauses playback.
|
void |
play() |
Starts or resumes consuming audio if initialized.
|
void |
playToEndOfStream() |
Processes any remaining data.
|
void |
reset() |
Resets the renderer, releasing any resources that it currently holds.
|
void |
setAudioAttributes(AudioAttributes audioAttributes) |
Sets attributes for audio playback.
|
void |
setAudioSessionId(int audioSessionId) |
Sets the audio session id.
|
void |
setAuxEffectInfo(AuxEffectInfo auxEffectInfo) |
Sets the auxiliary effect.
|
void |
setListener(AudioSink.Listener listener) |
Sets the listener for sink events, which should be the audio renderer.
|
void |
setPlaybackParameters(PlaybackParameters playbackParameters) |
Attempts to set the playback parameters.
|
void |
setSkipSilenceEnabled(boolean skipSilenceEnabled) |
Sets whether silences should be skipped in the audio stream.
|
void |
setVolume(float volume) |
Sets the playback volume.
|
boolean |
supportsFormat(Format format) |
Returns whether the sink supports a given
Format. |
static final int SINK_FORMAT_SUPPORTED_DIRECTLY
static final int SINK_FORMAT_SUPPORTED_WITH_TRANSCODING
static final int SINK_FORMAT_UNSUPPORTED
static final long CURRENT_POSITION_NOT_SET
getCurrentPositionUs(boolean) when the position is not set.void setListener(AudioSink.Listener listener)
listener - The listener for sink events, which should be the audio renderer.boolean supportsFormat(Format format)
Format.format - The format.@SinkFormatSupport int getFormatSupport(Format format)
Format.format - The format.long getCurrentPositionUs(boolean sourceEnded)
CURRENT_POSITION_NOT_SET if it is not yet available.sourceEnded - Specify true if no more input buffers will be provided.void configure(Format inputFormat, int specifiedBufferSize, @Nullable int[] outputChannels) throws AudioSink.ConfigurationException
inputFormat - The format of audio data provided in the input buffers.specifiedBufferSize - A specific size for the playback buffer in bytes, or 0 to infer a
suitable buffer size.outputChannels - A mapping from input to output channels that is applied to this sink's
input as a preprocessing step, if handling PCM input. Specify null to leave the
input unchanged. Otherwise, the element at index i specifies index of the input
channel to map to output channel i when preprocessing input buffers. After the map
is applied the audio data will have outputChannels.length channels.AudioSink.ConfigurationException - If an error occurs configuring the sink.void play()
void handleDiscontinuity()
boolean handleBuffer(ByteBuffer buffer, long presentationTimeUs, int encodedAccessUnitCount) throws AudioSink.InitializationException, AudioSink.WriteException
ByteBuffer, starting from its current position and
ending at its limit (exclusive). The position of the ByteBuffer is advanced by the
number of bytes that were handled. AudioSink.Listener.onPositionDiscontinuity() will be called if
presentationTimeUs is discontinuous with the last buffer handled since the last reset.
Returns whether the data was handled in full. If the data was not handled in full then the
same ByteBuffer must be provided to subsequent calls until it has been fully consumed,
except in the case of an intervening call to flush() (or to configure(Format,
int, int[]) that causes the sink to be flushed).
buffer - The buffer containing audio data.presentationTimeUs - The presentation timestamp of the buffer in microseconds.encodedAccessUnitCount - The number of encoded access units in the buffer, or 1 if the
buffer contains PCM audio. This allows batching multiple encoded access units in one
buffer.AudioSink.InitializationException - If an error occurs initializing the sink.AudioSink.WriteException - If an error occurs writing the audio data.void playToEndOfStream()
throws AudioSink.WriteException
isEnded() will return true when no data remains.AudioSink.WriteException - If an error occurs draining data to the sink.boolean isEnded()
playToEndOfStream() has been called and all buffers have been processed.boolean hasPendingData()
void setPlaybackParameters(PlaybackParameters playbackParameters)
playbackParameters - The new playback parameters to attempt to set.PlaybackParameters getPlaybackParameters()
PlaybackParameters.void setSkipSilenceEnabled(boolean skipSilenceEnabled)
boolean getSkipSilenceEnabled()
void setAudioAttributes(AudioAttributes audioAttributes)
If the sink is configured for use with tunneling then the audio attributes are ignored. The sink is not reset and the audio session id is not cleared. The passed attributes will be used if the sink is later re-configured into non-tunneled mode.
audioAttributes - The attributes for audio playback.void setAudioSessionId(int audioSessionId)
void setAuxEffectInfo(AuxEffectInfo auxEffectInfo)
void enableTunnelingV21()
AudioTrack, and
requires platform API version 21 onwards.IllegalStateException - Thrown if enabling tunneling on platform API version < 21.void disableTunneling()
void setVolume(float volume)
volume - A volume in the range [0.0, 1.0].void pause()
void flush()
The audio session may remain active until reset() is called.
void experimentalFlushWithoutAudioTrackRelease()
Does not release the AudioTrack held by the sink.
This method is experimental, and will be renamed or removed in a future release.
Only for experimental use as part of MediaCodecAudioRenderer.experimentalSetEnableKeepAudioTrackOnSeek(boolean).
void reset()