public abstract class BaseRenderer extends java.lang.Object implements Renderer, RendererCapabilities
Renderer
implementations.Renderer.State
STATE_DISABLED, STATE_ENABLED, STATE_STARTED
ADAPTIVE_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 and Description |
---|
BaseRenderer(int trackType) |
Modifier and Type | Method and Description |
---|---|
void |
disable()
Disable the renderer, transitioning it to the
Renderer.STATE_DISABLED state. |
void |
enable(RendererConfiguration configuration,
Format[] formats,
SampleStream stream,
long positionUs,
boolean joining,
long offsetUs)
Enables the renderer to consume from the specified
SampleStream . |
RendererCapabilities |
getCapabilities()
Returns the capabilities of the renderer.
|
protected RendererConfiguration |
getConfiguration()
Returns the configuration set when the renderer was most recently enabled.
|
protected int |
getIndex()
Returns the index of the renderer within the player.
|
MediaClock |
getMediaClock()
If the renderer advances its own playback position then this method returns a corresponding
MediaClock . |
int |
getState()
Returns the current state of the renderer.
|
SampleStream |
getStream()
Returns the
SampleStream being consumed, or null if the renderer is disabled. |
protected Format[] |
getStreamFormats()
Returns the formats of the currently enabled stream.
|
int |
getTrackType()
Returns the track type that the
Renderer handles. |
void |
handleMessage(int what,
java.lang.Object object)
Handles a message delivered to the target.
|
boolean |
hasReadStreamToEnd()
Returns whether the renderer has read the current
SampleStream to the end. |
boolean |
isCurrentStreamFinal()
Returns whether the current
SampleStream will be the final one supplied before the
renderer is next disabled or reset. |
protected boolean |
isSourceReady()
Returns whether the upstream source is ready.
|
void |
maybeThrowStreamError()
Throws an error that's preventing the renderer from reading from its
SampleStream . |
protected void |
onDisabled()
Called when the renderer is disabled.
|
protected void |
onEnabled(boolean joining)
Called when the renderer is enabled.
|
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.
|
protected void |
onStreamChanged(Format[] formats,
long offsetUs)
Called when the renderer's stream has changed.
|
protected int |
readSource(FormatHolder formatHolder,
DecoderInputBuffer buffer,
boolean formatRequired)
Reads from the enabled upstream source.
|
void |
replaceStream(Format[] formats,
SampleStream stream,
long offsetUs)
Replaces the
SampleStream from which samples will be consumed. |
void |
resetPosition(long positionUs)
Signals to the renderer that a position discontinuity has occurred.
|
void |
setCurrentStreamFinal()
Signals to the renderer that the current
SampleStream will be the final one supplied
before it is next disabled or reset. |
void |
setIndex(int index)
Sets the index of this renderer within the player.
|
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. |
void |
start()
Starts the renderer, meaning that calls to
Renderer.render(long, long) will cause media to be
rendered. |
void |
stop()
Stops the renderer, transitioning it to the
Renderer.STATE_ENABLED state. |
protected static boolean |
supportsFormatDrm(DrmSessionManager<?> drmSessionManager,
DrmInitData drmInitData)
Returns whether
drmSessionManager supports the specified drmInitData , or true
if drmInitData is null. |
int |
supportsMixedMimeTypeAdaptation()
Returns the extent to which the
Renderer supports adapting between supported formats
that have different mime types. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
supportsFormat
public BaseRenderer(int trackType)
trackType
- The track type that the renderer handles. One of the C
TRACK_TYPE_*
constants.public final int getTrackType()
Renderer
Renderer
handles. For example, a video renderer will
return C.TRACK_TYPE_VIDEO
, an audio renderer will return C.TRACK_TYPE_AUDIO
, a
text renderer will return C.TRACK_TYPE_TEXT
, and so on.getTrackType
in interface Renderer
getTrackType
in interface RendererCapabilities
TRACK_TYPE_*
constants defined in C
.Renderer.getTrackType()
public final RendererCapabilities getCapabilities()
Renderer
getCapabilities
in interface Renderer
public final void setIndex(int index)
Renderer
public MediaClock getMediaClock()
Renderer
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.getMediaClock
in interface Renderer
MediaClock
tracking the playback position of the renderer, or null.public final int getState()
Renderer
getState
in interface Renderer
Renderer.STATE_DISABLED
, Renderer.STATE_ENABLED
and Renderer.STATE_STARTED
.public final void enable(RendererConfiguration configuration, Format[] formats, SampleStream stream, long positionUs, boolean joining, long offsetUs) throws ExoPlaybackException
Renderer
SampleStream
.
This method may be called when the renderer is in the following states:
Renderer.STATE_DISABLED
.
enable
in interface Renderer
configuration
- The renderer configuration.formats
- The enabled formats.stream
- The SampleStream
from which the renderer should consume.positionUs
- The player's current position.joining
- Whether this renderer is being enabled to join an ongoing playback.offsetUs
- The offset to be added to timestamps of buffers read from stream
before they are rendered.ExoPlaybackException
- If an error occurs.public final void start() throws ExoPlaybackException
Renderer
Renderer.render(long, long)
will cause media to be
rendered.
This method may be called when the renderer is in the following states:
Renderer.STATE_ENABLED
.
start
in interface Renderer
ExoPlaybackException
- If an error occurs.public final void replaceStream(Format[] formats, SampleStream stream, long offsetUs) throws ExoPlaybackException
Renderer
SampleStream
from which samples will be consumed.
This method may be called when the renderer is in the following states:
Renderer.STATE_ENABLED
, Renderer.STATE_STARTED
.
replaceStream
in interface Renderer
formats
- The enabled formats.stream
- The SampleStream
from which the renderer should consume.offsetUs
- The offset to be added to timestamps of buffers read from stream
before
they are rendered.ExoPlaybackException
- If an error occurs.public final SampleStream getStream()
Renderer
SampleStream
being consumed, or null if the renderer is disabled.public final boolean hasReadStreamToEnd()
Renderer
SampleStream
to the end.
This method may be called when the renderer is in the following states:
Renderer.STATE_ENABLED
, Renderer.STATE_STARTED
.
hasReadStreamToEnd
in interface Renderer
public final void setCurrentStreamFinal()
Renderer
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:
Renderer.STATE_ENABLED
, Renderer.STATE_STARTED
.
setCurrentStreamFinal
in interface Renderer
public final boolean isCurrentStreamFinal()
Renderer
SampleStream
will be the final one supplied before the
renderer is next disabled or reset.isCurrentStreamFinal
in interface Renderer
public final void maybeThrowStreamError() throws java.io.IOException
Renderer
SampleStream
. Does
nothing if no such error exists.
This method may be called when the renderer is in the following states:
Renderer.STATE_ENABLED
, Renderer.STATE_STARTED
.
maybeThrowStreamError
in interface Renderer
java.io.IOException
- An error that's preventing the renderer from making progress or buffering
more data.public final void resetPosition(long positionUs) throws ExoPlaybackException
Renderer
After a position discontinuity, the renderer's SampleStream
is guaranteed to provide
samples starting from a key frame.
This method may be called when the renderer is in the following states:
Renderer.STATE_ENABLED
, Renderer.STATE_STARTED
.
resetPosition
in interface Renderer
positionUs
- The new playback position in microseconds.ExoPlaybackException
- If an error occurs handling the reset.public final void stop() throws ExoPlaybackException
Renderer
Renderer.STATE_ENABLED
state.
This method may be called when the renderer is in the following states:
Renderer.STATE_STARTED
.
stop
in interface Renderer
ExoPlaybackException
- If an error occurs.public final void disable()
Renderer
Renderer.STATE_DISABLED
state.
This method may be called when the renderer is in the following states:
Renderer.STATE_ENABLED
.
public int supportsMixedMimeTypeAdaptation() throws ExoPlaybackException
RendererCapabilities
Renderer
supports adapting between supported formats
that have different mime types.supportsMixedMimeTypeAdaptation
in interface RendererCapabilities
RendererCapabilities.ADAPTIVE_SEAMLESS
, RendererCapabilities.ADAPTIVE_NOT_SEAMLESS
and
RendererCapabilities.ADAPTIVE_NOT_SUPPORTED
.ExoPlaybackException
- If an error occurs.public void handleMessage(int what, java.lang.Object object) throws ExoPlaybackException
PlayerMessage.Target
handleMessage
in interface PlayerMessage.Target
what
- The message type.object
- 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.protected void onEnabled(boolean joining) throws ExoPlaybackException
The default implementation is a no-op.
joining
- Whether this renderer is being enabled to join an ongoing playback.ExoPlaybackException
- If an error occurs.protected void onStreamChanged(Format[] formats, long offsetUs) throws ExoPlaybackException
onEnabled(boolean)
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.
formats
- The enabled formats.offsetUs
- The offset that will be added to the timestamps of buffers read via
readSource(FormatHolder, DecoderInputBuffer, boolean)
so that decoder input
buffers have monotonically increasing timestamps.ExoPlaybackException
- If an error occurs.protected void onPositionReset(long positionUs, boolean joining) throws ExoPlaybackException
onStreamChanged(Format[], 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.
positionUs
- 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() throws ExoPlaybackException
The default implementation is a no-op.
ExoPlaybackException
- If an error occurs.protected void onStopped() throws ExoPlaybackException
The default implementation is a no-op.
ExoPlaybackException
- If an error occurs.protected void onDisabled()
The default implementation is a no-op.
protected final Format[] getStreamFormats()
protected final RendererConfiguration getConfiguration()
protected final int getIndex()
protected final int readSource(FormatHolder formatHolder, DecoderInputBuffer buffer, boolean formatRequired)
C.RESULT_BUFFER_READ
is only returned if setCurrentStreamFinal()
has been
called. C.RESULT_NOTHING_READ
is returned otherwise.formatHolder
- A FormatHolder
to populate in the case of reading a format.buffer
- A DecoderInputBuffer
to populate in the case of reading a sample or the
end of the stream. If the end of the stream has been reached, the
C.BUFFER_FLAG_END_OF_STREAM
flag will be set on the buffer.formatRequired
- Whether the caller requires that the format of the stream be read even if
it's not changing. A sample will never be read if set to true, however it is still possible
for the end of stream or nothing to be read.C.RESULT_NOTHING_READ
, C.RESULT_FORMAT_READ
or
C.RESULT_BUFFER_READ
.protected int skipSource(long positionUs)
positionUs
is beyond it.positionUs
- The position in microseconds.protected final boolean isSourceReady()
protected static boolean supportsFormatDrm(@Nullable DrmSessionManager<?> drmSessionManager, @Nullable DrmInitData drmInitData)
drmSessionManager
supports the specified drmInitData
, or true
if drmInitData
is null.drmSessionManager
- The drm session manager.drmInitData
- DrmInitData
of the format to check for support.drmSessionManager
supports the specified drmInitData
, or
true if drmInitData
is null.