DecoderVideoRenderer
@UnstableApi
abstract class DecoderVideoRenderer : BaseRenderer
| kotlin.Any | ||
| ↳ | androidx.media3.exoplayer.BaseRenderer | |
| ↳ | androidx.media3.exoplayer.video.DecoderVideoRenderer |
Decodes and renders video using a Decoder.
This renderer accepts the following messages sent via createMessage on the playback thread:
- Message with type
MSG_SET_VIDEO_OUTPUTto set the output surface. The message payload should be the targetSurfaceorVideoDecoderOutputBufferRenderer, or null. Other non-null payloads have the effect of clearing the output. - Message with type
MSG_SET_VIDEO_FRAME_METADATA_LISTENERto set a listener for metadata associated with frames being rendered. The message payload should be theVideoFrameMetadataListener, or null.
Summary
Protected constructors |
|---|
DecoderVideoRenderer( |
Public functions |
|
|---|---|
Unit |
Enables this renderer to render the start of the stream even if the state is not |
Unit |
handleMessage(@Renderer.MessageType messageType: Int, message: Any?)Handles a message delivered to the target. |
Boolean |
isEnded()Whether the renderer is ready for the |
Boolean |
isReady()Whether the renderer is able to immediately render media from the current position. |
Unit |
Incrementally renders the |
Protected functions |
|
|---|---|
DecoderReuseEvaluation! |
canReuseDecoder(decoderName: String!, oldFormat: Format!, newFormat: Format!)Evaluates whether the existing decoder can be reused for a new |
abstract Decoder<DecoderInputBuffer!, VideoDecoderOutputBuffer!, DecoderException!>! |
createDecoder(format: Format!, cryptoConfig: CryptoConfig?)Creates a decoder for the given format. |
Unit |
dropOutputBuffer(outputBuffer: VideoDecoderOutputBuffer!)Drops the specified output buffer and releases it. |
Unit |
Flushes the decoder. |
Boolean |
maybeDropBuffersToKeyframe(positionUs: Long)Drops frames from the current output buffer to the next keyframe at or before the playback position. |
Unit |
Called when the renderer is disabled. |
Unit |
Called when the renderer is enabled. |
Unit |
@CallSuperCalled when a new format is read from the upstream source. |
Unit |
onPositionReset(Called when the position is reset. |
Unit |
@CallSuperCalled when an output buffer is successfully processed. |
Unit |
onQueueInputBuffer(buffer: DecoderInputBuffer!)Called immediately before an input buffer is queued into the decoder. |
Unit |
Called when the renderer is started. |
Unit |
Called when the renderer is stopped. |
Unit |
onStreamChanged(Called when the renderer's stream has changed. |
Unit |
Releases the decoder. |
Unit |
renderOutputBuffer(Renders the specified output buffer. |
abstract Unit |
renderOutputBufferToSurface(Renders the specified output buffer to the passed surface. |
abstract Unit |
setDecoderOutputMode(@C.VideoOutputMode outputMode: Int)Sets output mode of the decoder. |
Unit |
Sets the video output. |
Boolean |
shouldDropBuffersToKeyframe(earlyUs: Long, elapsedRealtimeUs: Long)Returns whether to drop all buffers from the buffer being processed to the keyframe at or after the current playback position, if possible. |
Boolean |
shouldDropOutputBuffer(earlyUs: Long, elapsedRealtimeUs: Long)Returns whether the buffer being processed should be dropped. |
Boolean |
shouldForceRenderOutputBuffer(Returns whether to force rendering an output buffer. |
Unit |
skipOutputBuffer(outputBuffer: VideoDecoderOutputBuffer!)Skips the specified output buffer and releases it. |
Unit |
updateDroppedBufferCounters(Updates local counters and |
Protected properties |
|
|---|---|
DecoderCounters! |
Decoder event counters used for debugging purposes. |
Inherited Constants |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Inherited functions |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Inherited properties |
|---|
Protected constructors
DecoderVideoRenderer
protected DecoderVideoRenderer(
allowedJoiningTimeMs: Long,
eventHandler: Handler?,
eventListener: VideoRendererEventListener?,
maxDroppedFramesToNotify: Int
)
| Parameters | |
|---|---|
allowedJoiningTimeMs: Long |
The maximum duration in milliseconds for which this video renderer can attempt to seamlessly join an ongoing playback. |
eventHandler: Handler? |
A handler to use when delivering events to |
eventListener: VideoRendererEventListener? |
A listener of events. May be null if delivery of events is not required. |
maxDroppedFramesToNotify: Int |
The maximum number of frames that can be dropped between invocations of |
Public functions
enableMayRenderStartOfStream
fun enableMayRenderStartOfStream(): Unit
Enables this renderer to render the start of the stream even if the state is not STATE_STARTED yet.
This is used to update the value of mayRenderStartOfStream passed to enable.
handleMessage
fun handleMessage(@Renderer.MessageType messageType: Int, message: Any?): Unit
Handles a message delivered to the target.
| Parameters | |
|---|---|
@Renderer.MessageType messageType: Int |
The message type. |
message: Any? |
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. |
isEnded
fun isEnded(): Boolean
Whether the renderer is ready for the ExoPlayer instance to transition to 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: STATE_ENABLED, STATE_STARTED.
| Returns | |
|---|---|
Boolean |
Whether the renderer is ready for the player to transition to the ended state. |
isReady
fun isReady(): Boolean
Whether the renderer is able to immediately render media from the current position.
If the renderer is in the 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 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: STATE_ENABLED, STATE_STARTED.
| Returns | |
|---|---|
Boolean |
Whether the renderer is ready to render media. |
render
fun render(positionUs: Long, elapsedRealtimeUs: Long): Unit
Incrementally renders the SampleStream.
If the renderer is in the 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 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 STATE_ENABLED state, unless it's the initial start of the media after calling enable 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: STATE_ENABLED, STATE_STARTED.
| Parameters | |
|---|---|
positionUs: Long |
The current media time in microseconds, measured at the start of the current iteration of the rendering loop. |
elapsedRealtimeUs: Long |
|
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
Protected functions
canReuseDecoder
protected fun canReuseDecoder(decoderName: String!, oldFormat: Format!, newFormat: Format!): DecoderReuseEvaluation!
Evaluates whether the existing decoder can be reused for a new Format.
The default implementation does not allow decoder reuse.
| Parameters | |
|---|---|
decoderName: String! |
The name of the decoder. |
oldFormat: Format! |
The previous format. |
newFormat: Format! |
The new format. |
| Returns | |
|---|---|
DecoderReuseEvaluation! |
The result of the evaluation. |
createDecoder
protected abstract fun createDecoder(format: Format!, cryptoConfig: CryptoConfig?): Decoder<DecoderInputBuffer!, VideoDecoderOutputBuffer!, DecoderException!>!
Creates a decoder for the given format.
| Parameters | |
|---|---|
format: Format! |
The format for which a decoder is required. |
cryptoConfig: CryptoConfig? |
The |
| Returns | |
|---|---|
Decoder<DecoderInputBuffer!, VideoDecoderOutputBuffer!, DecoderException!>! |
The decoder. |
| Throws | |
|---|---|
androidx.media3.decoder.DecoderException |
If an error occurred creating a suitable decoder. |
dropOutputBuffer
protected fun dropOutputBuffer(outputBuffer: VideoDecoderOutputBuffer!): Unit
Drops the specified output buffer and releases it.
| Parameters | |
|---|---|
outputBuffer: VideoDecoderOutputBuffer! |
The output buffer to drop. |
flushDecoder
@CallSuper
protected fun flushDecoder(): Unit
Flushes the decoder.
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs reinitializing a decoder. |
maybeDropBuffersToKeyframe
protected fun maybeDropBuffersToKeyframe(positionUs: Long): Boolean
Drops frames from the current output buffer to the next keyframe at or before the playback position. If no such keyframe exists, as the playback position is inside the same group of pictures as the buffer being processed, returns false. Returns true otherwise.
| Parameters | |
|---|---|
positionUs: Long |
The current playback position, in microseconds. |
| Returns | |
|---|---|
Boolean |
Whether any buffers were dropped. |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs flushing the decoder. |
onDisabled
protected fun onDisabled(): Unit
Called when the renderer is disabled.
The default implementation is a no-op.
onEnabled
protected fun onEnabled(joining: Boolean, mayRenderStartOfStream: Boolean): Unit
Called when the renderer is enabled.
The default implementation is a no-op.
| Parameters | |
|---|---|
joining: Boolean |
Whether this renderer is being enabled to join an ongoing playback. |
mayRenderStartOfStream: Boolean |
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. |
onInputFormatChanged
@CallSuper
protected fun onInputFormatChanged(formatHolder: FormatHolder!): Unit
Called when a new format is read from the upstream source.
| Parameters | |
|---|---|
formatHolder: FormatHolder! |
A |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs (re-)initializing the decoder. |
onPositionReset
protected fun onPositionReset(
positionUs: Long,
joining: Boolean,
sampleStreamIsResetToKeyFrame: Boolean
): Unit
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 | |
|---|---|
positionUs: Long |
The new playback position in microseconds. |
joining: Boolean |
Whether this renderer is being enabled to join an ongoing playback. |
sampleStreamIsResetToKeyFrame: Boolean |
Whether the renderer's |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
onProcessedOutputBuffer
@CallSuper
protected fun onProcessedOutputBuffer(presentationTimeUs: Long): Unit
Called when an output buffer is successfully processed.
| Parameters | |
|---|---|
presentationTimeUs: Long |
The timestamp associated with the output buffer. |
onQueueInputBuffer
protected fun onQueueInputBuffer(buffer: DecoderInputBuffer!): Unit
Called immediately before an input buffer is queued into the decoder.
The default implementation is a no-op.
| Parameters | |
|---|---|
buffer: DecoderInputBuffer! |
The buffer that will be queued. |
onStarted
protected fun onStarted(): Unit
Called when the renderer is started.
The default implementation is a no-op.
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
onStopped
protected fun onStopped(): Unit
Called when the renderer is stopped.
The default implementation is a no-op.
onStreamChanged
protected fun onStreamChanged(
formats: Array<Format!>!,
startPositionUs: Long,
offsetUs: Long,
mediaPeriodId: MediaSource.MediaPeriodId!
): Unit
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 | |
|---|---|
formats: Array<Format!>! |
The enabled formats. |
startPositionUs: Long |
The start position of the new stream in renderer time (microseconds). |
offsetUs: Long |
The offset that will be added to the timestamps of buffers read via |
mediaPeriodId: MediaSource.MediaPeriodId! |
The |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs. |
renderOutputBuffer
protected fun renderOutputBuffer(
outputBuffer: VideoDecoderOutputBuffer!,
presentationTimeUs: Long,
outputFormat: Format!
): Unit
Renders the specified output buffer.
The implementation of this method takes ownership of the output buffer and is responsible for calling release either immediately or in the future.
| Parameters | |
|---|---|
outputBuffer: VideoDecoderOutputBuffer! |
|
presentationTimeUs: Long |
Presentation time in microseconds. |
outputFormat: Format! |
Output |
| Throws | |
|---|---|
androidx.media3.decoder.DecoderException |
If an error occurs when rendering the output buffer. |
renderOutputBufferToSurface
protected abstract fun renderOutputBufferToSurface(
outputBuffer: VideoDecoderOutputBuffer!,
surface: Surface!
): Unit
Renders the specified output buffer to the passed surface.
The implementation of this method takes ownership of the output buffer and is responsible for calling release either immediately or in the future.
| Parameters | |
|---|---|
outputBuffer: VideoDecoderOutputBuffer! |
|
surface: Surface! |
Output |
| Throws | |
|---|---|
androidx.media3.decoder.DecoderException |
If an error occurs when rendering the output buffer. |
setDecoderOutputMode
protected abstract fun setDecoderOutputMode(@C.VideoOutputMode outputMode: Int): Unit
Sets output mode of the decoder.
| Parameters | |
|---|---|
@C.VideoOutputMode outputMode: Int |
Output mode. |
shouldDropBuffersToKeyframe
protected fun shouldDropBuffersToKeyframe(earlyUs: Long, elapsedRealtimeUs: Long): Boolean
Returns whether to drop all buffers from the buffer being processed to the keyframe at or after the current playback position, if possible.
| Parameters | |
|---|---|
earlyUs: Long |
The time until the current buffer should be presented in microseconds. A negative value indicates that the buffer is late. |
elapsedRealtimeUs: Long |
|
shouldDropOutputBuffer
protected fun shouldDropOutputBuffer(earlyUs: Long, elapsedRealtimeUs: Long): Boolean
Returns whether the buffer being processed should be dropped.
| Parameters | |
|---|---|
earlyUs: Long |
The time until the buffer should be presented in microseconds. A negative value indicates that the buffer is late. |
elapsedRealtimeUs: Long |
|
shouldForceRenderOutputBuffer
protected fun shouldForceRenderOutputBuffer(
earlyUs: Long,
elapsedSinceLastRenderUs: Long
): Boolean
Returns whether to force rendering an output buffer.
| Parameters | |
|---|---|
earlyUs: Long |
The time until the current buffer should be presented in microseconds. A negative value indicates that the buffer is late. |
elapsedSinceLastRenderUs: Long |
The elapsed time since the last output buffer was rendered, in microseconds. |
| Returns | |
|---|---|
Boolean |
Returns whether to force rendering an output buffer. |
skipOutputBuffer
protected fun skipOutputBuffer(outputBuffer: VideoDecoderOutputBuffer!): Unit
Skips the specified output buffer and releases it.
| Parameters | |
|---|---|
outputBuffer: VideoDecoderOutputBuffer! |
The output buffer to skip. |
updateDroppedBufferCounters
protected fun updateDroppedBufferCounters(
droppedInputBufferCount: Int,
droppedDecoderBufferCount: Int
): Unit
Updates local counters and decoderCounters to reflect that buffers were dropped.
Protected properties
decoderCounters
protected val decoderCounters: DecoderCounters!
Decoder event counters used for debugging purposes.