BaseRenderer
@UnstableApi
public abstract class BaseRenderer implements Renderer, RendererCapabilities
CameraMotionRenderer |
A |
DecoderAudioRenderer |
Decodes and renders audio using a |
DecoderVideoRenderer |
Decodes and renders video using a |
FakeRenderer |
Fake |
ImageRenderer |
A |
MediaCodecRenderer |
An abstract renderer that uses |
MetadataRenderer |
A renderer for metadata. |
TextRenderer |
A |
CapturingRenderersFactory.CapturingMediaCodecVideoRenderer |
A |
FakeAudioRenderer |
A |
FakeMediaClockRenderer |
Fake abstract |
FakeVideoRenderer |
A |
MediaCodecAudioRenderer |
Decodes and renders audio using |
MediaCodecVideoRenderer |
Decodes and renders video using |
An abstract base class suitable for most Renderer implementations.
It converts many of the state transitions explained in Renderer docs to protected callbacks and provides utilities to access current state values without tracking them manually:
onInit,onEnabled,onStarted,onStopped,onDisabled,onResetandonReleaseare called for the correspondingRenderermethod.onStreamChangedis called for both the initial stream set viaenableas well as subsequent streams set viareplaceStream.onPositionResetis called for the initial reset viaenableas well as subsequent resets via resetPosition.- The current
SampleStreamcan be read withreadSourceor skipped withskipSource.isSourceReadyreturningtrueindicates that samples are available to be read. - Current state is available with additional getter methods like
getLastResetPositionUs,getPlayerId,getTimeline. - Exceptions can be created with createRendererException to fill in additional metadata about the renderer automatically.
- The renderer can call
onRendererCapabilitiesChangedto tell the player of a change in its capabilities, which may lead to new tracks being selected for playback.
Summary
Public fields |
|
|---|---|
long |
|
int |
|
@Nullable SampleStream |
|
final int |
Protected fields |
|
|---|---|
@MonotonicNonNull Clock |
|
@Nullable RendererConfiguration |
|
final FormatHolder |
|
int |
|
long |
|
@Nullable MediaSource.MediaPeriodId |
|
@MonotonicNonNull PlayerId |
|
long |
|
@Nullable Format[] |
|
long |
|
Timeline |
Public constructors |
|---|
BaseRenderer(@C.TrackType int trackType) |
Public methods |
|
|---|---|
final void |
Clears the |
final void |
disable()Disable the renderer, transitioning it to the |
final void |
enable(Enables the renderer to consume from the specified |
final RendererCapabilities |
Returns the capabilities of the renderer. |
@Nullable MediaClock |
If the renderer advances its own playback position then this method returns a corresponding |
final long |
Returns the renderer time up to which the renderer has read samples, in microseconds, or |
final int |
getState()Returns the current state of the renderer. |
final @Nullable SampleStream |
Returns the |
final int |
Returns the track type that the renderer handles. |
void |
handleMessage(Handles a message delivered to the target. |
final boolean |
Returns whether the renderer has read the current |
final void |
Initializes the renderer for playback with a player. |
final boolean |
Returns whether the current |
final void |
Throws an error that's preventing the renderer from reading from its |
final void |
release()Releases the renderer. |
final void |
replaceStream(Replaces the |
final void |
reset()Forces the renderer to give up any resources (e.g. media decoders) that it may be holding. |
final void |
resetPosition(long positionUs, boolean sampleStreamIsResetToKeyFrame)Signals to the renderer that a position discontinuity has occurred. |
final void |
Signals to the renderer that the current |
final void |
setListener(RendererCapabilities.Listener listener)Sets the |
final void |
setTimeline(Timeline timeline)Sets the timeline that is currently being played. |
final void |
start()Starts the renderer, meaning that calls to |
final void |
stop()Stops the renderer, transitioning it to the |
int |
Returns the extent to which the |
Protected methods |
|
|---|---|
final ExoPlaybackException |
createRendererException(Creates an |
final ExoPlaybackException |
createRendererException(Creates an |
final Clock |
getClock()Returns the |
final RendererConfiguration |
Returns the configuration set when the renderer was most recently enabled. |
final FormatHolder |
Returns a clear |
final int |
getIndex()Returns the index of the renderer within the player. |
final long |
Returns the position passed to the most recent call to |
final @Nullable MediaSource.MediaPeriodId |
The |
final PlayerId |
Returns the |
final long |
Returns the end position of the content or ad period producing the stream, in microseconds, or |
final Format[] |
Returns the formats of the currently enabled stream. |
final long |
Returns the offset added to timestamps of buffers read from the |
final Timeline |
Returns the current |
final boolean |
Returns whether the upstream source is ready. |
void |
Called when the renderer is disabled. |
void |
onEnabled(boolean joining, boolean mayRenderStartOfStream)Called when the renderer is enabled. |
void |
onInit()Called when the renderer is initialized. |
void |
onPositionReset(Called when the position is reset. |
void |
Called when the renderer is released. |
final void |
Called when the renderer capabilities are changed. |
void |
onReset()Called when the renderer is reset. |
void |
Called when the renderer is started. |
void |
Called when the renderer is stopped. |
void |
onStreamChanged(Called when the renderer's stream has changed. |
void |
onTimelineChanged(Timeline timeline)Called when a new timeline is |
final int |
@SampleStream.ReadDataResultReads from the enabled upstream source. |
int |
skipSource(long positionUs)Attempts to skip to the keyframe before the specified position, or to the end of the stream if |
Inherited Constants |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Inherited methods |
||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||
Public fields
Protected fields
Public constructors
BaseRenderer
public BaseRenderer(@C.TrackType int trackType)
| Parameters | |
|---|---|
@C.TrackType int trackType |
The track type that the renderer handles. One of the |
Public methods
disable
public final void disable()
Disable the renderer, transitioning it to the STATE_DISABLED state.
This method may be called when the renderer is in the following states: STATE_ENABLED.
enable
public final void enable(
RendererConfiguration configuration,
Format[] formats,
SampleStream stream,
long positionUs,
boolean joining,
boolean mayRenderStartOfStream,
long startPositionUs,
long offsetUs,
MediaSource.MediaPeriodId mediaPeriodId
)
Enables the renderer to consume from the specified SampleStream.
This method may be called when the renderer is in the following states: STATE_DISABLED.
| Parameters | |
|---|---|
RendererConfiguration configuration |
The renderer configuration. |
Format[] formats |
The enabled formats. |
SampleStream stream |
The |
long positionUs |
The player's current position. |
boolean joining |
Whether this renderer is being enabled to join an ongoing playback. |
boolean mayRenderStartOfStream |
Whether this renderer is allowed to render the start of the stream even if the state is not |
long startPositionUs |
The start position of the stream in renderer time (microseconds). |
long offsetUs |
The offset to be added to timestamps of buffers read from |
MediaSource.MediaPeriodId mediaPeriodId |
The |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
getCapabilities
public final RendererCapabilities getCapabilities()
Returns the capabilities of the renderer.
| Returns | |
|---|---|
RendererCapabilities |
The capabilities of the renderer. |
getMediaClock
public @Nullable MediaClock getMediaClock()
If the renderer advances its own playback position then this method returns a corresponding MediaClock. 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.
| Returns | |
|---|---|
@Nullable MediaClock |
The |
getReadingPositionUs
public final long getReadingPositionUs()
Returns the renderer time up to which the renderer has read samples, in microseconds, or TIME_END_OF_SOURCE if the renderer has read the current SampleStream to the end.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
getState
public final int getState()
Returns the current state of the renderer.
| Returns | |
|---|---|
int |
The current state. One of |
getStream
public final @Nullable SampleStream getStream()
Returns the SampleStream being consumed, or null if the renderer is disabled.
getTrackType
@C.TrackType
public final int getTrackType()
Returns the track type that the renderer handles.
| Returns | |
|---|---|
int |
The |
| See also | |
|---|---|
getRendererType |
handleMessage
public void handleMessage(
@Renderer.MessageType int messageType,
@Nullable Object message
)
Handles a message delivered to the target.
| Parameters | |
|---|---|
@Renderer.MessageType int messageType |
The message type. |
@Nullable Object message |
The message payload. |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurred whilst handling the message. Should only be thrown by targets that handle messages on the playback thread. |
hasReadStreamToEnd
public final boolean hasReadStreamToEnd()
Returns whether the renderer has read the current SampleStream to the end.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
init
public final void init(int index, PlayerId playerId, Clock clock)
Initializes the renderer for playback with a player.
isCurrentStreamFinal
public final boolean isCurrentStreamFinal()
Returns whether the current SampleStream will be the final one supplied before the renderer is next disabled or reset.
maybeThrowStreamError
public final void maybeThrowStreamError()
Throws an error that's preventing the renderer from reading from its SampleStream. Does nothing if no such error exists.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
| Throws | |
|---|---|
java.io.IOException |
An error that's preventing the renderer from making progress or buffering more data. |
release
public final void release()
Releases the renderer.
The renderer must not be used after calling this method.
replaceStream
public final void replaceStream(
Format[] formats,
SampleStream stream,
long startPositionUs,
long offsetUs,
MediaSource.MediaPeriodId mediaPeriodId
)
Replaces the SampleStream from which samples will be consumed.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
| Parameters | |
|---|---|
Format[] formats |
The enabled formats. |
SampleStream stream |
The |
long startPositionUs |
The start position of the new stream in renderer time (microseconds). |
long offsetUs |
The offset to be added to timestamps of buffers read from |
MediaSource.MediaPeriodId mediaPeriodId |
The |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
reset
public final void reset()
Forces the renderer to give up any resources (e.g. media decoders) that it may be holding. If the renderer is not holding any resources, the call is a no-op.
This method may be called when the renderer is in the following states: STATE_DISABLED.
resetPosition
public final void resetPosition(long positionUs, boolean sampleStreamIsResetToKeyFrame)
Signals to the renderer that a position discontinuity has occurred.
If sampleStreamIsResetToKeyFrame is true then after the position discontinuity, the renderer's SampleStream is guaranteed to provide samples starting from a key frame.
sampleStreamIsResetToKeyFrame is guaranteed to be true unless the implementation overrides supportsResetPositionWithoutKeyFrameReset to return true.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
| Parameters | |
|---|---|
long positionUs |
The new playback position in microseconds. |
boolean sampleStreamIsResetToKeyFrame |
Whether the renderer's |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs handling the reset. |
setCurrentStreamFinal
public final void setCurrentStreamFinal()
Signals to the renderer that the current SampleStream will be the final one supplied before it is next disabled or reset.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
setListener
public final void setListener(RendererCapabilities.Listener listener)
Sets the Listener.
| Parameters | |
|---|---|
RendererCapabilities.Listener listener |
The listener to be set. |
setTimeline
public final void setTimeline(Timeline timeline)
Sets the timeline that is currently being played.
start
public final void start()
Starts the renderer, meaning that calls to render will cause media to be rendered.
This method may be called when the renderer is in the following states: STATE_ENABLED.
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
stop
public final void stop()
Stops the renderer, transitioning it to the STATE_ENABLED state.
This method may be called when the renderer is in the following states: STATE_STARTED.
supportsMixedMimeTypeAdaptation
@RendererCapabilities.AdaptiveSupport
public int supportsMixedMimeTypeAdaptation()
Returns the extent to which the Renderer supports adapting between supported formats that have different MIME types.
| Returns | |
|---|---|
int |
The |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
Protected methods
createRendererException
protected final ExoPlaybackException createRendererException(
Throwable cause,
@Nullable Format format,
@PlaybackException.ErrorCode int errorCode
)
Creates an ExoPlaybackException of type TYPE_RENDERER for this renderer.
| Parameters | |
|---|---|
Throwable cause |
The cause of the exception. |
@Nullable Format format |
The current format used by the renderer. May be null. |
@PlaybackException.ErrorCode int errorCode |
A |
| Returns | |
|---|---|
ExoPlaybackException |
The created instance, in which |
createRendererException
protected final ExoPlaybackException createRendererException(
Throwable cause,
@Nullable Format format,
boolean isRecoverable,
@PlaybackException.ErrorCode int errorCode
)
Creates an ExoPlaybackException of type TYPE_RENDERER for this renderer.
| Parameters | |
|---|---|
Throwable cause |
The cause of the exception. |
@Nullable Format format |
The current format used by the renderer. May be null. |
boolean isRecoverable |
If the error is recoverable by disabling and re-enabling the renderer. |
@PlaybackException.ErrorCode int errorCode |
A |
| Returns | |
|---|---|
ExoPlaybackException |
The created instance. |
getClock
protected final Clock getClock()
Returns the Clock.
Must only be used after the renderer has been initialized by the player.
getConfiguration
protected final RendererConfiguration getConfiguration()
Returns the configuration set when the renderer was most recently enabled.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
getIndex
protected final int getIndex()
Returns the index of the renderer within the player.
Must only be used after the renderer has been initialized by the player.
getLastResetPositionUs
protected final long getLastResetPositionUs()
Returns the position passed to the most recent call to enable or resetPosition.
getMediaPeriodId
protected final @Nullable MediaSource.MediaPeriodId getMediaPeriodId()
The MediaSource.MediaPeriodId of the MediaPeriod producing the stream, or null if the renderer is disabled.
getPlayerId
protected final PlayerId getPlayerId()
Returns the PlayerId of the player using this renderer.
Must only be used after the renderer has been initialized by the player.
getStreamEndPositionUs
protected final long getStreamEndPositionUs()
Returns the end position of the content or ad period producing the stream, in microseconds, or TIME_UNSET if unknown.
The returned value is retrieved from the timeline, the period ID and the AdPlaybackState of the corresponding Timeline.Period.
If no ads are involved, the end position is the duration of the Timeline.Period. For periods into which an ad is inserted the end position is the start position of the next following ad as defined in the timeline.
For ads, the end position is the duration of the ad as declared in the timeline or TIME_UNSET if unknown.
getStreamFormats
protected final Format[] getStreamFormats()
Returns the formats of the currently enabled stream.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
getStreamOffsetUs
protected final long getStreamOffsetUs()
Returns the offset added to timestamps of buffers read from the SampleStream.
Must only be called if the renderer is at least STATE_ENABLED.
getTimeline
protected final Timeline getTimeline()
Returns the current Timeline containing the rendered stream.
isSourceReady
protected final boolean isSourceReady()
Returns whether the upstream source is ready.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
onDisabled
protected void onDisabled()
Called when the renderer is disabled.
The default implementation is a no-op.
onEnabled
protected void onEnabled(boolean joining, boolean mayRenderStartOfStream)
Called when the renderer is enabled.
The default implementation is a no-op.
| Parameters | |
|---|---|
boolean joining |
Whether this renderer is being enabled to join an ongoing playback. |
boolean mayRenderStartOfStream |
Whether this renderer is allowed to render the start of the stream even if the state is not |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
onPositionReset
protected void onPositionReset(
long positionUs,
boolean joining,
boolean sampleStreamIsResetToKeyFrame
)
Called when the position is reset. This occurs when the renderer is enabled after onStreamChanged 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 if sampleStreamIsResetToKeyFrame is true.
sampleStreamIsResetToKeyFrame is guaranteed to be true unless the implementation overrides supportsResetPositionWithoutKeyFrameReset to return
true.
The default implementation is a no-op.
| Parameters | |
|---|---|
long positionUs |
The new playback position in microseconds. |
boolean joining |
Whether this renderer is being enabled to join an ongoing playback. |
boolean sampleStreamIsResetToKeyFrame |
Whether the renderer's |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
onRelease
protected void onRelease()
Called when the renderer is released.
The default implementation is a no-op.
onRendererCapabilitiesChanged
protected final void onRendererCapabilitiesChanged()
Called when the renderer capabilities are changed.
onReset
protected void onReset()
Called when the renderer is reset.
The default implementation is a no-op.
onStarted
protected void onStarted()
Called when the renderer is started.
The default implementation is a no-op.
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
onStopped
protected void onStopped()
Called when the renderer is stopped.
The default implementation is a no-op.
onStreamChanged
protected void onStreamChanged(
Format[] formats,
long startPositionUs,
long offsetUs,
MediaSource.MediaPeriodId mediaPeriodId
)
Called when the renderer's stream has changed. This occurs when the renderer is enabled after onEnabled has been called, and also when the stream has been replaced whilst the renderer is enabled or started.
The default implementation is a no-op.
| Parameters | |
|---|---|
Format[] formats |
The enabled formats. |
long startPositionUs |
The start position of the new stream in renderer time (microseconds). |
long offsetUs |
The offset that will be added to the timestamps of buffers read via |
MediaSource.MediaPeriodId mediaPeriodId |
The |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
onTimelineChanged
protected void onTimelineChanged(Timeline timeline)
Called when a new timeline is set.
The default implementation is a no-op.
| Parameters | |
|---|---|
Timeline timeline |
The new timeline, which can also be obtained from |
readSource
@SampleStream.ReadDataResult
protected final int readSource(
FormatHolder formatHolder,
DecoderInputBuffer buffer,
@SampleStream.ReadFlags int readFlags
)
Reads from the enabled upstream source. If the upstream source has been read to the end then RESULT_BUFFER_READ is only returned if setCurrentStreamFinal has been called. RESULT_NOTHING_READ is returned otherwise.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
| Parameters | |
|---|---|
FormatHolder formatHolder |
A |
DecoderInputBuffer buffer |
A |
@SampleStream.ReadFlags int readFlags |
Flags controlling the behavior of this read operation. |
| Returns | |
|---|---|
int |
The |
| Throws | |
|---|---|
androidx.media3.decoder.DecoderInputBuffer.InsufficientCapacityException |
If the |
skipSource
protected int skipSource(long positionUs)
Attempts to skip to the keyframe before the specified position, or to the end of the stream if positionUs is beyond it.
This method may be called when the renderer is in the following states: STATE_ENABLED, STATE_STARTED.
| Parameters | |
|---|---|
long positionUs |
The position in microseconds. |
| Returns | |
|---|---|
int |
The number of samples that were skipped. |