public final class LoopingMediaSource extends CompositeMediaSource<java.lang.Void>
MediaSource a specified number of times.
Note: To loop a MediaSource indefinitely, it is usually better to use Player.setRepeatMode(int) instead of this class.
MediaSource.MediaPeriodId, MediaSource.SourceInfoRefreshListener| 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(MediaSource.MediaPeriodId id,
Allocator allocator,
long startPositionUs)
Returns a new
MediaPeriod identified by periodId. |
protected MediaSource.MediaPeriodId |
getMediaPeriodIdForChildMediaPeriodId(java.lang.Void id,
MediaSource.MediaPeriodId mediaPeriodId)
Returns the
MediaPeriodId in the composite source corresponding to the specified MediaPeriodId in a child source. |
java.lang.Object |
getTag()
Returns the tag set on the media source, or null if none was set.
|
protected void |
onChildSourceInfoRefreshed(java.lang.Void id,
MediaSource mediaSource,
Timeline timeline,
java.lang.Object manifest)
Called when the source info of a child source has been refreshed.
|
void |
prepareSourceInternal(TransferListener mediaTransferListener)
Starts source preparation.
|
void |
releasePeriod(MediaPeriod mediaPeriod)
Releases the period.
|
getMediaTimeForChildMediaTime, getWindowIndexForChildWindowIndex, maybeThrowSourceInfoRefreshError, prepareChildSource, releaseChildSource, releaseSourceInternaladdEventListener, createEventDispatcher, createEventDispatcher, createEventDispatcher, prepareSource, refreshSourceInfo, releaseSource, removeEventListenerpublic LoopingMediaSource(MediaSource childSource)
Player.setRepeatMode(int).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.@Nullable public java.lang.Object getTag()
MediaSourcepublic void prepareSourceInternal(@Nullable
TransferListener mediaTransferListener)
BaseMediaSourceBaseMediaSource.releaseSourceInternal().prepareSourceInternal in class CompositeMediaSource<java.lang.Void>mediaTransferListener - The transfer listener which should be informed of any media data
transfers. May be null if no listener is available. Note that this listener should usually
be only informed of transfers related to the media loads and not of auxiliary loads for
manifests and other data.public MediaPeriod createPeriod(MediaSource.MediaPeriodId id, Allocator allocator, long startPositionUs)
MediaSourceMediaPeriod identified by periodId. This method may be called
multiple times without an intervening call to MediaSource.releasePeriod(MediaPeriod).
Should not be called directly from application code.
id - The identifier of the period.allocator - An Allocator from which to obtain media buffer allocations.startPositionUs - The expected start position, in microseconds.MediaPeriod.public void releasePeriod(MediaPeriod mediaPeriod)
MediaSourceShould not be called directly from application code.
mediaPeriod - The period to release.protected void onChildSourceInfoRefreshed(java.lang.Void id,
MediaSource mediaSource,
Timeline timeline,
@Nullable
java.lang.Object manifest)
CompositeMediaSourceonChildSourceInfoRefreshed in class CompositeMediaSource<java.lang.Void>id - The unique id used to prepare the child source.mediaSource - The child source whose source info has been refreshed.timeline - The timeline of the child source.manifest - The manifest of the child source.@Nullable protected MediaSource.MediaPeriodId getMediaPeriodIdForChildMediaPeriodId(java.lang.Void id, MediaSource.MediaPeriodId mediaPeriodId)
CompositeMediaSourceMediaPeriodId in the composite source corresponding to the specified MediaPeriodId in a child source. The default implementation does not change the media period
id.getMediaPeriodIdForChildMediaPeriodId in class CompositeMediaSource<java.lang.Void>id - The unique id used to prepare the child source.mediaPeriodId - A MediaPeriodId of the child source.MediaPeriodId in the composite source. Null if no
corresponding media period id can be determined.