MediaCodecRenderer


@UnstableApi
public abstract class MediaCodecRenderer extends BaseRenderer

Known direct subclasses
MediaCodecAudioRenderer

Decodes and renders audio using MediaCodec and an AudioSink.

MediaCodecVideoRenderer

Decodes and renders video using MediaCodec.


An abstract renderer that uses MediaCodec to decode samples for rendering.

Summary

Nested types

Thrown when a failure occurs instantiating a decoder.

Constants

static final float

Indicates no codec operating rate should be set.

Public constructors

MediaCodecRenderer(
    @C.TrackType int trackType,
    MediaCodecAdapter.Factory codecAdapterFactory,
    MediaCodecSelector mediaCodecSelector,
    boolean enableDecoderFallback,
    float assumedMinimumCodecOperatingRate
)

Public methods

void

Enables the renderer to invoke onProcessedStreamChange on the first stream.

final long
getDurationToProgressUs(long positionUs, long elapsedRealtimeUs)

Returns minimum amount of playback clock time that must pass in order for the render call to make progress.

void
handleMessage(
    @Renderer.MessageType int messageType,
    @Nullable Object message
)

Handles a message delivered to the target.

boolean

Whether the renderer is ready for the ExoPlayer instance to transition to STATE_ENDED.

boolean

Whether the renderer is able to immediately render media from the current position.

void
render(long positionUs, long elapsedRealtimeUs)

Incrementally renders the SampleStream.

void
setPlaybackSpeed(float currentPlaybackSpeed, float targetPlaybackSpeed)

Indicates the playback speed to this renderer.

void
setRenderTimeLimitMs(long renderTimeLimitMs)

Sets a limit on the time a single render call can spend draining and filling the decoder.

final int

Returns the extent to which the Renderer supports a given format.

final int

Returns the extent to which the Renderer supports adapting between supported formats that have different MIME types.

Protected methods

DecoderReuseEvaluation
canReuseCodec(
    MediaCodecInfo codecInfo,
    Format oldFormat,
    Format newFormat
)

Evaluates whether the existing MediaCodec can be kept for a new Format, and if it can whether it requires reconfiguration.

MediaCodecDecoderException
createDecoderException(
    Throwable cause,
    @Nullable MediaCodecInfo codecInfo
)
final boolean

Flushes the codec.

final @Nullable MediaCodecAdapter
int

Returns the flags that should be set on queueInputBuffer or queueSecureInputBuffer for this buffer.

final @Nullable MediaCodecInfo
boolean

Returns whether the codec needs the renderer to propagate the end-of-stream signal directly, rather than by using an end-of-stream buffer queued to the codec.

float

Returns the operating rate used by the current codec

float
getCodecOperatingRateV23(
    float targetPlaybackSpeed,
    Format format,
    Format[] streamFormats
)

Returns the KEY_OPERATING_RATE value for a given playback speed, current Format and set of possible stream formats.

final @Nullable MediaFormat
abstract List<MediaCodecInfo>
getDecoderInfos(
    MediaCodecSelector mediaCodecSelector,
    Format format,
    boolean requiresSecureDecoder
)

Returns a list of decoders that can decode media in the specified format, in priority order.

long
getDurationToProgressUs(
    long positionUs,
    long elapsedRealtimeUs,
    boolean isOnBufferAvailableListenerRegistered
)

Returns minimum time playback must advance in order for the render call to make progress.

long

Returns the presentation time of the last buffer in the stream.

abstract MediaCodecAdapter.Configuration
getMediaCodecConfiguration(
    MediaCodecInfo codecInfo,
    Format format,
    @Nullable MediaCrypto crypto,
    float codecOperatingRate
)

Returns the MediaCodecAdapter.Configuration that will be used to create and configure a MediaCodec to decode the given Format for a playback.

final long

Returns the offset that should be subtracted from bufferPresentationTimeUs in processOutputBuffer to get the playback position with respect to the media.

final long

Returns the start position of the current output stream in microseconds.

float

Returns the current playback speed, as set by setPlaybackSpeed.

final @Nullable Renderer.WakeupListener

Returns listener used to signal that render should be called.

void

Handles supplemental data associated with an input buffer.

boolean

Returns whether the renderer has skipped flushing the codec and is waiting to process an earlier frame.

final boolean

Returns whether bypass is enabled by the renderer.

final boolean

Returns whether buffers in the input format can be processed without a codec.

final void
boolean

Initializes the processing pipeline, if needed by the implementation.

void
onCodecError(Exception codecError)

Called when a codec error has occurred.

void
onCodecInitialized(
    String name,
    MediaCodecAdapter.Configuration configuration,
    long initializedTimestampMs,
    long initializationDurationMs
)

Called when a MediaCodec has been created and configured.

void

Called when a MediaCodec has been released.

void

Called when the renderer is disabled.

void
onEnabled(boolean joining, boolean mayRenderStartOfStream)

Called when the renderer is enabled.

@Nullable DecoderReuseEvaluation

Called when a new Format is read from the upstream MediaPeriod.

void

Called when one of the output formats changes.

void
onOutputStreamOffsetUsChanged(long outputStreamOffsetUs)

Called after the output stream offset changes.

void
onPositionReset(long positionUs, boolean joining)

Called when the position is reset.

void
@CallSuper
onProcessedOutputBuffer(long presentationTimeUs)

Called when an output buffer is successfully processed.

void

Called after the last output buffer before a stream change has been processed.

void

Called immediately before an input buffer is queued into the codec.

