public final class ClippingMediaSource extends CompositeMediaSource<java.lang.Void>
MediaSource that wraps a source and clips its timeline based on specified start/end
positions. The wrapped source must consist of a single period that starts at the beginning of the
corresponding window.| Modifier and Type | Class and Description |
|---|---|
static class |
ClippingMediaSource.IllegalClippingException
Thrown when a
ClippingMediaSource cannot clip its wrapped source. |
MediaSource.Listener, MediaSource.MediaPeriodIdMEDIA_SOURCE_REUSED_ERROR_MESSAGE| Constructor and Description |
|---|
ClippingMediaSource(MediaSource mediaSource,
long startPositionUs,
long endPositionUs)
Creates a new clipping source that wraps the specified source.
|
ClippingMediaSource(MediaSource mediaSource,
long startPositionUs,
long endPositionUs,
boolean enableInitialDiscontinuity)
Creates a new clipping source that wraps the specified source.
|
| Modifier and Type | Method and Description |
|---|---|
MediaPeriod |
createPeriod(MediaSource.MediaPeriodId id,
Allocator allocator)
Returns a new
MediaPeriod identified by periodId. |
void |
maybeThrowSourceInfoRefreshError()
Throws any pending error encountered while loading or refreshing source information.
|
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 |
prepareSource(ExoPlayer player,
boolean isTopLevelSource,
MediaSource.Listener listener)
Starts preparation of the source.
|
void |
releasePeriod(MediaPeriod mediaPeriod)
Releases the period.
|
void |
releaseSource()
Releases the source.
|
prepareChildSource, releaseChildSourcepublic ClippingMediaSource(MediaSource mediaSource, long startPositionUs, long endPositionUs)
mediaSource - The single-period source to wrap.startPositionUs - The start position within mediaSource's timeline at which to
start providing samples, in microseconds.endPositionUs - The end position within mediaSource's timeline at which to stop
providing samples, in microseconds. Specify C.TIME_END_OF_SOURCE to provide samples
from the specified start point up to the end of the source. Specifying a position that
exceeds the mediaSource's duration will also result in the end of the source not
being clipped.public ClippingMediaSource(MediaSource mediaSource, long startPositionUs, long endPositionUs, boolean enableInitialDiscontinuity)
If the start point is guaranteed to be a key frame, pass false to
enableInitialPositionDiscontinuity to suppress an initial discontinuity when a period
is first read from.
mediaSource - The single-period source to wrap.startPositionUs - The start position within mediaSource's timeline at which to
start providing samples, in microseconds.endPositionUs - The end position within mediaSource's timeline at which to stop
providing samples, in microseconds. Specify C.TIME_END_OF_SOURCE to provide samples
from the specified start point up to the end of the source. Specifying a position that
exceeds the mediaSource's duration will also result in the end of the source not
being clipped.enableInitialDiscontinuity - Whether the initial discontinuity should be enabled.public void prepareSource(ExoPlayer player, boolean isTopLevelSource, MediaSource.Listener listener)
MediaSourceShould not be called directly from application code.
prepareSource in interface MediaSourceprepareSource in class CompositeMediaSource<java.lang.Void>player - The player for which this source is being prepared.isTopLevelSource - Whether this source has been passed directly to
ExoPlayer.prepare(MediaSource) or
ExoPlayer.prepare(MediaSource, boolean, boolean). If false, this source is
being prepared by another source (e.g. ConcatenatingMediaSource) for composition.listener - The listener for source events.public void maybeThrowSourceInfoRefreshError()
throws java.io.IOException
MediaSourceShould not be called directly from application code.
maybeThrowSourceInfoRefreshError in interface MediaSourcemaybeThrowSourceInfoRefreshError in class CompositeMediaSource<java.lang.Void>java.io.IOExceptionpublic MediaPeriod createPeriod(MediaSource.MediaPeriodId id, Allocator allocator)
MediaSourceMediaPeriod identified by periodId. This method may be called
multiple times with the same period identifier 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.MediaPeriod.public void releasePeriod(MediaPeriod mediaPeriod)
MediaSourceShould not be called directly from application code.
mediaPeriod - The period to release.public void releaseSource()
MediaSourceShould not be called directly from application code.
releaseSource in interface MediaSourcereleaseSource in class CompositeMediaSource<java.lang.Void>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.