public final class ClippingMediaPeriod extends java.lang.Object implements MediaPeriod, MediaPeriod.Callback
MediaPeriod and clips its SampleStreams to provide a subsequence of their
samples.MediaPeriod.Callback| Modifier and Type | Field and Description |
|---|---|
MediaPeriod |
mediaPeriod
The
MediaPeriod wrapped by this clipping media period. |
| Constructor and Description |
|---|
ClippingMediaPeriod(MediaPeriod mediaPeriod)
Creates a new clipping media period that provides a clipped view of the specified
MediaPeriod's sample streams. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
continueLoading(long positionUs)
Attempts to continue loading.
|
void |
discardBuffer(long positionUs)
Discards buffered media up to the specified position.
|
long |
getBufferedPositionUs()
Returns an estimate of the position up to which data is buffered for the enabled tracks.
|
long |
getNextLoadPositionUs()
Returns the next load time, or
C.TIME_END_OF_SOURCE if loading has finished. |
TrackGroupArray |
getTrackGroups()
Returns the
TrackGroups exposed by the period. |
void |
maybeThrowPrepareError()
Throws an error that's preventing the period from becoming prepared.
|
void |
onContinueLoadingRequested(MediaPeriod source)
Called by the loader to indicate that it wishes for its
SequenceableLoader.continueLoading(long) method
to be called when it can continue to load data. |
void |
onPrepared(MediaPeriod mediaPeriod)
Called when preparation completes.
|
void |
prepare(MediaPeriod.Callback callback)
Prepares this media period asynchronously.
|
long |
readDiscontinuity()
Attempts to read a discontinuity.
|
long |
seekToUs(long positionUs)
Attempts to seek to the specified position in microseconds.
|
long |
selectTracks(TrackSelection[] selections,
boolean[] mayRetainStreamFlags,
SampleStream[] streams,
boolean[] streamResetFlags,
long positionUs)
Performs a track selection.
|
void |
setClipping(long startUs,
long endUs)
Sets the clipping start/end times for this period, in microseconds.
|
public final MediaPeriod mediaPeriod
MediaPeriod wrapped by this clipping media period.public ClippingMediaPeriod(MediaPeriod mediaPeriod)
MediaPeriod's sample streams.
The clipping start/end positions must be specified by calling setClipping(long, long)
on the playback thread before preparation completes.
mediaPeriod - The media period to clip.public void setClipping(long startUs,
long endUs)
startUs - The clipping start time, in microseconds.endUs - The clipping end time, in microseconds, or C.TIME_END_OF_SOURCE to
indicate the end of the period.public void prepare(MediaPeriod.Callback callback)
MediaPeriod
callback.onPrepared is called when preparation completes. If preparation fails,
MediaPeriod.maybeThrowPrepareError() will throw an IOException.
If preparation succeeds and results in a source timeline change (e.g. the period duration
becoming known), MediaSource.Listener.onSourceInfoRefreshed(Timeline, Object) will be
called before callback.onPrepared.
prepare in interface MediaPeriodcallback - Callback to receive updates from this period, including being notified when
preparation completes.public void maybeThrowPrepareError()
throws java.io.IOException
MediaPeriodThis method should only be called before the period has completed preparation.
maybeThrowPrepareError in interface MediaPeriodjava.io.IOException - The underlying error.public TrackGroupArray getTrackGroups()
MediaPeriodTrackGroups exposed by the period.
This method should only be called after the period has been prepared.
getTrackGroups in interface MediaPeriodTrackGroups.public long selectTracks(TrackSelection[] selections, boolean[] mayRetainStreamFlags, SampleStream[] streams, boolean[] streamResetFlags, long positionUs)
MediaPeriod
The call receives track selections for each renderer, mayRetainStreamFlags
indicating whether the existing SampleStream can be retained for each selection, and
the existing streams themselves. The call will update streams to reflect the
provided selections, clearing, setting and replacing entries as required. If an existing sample
stream is retained but with the requirement that the consuming renderer be reset, then the
corresponding flag in streamResetFlags will be set to true. This flag will also be set
if a new sample stream is created.
This method should only be called after the period has been prepared.
selectTracks in interface MediaPeriodselections - The renderer track selections.mayRetainStreamFlags - Flags indicating whether the existing sample stream can be retained
for each selection. A true value indicates that the selection is unchanged, and
that the caller does not require that the sample stream be recreated.streams - The existing sample streams, which will be updated to reflect the provided
selections.streamResetFlags - Will be updated to indicate new sample streams, and sample streams that
have been retained but with the requirement that the consuming renderer be reset.positionUs - The current playback position in microseconds.public void discardBuffer(long positionUs)
MediaPerioddiscardBuffer in interface MediaPeriodpositionUs - The position in microseconds.public long readDiscontinuity()
MediaPeriod
After this method has returned a value other than C.TIME_UNSET, all
SampleStreams provided by the period are guaranteed to start from a key frame.
readDiscontinuity in interface MediaPeriodC.TIME_UNSET.public long getBufferedPositionUs()
MediaPeriodThis method should only be called when at least one track is selected.
getBufferedPositionUs in interface MediaPeriodC.TIME_END_OF_SOURCE if the track is fully buffered.public long seekToUs(long positionUs)
MediaPeriod
After this method has been called, all SampleStreams provided by the period are
guaranteed to start from a key frame.
This method should only be called when at least one track is selected.
seekToUs in interface MediaPeriodpositionUs - The seek position in microseconds.public long getNextLoadPositionUs()
MediaPeriodC.TIME_END_OF_SOURCE if loading has finished.
This method should only be called after the period has been prepared. It may be called when no tracks are selected.
getNextLoadPositionUs in interface MediaPeriodgetNextLoadPositionUs in interface SequenceableLoaderpublic boolean continueLoading(long positionUs)
MediaPeriodThis method may be called both during and after the period has been prepared.
A period may call SequenceableLoader.Callback.onContinueLoadingRequested(SequenceableLoader) on the
MediaPeriod.Callback passed to MediaPeriod.prepare(Callback) to request that this method be called
when the period is permitted to continue loading data. A period may do this both during and
after preparation.
continueLoading in interface MediaPeriodcontinueLoading in interface SequenceableLoaderpositionUs - The current playback position.MediaPeriod.getNextLoadPositionUs() will return
a different value than prior to the call. False otherwise.public void onPrepared(MediaPeriod mediaPeriod)
MediaPeriod.Callback
Called on the playback thread. After invoking this method, the MediaPeriod can expect
for MediaPeriod.selectTracks(TrackSelection[], boolean[], SampleStream[], boolean[], long) to be
called with the initial track selection.
onPrepared in interface MediaPeriod.CallbackmediaPeriod - The prepared MediaPeriod.public void onContinueLoadingRequested(MediaPeriod source)
SequenceableLoader.CallbackSequenceableLoader.continueLoading(long) method
to be called when it can continue to load data. Called on the playback thread.onContinueLoadingRequested in interface SequenceableLoader.Callback<MediaPeriod>