void

Called when the renderer is reset.

void

Called when the renderer is started.

void

Called when the renderer is stopped.

void
onStreamChanged(
    Format[] formats,
    long startPositionUs,
    long offsetUs,
    MediaSource.MediaPeriodId mediaPeriodId
)

Called when the renderer's stream has changed.

abstract boolean
processOutputBuffer(
    long positionUs,
    long elapsedRealtimeUs,
    @Nullable MediaCodecAdapter codec,
    @Nullable ByteBuffer buffer,
    int bufferIndex,
    int bufferFlags,
    int sampleCount,
    long bufferPresentationTimeUs,
    boolean isDecodeOnlyBuffer,
    boolean isLastBuffer,
    Format format
)

Processes an output media buffer.

void
void

Incrementally renders any remaining output.

void

Resets the renderer internal state after a codec flush.

void

Resets the renderer internal state after a codec release.

final void

Notifies the renderer that output end of stream is pending and should be handled on the next render.

final void

Sets an exception to be re-thrown by render.

boolean

Returns whether the input buffer should be discarded before decoding.

boolean

Returns whether the codec should be flushed in cases such that the codec was not released.

boolean
boolean

Returns whether the renderer needs to re-initialize the codec, possibly as a result of a change in device capabilities.

boolean

Returns whether the codec should be released rather than flushed.

boolean

Returns whether the input buffer should be skipped before the decoder.

boolean

Returns whether buffers in the input format can be processed without a codec.

abstract int

Returns the Capabilities for the given Format.

static boolean

Returns whether this renderer supports the given Format's DRM scheme.

final boolean

Updates the codec operating rate, or triggers codec release and re-initialization if a previously set operating rate needs to be cleared.

final void
updateOutputFormatForTime(long presentationTimeUs)

Updates the output formats for the specified output buffer timestamp, calling onOutputFormatChanged if a change has occurred.

Inherited Constants

From androidx.media3.exoplayer.Renderer
static final long

Default minimum duration that the playback clock must advance before render can make progress.

static final long

Default duration to progress reported if the renderer does not need calls to render to progress, if it's in STATE_ENABLED and already ready or ended.

static final int

Applications or extensions may define custom MSG_* constants that can be passed to renderers.

static final int

A type of a message that can be passed to an audio renderer via createMessage.

static final int

The type of a message that can be passed to audio and video renderers via createMessage.

static final int

A type of a message that can be passed to an audio renderer via createMessage.

static final int

The type of a message that can be passed to a camera motion renderer via createMessage.

static final int

The type of a message that can be passed to a video renderer via createMessage.

static final int

The type of message that can be passed to an image renderer to set a desired image output.

static final int

The type of a message that can be passed to audio renderers via createMessage.

static final int

The type of message that can be passed to a renderer to set its priority.

static final int

The type of a message that can be passed to a MediaCodec-based video renderer via createMessage.

static final int

The type of message that can be passed to a renderer to direct it to enable or disable scrubbing mode.

static final int

The type of a message that can be passed to an audio renderer via createMessage.

static final int

The type of a message that can be passed to a video renderer.

static final int

The type of a message that can be passed to a video renderer via createMessage.

static final int

The type of a message that can be passed to a video renderer via createMessage.

static final int

The type of a message that can be passed to a video renderer to set the desired output resolution.

static final int

A type of a message that can be passed to an audio renderer via createMessage.

static final int

The type of a message that can be passed to a Renderer via createMessage, to inform the renderer that it can schedule waking up another component.

static final int

The type of message that can be passed to a renderer to direct it to transfer relevant resources to another renderer.

static final int

The renderer is disabled.

static final int

The renderer is enabled but not started.

static final int

The renderer is started.

From androidx.media3.exoplayer.RendererCapabilities
static final int

The Renderer can adapt between formats, but may suffer a brief discontinuity (~50-100ms) when adaptation occurs.

static final int

The Renderer does not support adaptation between formats.

static final int

The Renderer can seamlessly adapt between formats.

static final int

A mask to apply to Capabilities to obtain the AdaptiveSupport only.

static final int

The renderer supports audio offload and gapless transitions with this format.

static final int

Audio offload is not supported with this format.

static final int

The renderer supports audio offload and speed changes with this format.

static final int

The renderer supports audio offload with this format.

static final int

A mask to apply to Capabilities to obtain AudioOffloadSupport only.

static final int

The format exceeds the primary decoder's capabilities but is supported by fallback decoder

static final int

The format's MIME type is unsupported and the renderer may use a decoder for a fallback MIME type.

static final int

A mask to apply to Capabilities to obtain DecoderSupport only.

static final int

The renderer is able to use the primary decoder for the format's MIME type.

static final int

A mask to apply to Capabilities to obtain the C.FormatSupport only.

static final int

The renderer is not able to use hardware acceleration.

static final int

The renderer is able to use hardware acceleration.

static final int

A mask to apply to Capabilities to obtain HardwareAccelerationSupport only.

static final int

The Renderer does not support tunneled output.

static final int

The Renderer supports tunneled output.

static final int

A mask to apply to Capabilities to obtain TunnelingSupport only.

Inherited methods

From androidx.media3.exoplayer.BaseRenderer
final void

Clears the Listener.

final ExoPlaybackException
createRendererException(
    Throwable cause,
    @Nullable Format format,
    @PlaybackException.ErrorCode int errorCode
)

Creates an ExoPlaybackException of type TYPE_RENDERER for this renderer.

final