MediaPeriod, SequenceableLoaderpublic class FakeMediaPeriod extends Object implements MediaPeriod
MediaPeriod that provides tracks from the given TrackGroupArray.| Modifier and Type | Class | Description |
|---|---|---|
static interface |
FakeMediaPeriod.TrackDataFactory |
A factory to create the test data for a particular track.
|
MediaPeriod.Callback| Constructor | Description |
|---|---|
FakeMediaPeriod(TrackGroupArray trackGroupArray,
Allocator allocator,
long singleSampleTimeUs,
MediaSourceEventListener.EventDispatcher mediaSourceEventDispatcher) |
Constructs a FakeMediaPeriod with a single sample for each track in
trackGroupArray. |
FakeMediaPeriod(TrackGroupArray trackGroupArray,
Allocator allocator,
long singleSampleTimeUs,
MediaSourceEventListener.EventDispatcher mediaSourceEventDispatcher,
DrmSessionManager drmSessionManager,
DrmSessionEventListener.EventDispatcher drmEventDispatcher,
boolean deferOnPrepared) |
Constructs a FakeMediaPeriod with a single sample for each track in
trackGroupArray. |
FakeMediaPeriod(TrackGroupArray trackGroupArray,
Allocator allocator,
FakeMediaPeriod.TrackDataFactory trackDataFactory,
MediaSourceEventListener.EventDispatcher mediaSourceEventDispatcher,
DrmSessionManager drmSessionManager,
DrmSessionEventListener.EventDispatcher drmEventDispatcher,
boolean deferOnPrepared) |
Constructs a FakeMediaPeriod.
|
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
continueLoading(long positionUs) |
Attempts to continue loading.
|
protected FakeSampleStream |
createSampleStream(Allocator allocator,
MediaSourceEventListener.EventDispatcher mediaSourceEventDispatcher,
DrmSessionManager drmSessionManager,
DrmSessionEventListener.EventDispatcher drmEventDispatcher,
Format initialFormat,
List<FakeSampleStream.FakeSampleStreamItem> fakeSampleStreamItems) |
Creates a new
FakeSampleStream. |
void |
discardBuffer(long positionUs,
boolean toKeyframe) |
Discards buffered media up to the specified position.
|
long |
getAdjustedSeekPositionUs(long positionUs,
SeekParameters seekParameters) |
Returns the position to which a seek will be performed, given the specified seek position and
SeekParameters. |
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. |
boolean |
isLoading() |
Returns whether the media period is currently loading.
|
void |
maybeThrowPrepareError() |
Throws an error that's preventing the period from becoming prepared.
|
void |
prepare(MediaPeriod.Callback callback,
long positionUs) |
Prepares this media period asynchronously.
|
long |
readDiscontinuity() |
Attempts to read a discontinuity.
|
void |
reevaluateBuffer(long positionUs) |
Re-evaluates the buffer given the playback position.
|
void |
release() |
Releases the media period.
|
long |
seekToUs(long positionUs) |
Attempts to seek to the specified position in microseconds.
|
long |
selectTracks(@NullableType ExoTrackSelection[] selections,
boolean[] mayRetainStreamFlags,
@NullableType SampleStream[] streams,
boolean[] streamResetFlags,
long positionUs) |
Performs a track selection.
|
void |
setDiscontinuityPositionUs(long discontinuityPositionUs) |
Sets a discontinuity position to be returned from the next call to
readDiscontinuity(). |
void |
setPreparationComplete() |
Allows the fake media period to complete preparation.
|
void |
setSeekToUsOffset(long seekOffsetUs) |
Sets an offset to be applied to positions returned by
seekToUs(long). |
getStreamKeyspublic FakeMediaPeriod(TrackGroupArray trackGroupArray, Allocator allocator, long singleSampleTimeUs, MediaSourceEventListener.EventDispatcher mediaSourceEventDispatcher)
trackGroupArray.trackGroupArray - The track group array.allocator - An Allocator.singleSampleTimeUs - The timestamp to use for the single sample in each track, in
microseconds.mediaSourceEventDispatcher - A dispatcher for MediaSourceEventListener events.public FakeMediaPeriod(TrackGroupArray trackGroupArray, Allocator allocator, long singleSampleTimeUs, MediaSourceEventListener.EventDispatcher mediaSourceEventDispatcher, DrmSessionManager drmSessionManager, DrmSessionEventListener.EventDispatcher drmEventDispatcher, boolean deferOnPrepared)
trackGroupArray.trackGroupArray - The track group array.allocator - An Allocator.singleSampleTimeUs - The timestamp to use for the single sample in each track, in
microseconds.mediaSourceEventDispatcher - A dispatcher for MediaSourceEventListener events.drmSessionManager - The DrmSessionManager used for DRM interactions.drmEventDispatcher - A dispatcher for DrmSessionEventListener events.deferOnPrepared - Whether MediaPeriod.Callback.onPrepared(MediaPeriod) should be called only
after setPreparationComplete() has been called. If false preparation
completes immediately.public FakeMediaPeriod(TrackGroupArray trackGroupArray, Allocator allocator, FakeMediaPeriod.TrackDataFactory trackDataFactory, MediaSourceEventListener.EventDispatcher mediaSourceEventDispatcher, DrmSessionManager drmSessionManager, DrmSessionEventListener.EventDispatcher drmEventDispatcher, boolean deferOnPrepared)
trackGroupArray - The track group array.allocator - An Allocator.trackDataFactory - The FakeMediaPeriod.TrackDataFactory creating the data.mediaSourceEventDispatcher - A dispatcher for media source events.drmSessionManager - The DrmSessionManager used for DRM interactions.drmEventDispatcher - A dispatcher for DrmSessionEventListener events.deferOnPrepared - Whether MediaPeriod.Callback.onPrepared(MediaPeriod) should be called only
after setPreparationComplete() has been called. If false preparation
completes immediately.public void setDiscontinuityPositionUs(long discontinuityPositionUs)
readDiscontinuity().discontinuityPositionUs - The position to be returned, in microseconds.public void setPreparationComplete()
public void setSeekToUsOffset(long seekOffsetUs)
seekToUs(long).seekOffsetUs - The offset to be applied, in microseconds.public void release()
public void prepare(MediaPeriod.Callback callback, long positionUs)
MediaPeriodcallback.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.MediaSourceCaller.onSourceInfoRefreshed(MediaSource, Timeline) will be
called before callback.onPrepared.
prepare in interface MediaPeriodcallback - Callback to receive updates from this period, including being notified when
preparation completes.positionUs - The expected starting position, in microseconds.public void maybeThrowPrepareError()
throws IOException
MediaPeriodThis method is only called before the period has completed preparation.
maybeThrowPrepareError in interface MediaPeriodIOException - The underlying error.public TrackGroupArray getTrackGroups()
MediaPeriodTrackGroups exposed by the period.
This method is only called after the period has been prepared.
getTrackGroups in interface MediaPeriodTrackGroups.public long selectTracks(@NullableType ExoTrackSelection[] selections, boolean[] mayRetainStreamFlags, @NullableType SampleStream[] streams, boolean[] streamResetFlags, long positionUs)
MediaPeriodThe 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.
Note that previously passed TrackSelections are no longer valid,
and any references to them must be updated to point to the new selections.
This method is only 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 track selection. A true value indicates that the selection is equivalent
to the one that was previously passed, and that the caller does not require that the sample
stream be recreated. If a retained sample stream holds any references to the track
selection then they must be updated to point to the new selection.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. If playback of this period has
not yet started, the value will be the starting position.public void discardBuffer(long positionUs,
boolean toKeyframe)
MediaPeriodThis method is only called after the period has been prepared.
discardBuffer in interface MediaPeriodpositionUs - The position in microseconds.toKeyframe - If true then for each track discards samples up to the keyframe before or at
the specified position, rather than any sample before or at that position.public void reevaluateBuffer(long positionUs)
MediaPeriodThis method is only called after the period has been prepared.
A period may choose to discard buffered media or cancel ongoing loads so that media can be re-buffered in a different quality.
reevaluateBuffer in interface MediaPeriodreevaluateBuffer in interface SequenceableLoaderpositionUs - The current playback position in microseconds. If playback of this period has
not yet started, the value will be the starting position in this period minus the duration
of any media in previous periods still to be played.public long readDiscontinuity()
MediaPeriodAfter 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.
This method is only called after the period has been prepared and before reading from any
SampleStreams provided by the period.
readDiscontinuity in interface MediaPeriodC.TIME_UNSET.public long getBufferedPositionUs()
MediaPeriodThis method is only called when at least one track is selected.
getBufferedPositionUs in interface MediaPeriodgetBufferedPositionUs in interface SequenceableLoaderC.TIME_END_OF_SOURCE if the track is fully buffered.public long seekToUs(long positionUs)
MediaPeriodAfter this method has been called, all SampleStreams provided by the period are
guaranteed to start from a key frame.
This method is only called when at least one track is selected.
seekToUs in interface MediaPeriodpositionUs - The seek position in microseconds.public long getAdjustedSeekPositionUs(long positionUs,
SeekParameters seekParameters)
MediaPeriodSeekParameters.
This method is only called after the period has been prepared.
getAdjustedSeekPositionUs in interface MediaPeriodpositionUs - The seek position in microseconds.seekParameters - Parameters that control how the seek is performed. Implementations may
apply seek parameters on a best effort basis.public long getNextLoadPositionUs()
MediaPeriodC.TIME_END_OF_SOURCE if loading has finished.
This method is only 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, long) 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 in microseconds. If playback of this period has
not yet started, the value will be the starting position in this period minus the duration
of any media in previous periods still to be played.MediaPeriod.getNextLoadPositionUs() will return a
different value than prior to the call. False otherwise.public boolean isLoading()
MediaPeriodisLoading in interface MediaPeriodisLoading in interface SequenceableLoaderprotected FakeSampleStream createSampleStream(Allocator allocator, @Nullable MediaSourceEventListener.EventDispatcher mediaSourceEventDispatcher, DrmSessionManager drmSessionManager, DrmSessionEventListener.EventDispatcher drmEventDispatcher, Format initialFormat, List<FakeSampleStream.FakeSampleStreamItem> fakeSampleStreamItems)
FakeSampleStream.mediaSourceEventDispatcher - A MediaSourceEventListener.EventDispatcher to notify
of media events.drmSessionManager - A DrmSessionManager for DRM interactions.drmEventDispatcher - A DrmSessionEventListener.EventDispatcher to notify of DRM
events.initialFormat - The first Format to output.fakeSampleStreamItems - The items to output.FakeSampleStream.