PlayerMessage.Target, Renderer, RendererCapabilities, MediaClockFfmpegAudioRenderer, LibflacAudioRenderer, LibopusAudioRendererpublic abstract class DecoderAudioRenderer<T extends Decoder<DecoderInputBuffer,? extends SimpleOutputBuffer,? extends DecoderException>> extends BaseRenderer implements MediaClock
Decoder.
This renderer accepts the following messages sent via ExoPlayer.createMessage(Target)
on the playback thread:
Renderer.MSG_SET_VOLUME to set the volume. The message payload should be
a Float with 0 being silence and 1 being unity gain.
Renderer.MSG_SET_AUDIO_ATTRIBUTES to set the audio attributes. The
message payload should be an AudioAttributes
instance that will configure the underlying audio track.
Renderer.MSG_SET_AUX_EFFECT_INFO to set the auxiliary effect. The message
payload should be an AuxEffectInfo instance that will configure the underlying
audio track.
Renderer.MSG_SET_SKIP_SILENCE_ENABLED to enable or disable skipping
silences. The message payload should be a Boolean.
Renderer.MSG_SET_AUDIO_SESSION_ID to set the audio session ID. The
message payload should be a session ID Integer that will be attached to the
underlying audio track.
Renderer.State, Renderer.VideoScalingMode, Renderer.WakeupListenerRendererCapabilities.AdaptiveSupport, RendererCapabilities.Capabilities, RendererCapabilities.FormatSupport, RendererCapabilities.TunnelingSupportMSG_CUSTOM_BASE, MSG_SET_AUDIO_ATTRIBUTES, MSG_SET_AUDIO_SESSION_ID, MSG_SET_AUX_EFFECT_INFO, MSG_SET_CAMERA_MOTION_LISTENER, MSG_SET_SCALING_MODE, MSG_SET_SKIP_SILENCE_ENABLED, MSG_SET_SURFACE, MSG_SET_VIDEO_DECODER_OUTPUT_BUFFER_RENDERER, MSG_SET_VIDEO_FRAME_METADATA_LISTENER, MSG_SET_VOLUME, MSG_SET_WAKEUP_LISTENER, STATE_DISABLED, STATE_ENABLED, STATE_STARTED, VIDEO_SCALING_MODE_DEFAULT, VIDEO_SCALING_MODE_SCALE_TO_FIT, VIDEO_SCALING_MODE_SCALE_TO_FIT_WITH_CROPPINGADAPTIVE_NOT_SEAMLESS, ADAPTIVE_NOT_SUPPORTED, ADAPTIVE_SEAMLESS, ADAPTIVE_SUPPORT_MASK, FORMAT_EXCEEDS_CAPABILITIES, FORMAT_HANDLED, FORMAT_SUPPORT_MASK, FORMAT_UNSUPPORTED_DRM, FORMAT_UNSUPPORTED_SUBTYPE, FORMAT_UNSUPPORTED_TYPE, TUNNELING_NOT_SUPPORTED, TUNNELING_SUPPORT_MASK, TUNNELING_SUPPORTED| Constructor | Description |
|---|---|
DecoderAudioRenderer() |
|
DecoderAudioRenderer(Handler eventHandler,
AudioRendererEventListener eventListener,
AudioCapabilities audioCapabilities,
AudioProcessor... audioProcessors) |
|
DecoderAudioRenderer(Handler eventHandler,
AudioRendererEventListener eventListener,
AudioProcessor... audioProcessors) |
|
DecoderAudioRenderer(Handler eventHandler,
AudioRendererEventListener eventListener,
AudioSink audioSink) |
| Modifier and Type | Method | Description |
|---|---|---|
protected DecoderReuseEvaluation |
canReuseDecoder(String decoderName,
Format oldFormat,
Format newFormat) |
Evaluates whether the existing decoder can be reused for a new
Format. |
protected abstract T |
createDecoder(Format format,
ExoMediaCrypto mediaCrypto) |
Creates a decoder for the given format.
|
void |
experimentalSetEnableKeepAudioTrackOnSeek(boolean enableKeepAudioTrackOnSeek) |
Sets whether to enable the experimental feature that keeps and flushes the
AudioTrack when a seek occurs, as opposed to releasing and reinitialising. |
MediaClock |
getMediaClock() |
If the renderer advances its own playback position then this method returns a corresponding
MediaClock. |
protected abstract Format |
getOutputFormat(T decoder) |
Returns the format of audio buffers output by the decoder.
|
PlaybackParameters |
getPlaybackParameters() |
Returns the active playback parameters.
|
long |
getPositionUs() |
Returns the current media position in microseconds.
|
protected int |
getSinkFormatSupport(Format format) |
|
void |
handleMessage(int messageType,
Object message) |
Handles a message delivered to the target.
|
boolean |
isEnded() |
Whether the renderer is ready for the
ExoPlayer instance to transition to Player.STATE_ENDED. |
boolean |
isReady() |
Whether the renderer is able to immediately render media from the current position.
|
protected void |
onDisabled() |
Called when the renderer is disabled.
|
protected void |
onEnabled(boolean joining,
boolean mayRenderStartOfStream) |
Called when the renderer is enabled.
|
protected void |
onPositionDiscontinuity() |
|
protected void |
onPositionReset(long positionUs,
boolean joining) |
Called when the position is reset.
|
protected void |
onStarted() |
Called when the renderer is started.
|
protected void |
onStopped() |
Called when the renderer is stopped.
|
void |
render(long positionUs,
long elapsedRealtimeUs) |
Incrementally renders the
SampleStream. |
void |
setPlaybackParameters(PlaybackParameters playbackParameters) |
Attempts to set the playback parameters.
|
protected boolean |
sinkSupportsFormat(Format format) |
|
int |
supportsFormat(Format format) |
Returns the extent to which the
Renderer supports a given format. |
protected abstract int |
supportsFormatInternal(Format format) |
Returns the
C.FormatSupport for the given Format. |
createRendererException, createRendererException, disable, enable, getCapabilities, getConfiguration, getFormatHolder, getIndex, getLastResetPositionUs, getReadingPositionUs, getState, getStream, getStreamFormats, getTrackType, hasReadStreamToEnd, isCurrentStreamFinal, isSourceReady, maybeThrowStreamError, onReset, onStreamChanged, readSource, replaceStream, reset, resetPosition, setCurrentStreamFinal, setIndex, skipSource, start, stop, supportsMixedMimeTypeAdaptationclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetName, setPlaybackSpeedgetNamepublic DecoderAudioRenderer()
public DecoderAudioRenderer(@Nullable
Handler eventHandler,
@Nullable
AudioRendererEventListener eventListener,
AudioProcessor... audioProcessors)
eventHandler - A handler to use when delivering events to eventListener. May be
null if delivery of events is not required.eventListener - A listener of events. May be null if delivery of events is not required.audioProcessors - Optional AudioProcessors that will process audio before output.public DecoderAudioRenderer(@Nullable
Handler eventHandler,
@Nullable
AudioRendererEventListener eventListener,
@Nullable
AudioCapabilities audioCapabilities,
AudioProcessor... audioProcessors)
eventHandler - A handler to use when delivering events to eventListener. May be
null if delivery of events is not required.eventListener - A listener of events. May be null if delivery of events is not required.audioCapabilities - The audio capabilities for playback on this device. May be null if the
default capabilities (no encoded audio passthrough support) should be assumed.audioProcessors - Optional AudioProcessors that will process audio before output.public DecoderAudioRenderer(@Nullable
Handler eventHandler,
@Nullable
AudioRendererEventListener eventListener,
AudioSink audioSink)
eventHandler - A handler to use when delivering events to eventListener. May be
null if delivery of events is not required.eventListener - A listener of events. May be null if delivery of events is not required.audioSink - The sink to which audio will be output.public void experimentalSetEnableKeepAudioTrackOnSeek(boolean enableKeepAudioTrackOnSeek)
AudioTrack when a seek occurs, as opposed to releasing and reinitialising. Off
by default.
This method is experimental, and will be renamed or removed in a future release.
enableKeepAudioTrackOnSeek - Whether to keep the AudioTrack on seek.@Nullable public MediaClock getMediaClock()
RendererMediaClock. If provided, the player will use the returned MediaClock as its
source of time during playback. A player may have at most one renderer that returns a MediaClock from this method.getMediaClock in interface RenderergetMediaClock in class BaseRendererMediaClock tracking the playback position of the renderer, or null.@Capabilities public final int supportsFormat(Format format)
RendererCapabilitiesRenderer supports a given format.supportsFormat in interface RendererCapabilitiesformat - The format.RendererCapabilities.Capabilities for this format.@FormatSupport protected abstract int supportsFormatInternal(Format format)
C.FormatSupport for the given Format.format - The format, which has an audio Format.sampleMimeType.C.FormatSupport for this Format.protected final boolean sinkSupportsFormat(Format format)
AudioSink.supportsFormat(Format)@SinkFormatSupport protected final int getSinkFormatSupport(Format format)
(Format)public void render(long positionUs,
long elapsedRealtimeUs)
throws ExoPlaybackException
RendererSampleStream.
If the renderer is in the Renderer.STATE_ENABLED state then each call to this method will do
work toward being ready to render the SampleStream when the renderer is started. If the
renderer is in the Renderer.STATE_STARTED state then calls to this method will render the
SampleStream in sync with the specified media positions.
The renderer may also render the very start of the media at the current position (e.g. the
first frame of a video stream) while still in the Renderer.STATE_ENABLED state, unless it's the
initial start of the media after calling Renderer.enable(RendererConfiguration, Format[],
SampleStream, long, boolean, boolean, long, long) with mayRenderStartOfStream set to
false.
This method should return quickly, and should not block if the renderer is unable to make useful progress.
This method may be called when the renderer is in the following states: Renderer.STATE_ENABLED, Renderer.STATE_STARTED.
render in interface RendererpositionUs - The current media time in microseconds, measured at the start of the current
iteration of the rendering loop.elapsedRealtimeUs - SystemClock.elapsedRealtime() in microseconds,
measured at the start of the current iteration of the rendering loop.ExoPlaybackException - If an error occurs.@CallSuper protected void onPositionDiscontinuity()
protected abstract T createDecoder(Format format, @Nullable ExoMediaCrypto mediaCrypto) throws DecoderException
format - The format for which a decoder is required.mediaCrypto - The ExoMediaCrypto object required for decoding encrypted content.
Maybe null and can be ignored if decoder does not handle encrypted content.DecoderException - If an error occurred creating a suitable decoder.protected abstract Format getOutputFormat(T decoder)
decoder - The decoder.protected DecoderReuseEvaluation canReuseDecoder(String decoderName, Format oldFormat, Format newFormat)
Format.
The default implementation does not allow decoder reuse.
decoderName - The name of the decoder.oldFormat - The previous format.newFormat - The new format.public boolean isEnded()
RendererExoPlayer instance to transition to Player.STATE_ENDED. The player will make this transition as soon as true is returned
by all of its renderers.
This method may be called when the renderer is in the following states: Renderer.STATE_ENABLED, Renderer.STATE_STARTED.
public boolean isReady()
Renderer
If the renderer is in the Renderer.STATE_STARTED state then returning true indicates that the
renderer has everything that it needs to continue playback. Returning false indicates that
the player should pause until the renderer is ready.
If the renderer is in the Renderer.STATE_ENABLED state then returning true indicates that the
renderer is ready for playback to be started. Returning false indicates that it is not.
This method may be called when the renderer is in the following states:
Renderer.STATE_ENABLED, Renderer.STATE_STARTED.
public long getPositionUs()
MediaClockgetPositionUs in interface MediaClockpublic void setPlaybackParameters(PlaybackParameters playbackParameters)
MediaClocksetPlaybackParameters in interface MediaClockplaybackParameters - The playback parameters to attempt to set.public PlaybackParameters getPlaybackParameters()
MediaClockgetPlaybackParameters in interface MediaClockprotected void onEnabled(boolean joining,
boolean mayRenderStartOfStream)
throws ExoPlaybackException
BaseRendererThe default implementation is a no-op.
onEnabled in class BaseRendererjoining - Whether this renderer is being enabled to join an ongoing playback.mayRenderStartOfStream - Whether this renderer is allowed to render the start of the
stream even if the state is not Renderer.STATE_STARTED yet.ExoPlaybackException - If an error occurs.protected void onPositionReset(long positionUs,
boolean joining)
throws ExoPlaybackException
BaseRendererBaseRenderer.onStreamChanged(Format[], long, long) has been called, and also when a position discontinuity
is encountered.
After a position reset, the renderer's SampleStream is guaranteed to provide samples
starting from a key frame.
The default implementation is a no-op.
onPositionReset in class BaseRendererpositionUs - The new playback position in microseconds.joining - Whether this renderer is being enabled to join an ongoing playback.ExoPlaybackException - If an error occurs.protected void onStarted()
BaseRendererThe default implementation is a no-op.
onStarted in class BaseRendererprotected void onStopped()
BaseRendererThe default implementation is a no-op.
onStopped in class BaseRendererprotected void onDisabled()
BaseRendererThe default implementation is a no-op.
onDisabled in class BaseRendererpublic void handleMessage(int messageType,
@Nullable
Object message)
throws ExoPlaybackException
PlayerMessage.TargethandleMessage in interface PlayerMessage.TargethandleMessage in class BaseRenderermessageType - The message type.message - The message payload.ExoPlaybackException - If an error occurred whilst handling the message. Should only be
thrown by targets that handle messages on the playback thread.