public final class LoopingMediaSource extends Object implements MediaSource
MediaSource
.MediaSource.Listener
Constructor and Description |
---|
LoopingMediaSource(MediaSource childSource)
Loops the provided source indefinitely.
|
LoopingMediaSource(MediaSource childSource,
int loopCount)
Loops the provided source a specified number of times.
|
Modifier and Type | Method and Description |
---|---|
MediaPeriod |
createPeriod(int index,
Allocator allocator,
long positionUs)
Returns a
MediaPeriod corresponding to the period at the specified index. |
void |
maybeThrowSourceInfoRefreshError()
Throws any pending error encountered while loading or refreshing source information.
|
void |
prepareSource(MediaSource.Listener listener)
Starts preparation of the source.
|
void |
releasePeriod(MediaPeriod mediaPeriod)
Releases the period.
|
void |
releaseSource()
Releases the source.
|
public LoopingMediaSource(MediaSource childSource)
childSource
- The MediaSource
to loop.public LoopingMediaSource(MediaSource childSource, int loopCount)
childSource
- The MediaSource
to loop.loopCount
- The desired number of loops. Must be strictly positive. The actual number of
loops will be capped at the maximum value that can achieved without causing the number of
periods exposed by the source to exceed Integer.MAX_VALUE
.public void prepareSource(MediaSource.Listener listener)
MediaSource
prepareSource
in interface MediaSource
listener
- The listener for source events.public void maybeThrowSourceInfoRefreshError() throws IOException
MediaSource
maybeThrowSourceInfoRefreshError
in interface MediaSource
IOException
public MediaPeriod createPeriod(int index, Allocator allocator, long positionUs)
MediaSource
MediaPeriod
corresponding to the period at the specified index.createPeriod
in interface MediaSource
index
- The index of the period.allocator
- An Allocator
from which to obtain media buffer allocations.positionUs
- The player's current playback position.MediaPeriod
.public void releasePeriod(MediaPeriod mediaPeriod)
MediaSource
releasePeriod
in interface MediaSource
mediaPeriod
- The period to release.public void releaseSource()
MediaSource
This method should be called when the source is no longer required. It may be called in any state.
releaseSource
in interface MediaSource