MediaCodecAudioRenderer
@UnstableApi
public class MediaCodecAudioRenderer extends MediaCodecRenderer implements MediaClock
| java.lang.Object | |||
| ↳ | androidx.media3.exoplayer.BaseRenderer | ||
| ↳ | androidx.media3.exoplayer.mediacodec.MediaCodecRenderer | ||
| ↳ | androidx.media3.exoplayer.audio.MediaCodecAudioRenderer |
Decodes and renders audio using MediaCodec and an AudioSink.
This renderer accepts the following messages sent via createMessage on the playback thread:
- Message with type
MSG_SET_VOLUMEto set the volume. The message payload should be aFloatwith 0 being silence and 1 being unity gain. - Message with type
MSG_SET_AUDIO_ATTRIBUTESto set the audio attributes. The message payload should be anAudioAttributesinstance that will configure the underlying audio track. - Message with type
MSG_SET_AUX_EFFECT_INFOto set the auxiliary effect. The message payload should be anAuxEffectInfoinstance that will configure the underlying audio track. - Message with type
MSG_SET_PREFERRED_AUDIO_DEVICEto set the preferred audio output device. The message payload should be anAudioDeviceInfoinstance. - Message with type
MSG_SET_VIRTUAL_DEVICE_IDto set the virtual device id. The message payload should be anIntegerfor the virtual device id orINDEX_UNSETif unspecified. - Message with type
MSG_SET_SKIP_SILENCE_ENABLEDto enable or disable skipping silences. The message payload should be aBoolean. - Message with type
MSG_SET_AUDIO_SESSION_IDto set the audio session ID. The message payload should be a session IDIntegerthat will be attached to the underlying audio track. - Message with type
MSG_SET_PRIORITYto set the priority of the renderer. The message payload should be anInteger. - Message with type
MSG_SET_AUDIO_OUTPUT_PROVIDERto set the audio output provider. The message payload must be anAudioOutputProviderinstance.
Summary
Public constructors |
|---|
MediaCodecAudioRenderer( |
MediaCodecAudioRenderer( |
MediaCodecAudioRenderer( |
MediaCodecAudioRenderer( |
This method is deprecated. Use a constructor without |
MediaCodecAudioRenderer(Creates a new instance. |
MediaCodecAudioRenderer(Creates a new instance. |
Public methods |
|
|---|---|
@Nullable MediaClock |
If the renderer advances its own playback position then this method returns a corresponding |
String |
getName()Returns the name of this renderer, for logging and debugging purposes. |
PlaybackParameters |
Returns the active playback parameters. |
long |
Returns the current media position in microseconds. |
void |
handleMessage(Handles a message delivered to the target. |
boolean |
Returns whether there is a skipped silence since the last call to this method. |
boolean |
isEnded()Whether the renderer is ready for the |
boolean |
isReady()Whether the renderer is able to immediately render media from the current position. |
void |
setPlaybackParameters(PlaybackParameters playbackParameters)Attempts to set the playback parameters. |
Protected methods |
|
|---|---|
DecoderReuseEvaluation |
canReuseCodec(Evaluates whether the existing |
int |
getCodecMaxInputSize(Returns a maximum input size suitable for configuring a codec for |
float |
getCodecOperatingRateV23(Returns the |
List<MediaCodecInfo> |
getDecoderInfos(Returns a list of decoders that can decode media in the specified format, in priority order. |
long |
getDurationToProgressUs(Returns minimum time playback must advance in order for the |
MediaCodecAdapter.Configuration |
getMediaCodecConfiguration(Returns the |
MediaFormat |
getMediaFormat(Returns the framework |
void |
Handles supplemental data associated with an input buffer. |
void |
onCodecError(Exception codecError)Called when a codec error has occurred. |
void |
onCodecInitialized(Called when a |
void |
onCodecReleased(String name)Called when a |
void |
Called when the renderer is disabled. |
void |
onEnabled(boolean joining, boolean mayRenderStartOfStream)Called when the renderer is enabled. |
@Nullable DecoderReuseEvaluation |
onInputFormatChanged(FormatHolder formatHolder)Called when a new |
void |
onOutputFormatChanged(Format format, @Nullable MediaFormat mediaFormat)Called when one of the output formats changes. |
void |
onOutputStreamOffsetUsChanged(long outputStreamOffsetUs)Called after the output stream offset changes. |
void |
|
void |
onPositionReset(Called when the position is reset. |
void |
Called after the last output buffer before a stream change has been processed. |
void |
Called when the renderer is released. |
void |
onReset()Called when the renderer is reset. |
void |
Called when the renderer is started. |
void |
Called when the renderer is stopped. |
boolean |
processOutputBuffer(Processes an output media buffer. |
void |
Incrementally renders any remaining output. |
boolean |
shouldUseBypass(Format format)Returns whether buffers in the input format can be processed without a codec. |
int |
@RendererCapabilities.CapabilitiesReturns the |
Inherited Constants |
||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Inherited fields |
||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||
Inherited methods |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Public constructors
MediaCodecAudioRenderer
public MediaCodecAudioRenderer(
Context context,
MediaCodecSelector mediaCodecSelector
)
| Parameters | |
|---|---|
Context context |
A context. |
MediaCodecSelector mediaCodecSelector |
A decoder selector. |
MediaCodecAudioRenderer
public MediaCodecAudioRenderer(
Context context,
MediaCodecSelector mediaCodecSelector,
@Nullable Handler eventHandler,
@Nullable AudioRendererEventListener eventListener
)
| Parameters | |
|---|---|
Context context |
A context. |
MediaCodecSelector mediaCodecSelector |
A decoder selector. |
@Nullable Handler eventHandler |
A handler to use when delivering events to |
@Nullable AudioRendererEventListener eventListener |
A listener of events. May be null if delivery of events is not required. |
MediaCodecAudioRenderer
public MediaCodecAudioRenderer(
Context context,
MediaCodecSelector mediaCodecSelector,
@Nullable Handler eventHandler,
@Nullable AudioRendererEventListener eventListener,
AudioSink audioSink
)
| Parameters | |
|---|---|
Context context |
A context. |
MediaCodecSelector mediaCodecSelector |
A decoder selector. |
@Nullable Handler eventHandler |
A handler to use when delivering events to |
@Nullable AudioRendererEventListener eventListener |
A listener of events. May be null if delivery of events is not required. |
AudioSink audioSink |
The sink to which audio will be output. |
MediaCodecAudioRenderer
public MediaCodecAudioRenderer(
Context context,
MediaCodecSelector mediaCodecSelector,
boolean enableDecoderFallback,
@Nullable Handler eventHandler,
@Nullable AudioRendererEventListener eventListener,
AudioSink audioSink
)
| Parameters | |
|---|---|
Context context |
A context. |
MediaCodecSelector mediaCodecSelector |
A decoder selector. |
boolean enableDecoderFallback |
Whether to enable fallback to lower-priority decoders if decoder initialization fails. This may result in using a decoder that is slower/less efficient than the primary decoder. |
@Nullable Handler eventHandler |
A handler to use when delivering events to |
@Nullable AudioRendererEventListener eventListener |
A listener of events. May be null if delivery of events is not required. |
AudioSink audioSink |
The sink to which audio will be output. |
MediaCodecAudioRenderer
publicMediaCodecAudioRenderer(
Context context,
MediaCodecSelector mediaCodecSelector,
@Nullable Handler eventHandler,
@Nullable AudioRendererEventListener eventListener,
AudioCapabilities audioCapabilities,
AudioProcessor[] audioProcessors
)
MediaCodecAudioRenderer
public MediaCodecAudioRenderer(
Context context,
MediaCodecAdapter.Factory codecAdapterFactory,
MediaCodecSelector mediaCodecSelector,
boolean enableDecoderFallback,
@Nullable Handler eventHandler,
@Nullable AudioRendererEventListener eventListener,
AudioSink audioSink
)
Creates a new instance.
| Parameters | |
|---|---|
Context context |
A context. |
MediaCodecAdapter.Factory codecAdapterFactory |
The |
MediaCodecSelector mediaCodecSelector |
A decoder selector. |
boolean enableDecoderFallback |
Whether to enable fallback to lower-priority decoders if decoder initialization fails. This may result in using a decoder that is slower/less efficient than the primary decoder. |
@Nullable Handler eventHandler |
A handler to use when delivering events to |
@Nullable AudioRendererEventListener eventListener |
A listener of events. May be null if delivery of events is not required. |
AudioSink audioSink |
The sink to which audio will be output. |
MediaCodecAudioRenderer
public MediaCodecAudioRenderer(
Context context,
MediaCodecAdapter.Factory codecAdapterFactory,
MediaCodecSelector mediaCodecSelector,
boolean enableDecoderFallback,
@Nullable Handler eventHandler,
@Nullable AudioRendererEventListener eventListener,
AudioSink audioSink,
@Nullable LoudnessCodecController loudnessCodecController
)
Creates a new instance.
| Parameters | |
|---|---|
Context context |
A context. |
MediaCodecAdapter.Factory codecAdapterFactory |
The |
MediaCodecSelector mediaCodecSelector |
A decoder selector. |
boolean enableDecoderFallback |
Whether to enable fallback to lower-priority decoders if decoder initialization fails. This may result in using a decoder that is slower/less efficient than the primary decoder. |
@Nullable Handler eventHandler |
A handler to use when delivering events to |
@Nullable AudioRendererEventListener eventListener |
A listener of events. May be null if delivery of events is not required. |
AudioSink audioSink |
The sink to which audio will be output. |
@Nullable LoudnessCodecController loudnessCodecController |
The |
Public methods
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 |
getName
public String getName()
Returns the name of this renderer, for logging and debugging purposes. Should typically be the renderer's (un-obfuscated) class name.
| Returns | |
|---|---|
String |
The name of this renderer. |
getPlaybackParameters
public PlaybackParameters getPlaybackParameters()
Returns the active playback parameters.
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. |
hasSkippedSilenceSinceLastCall
public boolean hasSkippedSilenceSinceLastCall()
Returns whether there is a skipped silence since the last call to this method.
isEnded
public boolean isEnded()
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
public boolean isReady()
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. |
setPlaybackParameters
public void setPlaybackParameters(PlaybackParameters playbackParameters)
Attempts to set the playback parameters. The media clock may override the speed if changing the playback parameters is not supported.
| Parameters | |
|---|---|
PlaybackParameters playbackParameters |
The playback parameters to attempt to set. |
Protected methods
canReuseCodec
protected 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.
The default implementation does not allow decoder reuse.
| Parameters | |
|---|---|
MediaCodecInfo codecInfo |
A |
Format oldFormat |
The |
Format newFormat |
The new |
| Returns | |
|---|---|
DecoderReuseEvaluation |
The result of the evaluation. |
getCodecMaxInputSize
protected int getCodecMaxInputSize(
MediaCodecInfo codecInfo,
Format format,
Format[] streamFormats
)
Returns a maximum input size suitable for configuring a codec for format in a way that will allow possible adaptation to other compatible formats in streamFormats.
| Parameters | |
|---|---|
MediaCodecInfo codecInfo |
A |
Format format |
The |
Format[] streamFormats |
The possible stream formats. |
| Returns | |
|---|---|
int |
A suitable maximum input size. |
getCodecOperatingRateV23
protected 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.
The default implementation returns CODEC_OPERATING_RATE_UNSET.
| Parameters | |
|---|---|
float targetPlaybackSpeed |
The target factor by which playback should be sped up. This may be different from the current playback speed, for example, if the speed is temporarily adjusted for live playback. |
Format format |
The |
Format[] streamFormats |
The possible stream formats. |
| Returns | |
|---|---|
float |
The codec operating rate, or |
getDecoderInfos
protected 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.
| Parameters | |
|---|---|
MediaCodecSelector mediaCodecSelector |
The decoder selector. |
Format format |
The |
boolean requiresSecureDecoder |
Whether a secure decoder is required. |
| Returns | |
|---|---|
List<MediaCodecInfo> |
A list of |
| Throws | |
|---|---|
androidx.media3.exoplayer.mediacodec.MediaCodecUtil.DecoderQueryException |
Thrown if there was an error querying decoders. |
getDurationToProgressUs
protected long getDurationToProgressUs(
long positionUs,
long elapsedRealtimeUs,
boolean isOnBufferAvailableListenerRegistered
)
Returns minimum time playback must advance in order for the render call to make progress.
If the Renderer has a registered MediaCodecAdapter.OnBufferAvailableListener, then the Renderer will be notified when decoder input and output buffers become available. These callbacks may affect the calculated minimum time playback must advance before a render call can make progress.
| Parameters | |
|---|---|
long positionUs |
The current media time in microseconds, measured at the start of the current iteration of the rendering loop. |
long elapsedRealtimeUs |
|
boolean isOnBufferAvailableListenerRegistered |
Whether the |
| Returns | |
|---|---|
long |
minimum time playback must advance before renderer is able to make progress. |
getMediaCodecConfiguration
protected 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.
| Parameters | |
|---|---|
MediaCodecInfo codecInfo |
Information about the |
Format format |
The |
@Nullable MediaCrypto crypto |
For drm protected playbacks, a |
float codecOperatingRate |
The codec operating rate, or |
| Returns | |
|---|---|
MediaCodecAdapter.Configuration |
The parameters needed to call configure. |
getMediaFormat
protected MediaFormat getMediaFormat(
Format format,
String codecMimeType,
int codecMaxInputSize,
float codecOperatingRate
)
Returns the framework MediaFormat that can be used to configure a MediaCodec for decoding the given Format for playback.
| Parameters | |
|---|---|
Format format |
The |
String codecMimeType |
The MIME type handled by the codec. |
int codecMaxInputSize |
The maximum input size supported by the codec. |
float codecOperatingRate |
The codec operating rate, or |
| Returns | |
|---|---|
MediaFormat |
The framework |
handleInputBufferSupplementalData
protected void handleInputBufferSupplementalData(DecoderInputBuffer buffer)
Handles supplemental data associated with an input buffer.
The default implementation is a no-op.
| Parameters | |
|---|---|
DecoderInputBuffer buffer |
The input buffer that is about to be queued. |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
Thrown if an error occurs handling supplemental data. |
onCodecError
protected void onCodecError(Exception codecError)
Called when a codec error has occurred.
The default implementation is a no-op.
| Parameters | |
|---|---|
Exception codecError |
The error. |
onCodecInitialized
protected void onCodecInitialized(
String name,
MediaCodecAdapter.Configuration configuration,
long initializedTimestampMs,
long initializationDurationMs
)
Called when a MediaCodec has been created and configured.
The default implementation is a no-op.
| Parameters | |
|---|---|
String name |
The name of the codec that was initialized. |
MediaCodecAdapter.Configuration configuration |
The |
long initializedTimestampMs |
|
long initializationDurationMs |
The time taken to initialize the codec in milliseconds. |
onCodecReleased
protected void onCodecReleased(String name)
Called when a MediaCodec has been released.
The default implementation is a no-op.
| Parameters | |
|---|---|
String name |
The name of the codec that was released. |
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. |
onInputFormatChanged
protected @Nullable DecoderReuseEvaluation onInputFormatChanged(FormatHolder formatHolder)
Called when a new Format is read from the upstream MediaPeriod.
| Parameters | |
|---|---|
FormatHolder formatHolder |
A |
| Returns | |
|---|---|
@Nullable DecoderReuseEvaluation |
The result of the evaluation to determine whether the existing decoder instance can be reused for the new format, or |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs re-initializing the |
onOutputFormatChanged
protected void onOutputFormatChanged(Format format, @Nullable MediaFormat mediaFormat)
Called when one of the output formats changes.
The default implementation is a no-op.
| Parameters | |
|---|---|
Format format |
The input |
@Nullable MediaFormat mediaFormat |
The codec output |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
Thrown if an error occurs configuring the output. |
onOutputStreamOffsetUsChanged
protected void onOutputStreamOffsetUsChanged(long outputStreamOffsetUs)
Called after the output stream offset changes.
The default implementation is a no-op.
| Parameters | |
|---|---|
long outputStreamOffsetUs |
The output stream offset in microseconds. |
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. |
onProcessedStreamChange
protected void onProcessedStreamChange()
Called after the last output buffer before a stream change has been processed.
onRelease
protected void onRelease()
Called when the renderer is released.
The default implementation is a no-op.
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.
processOutputBuffer
protected 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.
When a new ByteBuffer is passed to this method its position and limit delineate the data to be processed. The return value indicates whether the buffer was processed in full. If true is returned then the next call to this method will receive a new buffer to be processed. If false is returned then the same buffer will be passed to the next call. An implementation of this method is free to modify the buffer and can assume that the buffer will not be externally modified between successive calls. Hence an implementation can, for example, modify the buffer's position to keep track of how much of the data it has processed.
Note that the first call to this method following a call to onPositionReset will always receive a new ByteBuffer to be processed.
| Parameters | |
|---|---|
long positionUs |
The current media time in microseconds, measured at the start of the current iteration of the rendering loop. |
long elapsedRealtimeUs |
|
@Nullable MediaCodecAdapter codec |
The |
@Nullable ByteBuffer buffer |
The output buffer to process, or null if the buffer data is not made available to the application layer (see |
int bufferIndex |
The index of the output buffer. |
int bufferFlags |
The flags attached to the output buffer. |
int sampleCount |
The number of samples extracted from the sample queue in the buffer. This allows handling multiple samples as a batch for efficiency. |
long bufferPresentationTimeUs |
The presentation time of the output buffer in microseconds. |
boolean isDecodeOnlyBuffer |
Whether the buffer timestamp is less than the intended playback start position. |
boolean isLastBuffer |
Whether the buffer is known to contain the last sample of the current stream. This flag is set on a best effort basis, and any logic relying on it should degrade gracefully to handle cases where it's not set. |
Format format |
The |
| Returns | |
|---|---|
boolean |
Whether the output buffer was fully processed (for example, rendered or skipped). |
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
If an error occurs processing the output buffer. |
renderToEndOfStream
protected void renderToEndOfStream()
Incrementally renders any remaining output.
The default implementation is a no-op.
| Throws | |
|---|---|
androidx.media3.exoplayer.ExoPlaybackException |
Thrown if an error occurs rendering remaining output. |
shouldUseBypass
protected boolean shouldUseBypass(Format format)
Returns whether buffers in the input format can be processed without a codec.
This method is only called if the content is not DRM protected, because if the content is DRM protected use of bypass is never possible.
| Returns | |
|---|---|
boolean |
Whether playback bypassing |
supportsFormat
@RendererCapabilities.Capabilities
protected int supportsFormat(MediaCodecSelector mediaCodecSelector, Format format)
Returns the Capabilities for the given Format.
| Parameters | |
|---|---|
MediaCodecSelector mediaCodecSelector |
The decoder selector. |
Format format |
The |
| Returns | |
|---|---|
int |
The |
| Throws | |
|---|---|
androidx.media3.exoplayer.mediacodec.MediaCodecUtil.DecoderQueryException |
If there was an error querying decoders. |