MediaSourcepublic final class ClippingMediaSource extends CompositeMediaSource<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.| Modifier and Type | Class | Description |
|---|---|---|
static class |
ClippingMediaSource.IllegalClippingException |
Thrown when a
ClippingMediaSource cannot clip its wrapped source. |
MediaSource.MediaPeriodId, MediaSource.MediaSourceCaller| Constructor | Description |
|---|---|
ClippingMediaSource(MediaSource mediaSource,
long durationUs) |
Creates a new clipping source that wraps the specified source and provides samples from the
default position for the specified duration.
|
ClippingMediaSource(MediaSource mediaSource,
long startPositionUs,
long endPositionUs) |
Creates a new clipping source that wraps the specified source and provides samples between the
specified start and end position.
|
ClippingMediaSource(MediaSource mediaSource,
long startPositionUs,
long endPositionUs,
boolean enableInitialDiscontinuity,
boolean allowDynamicClippingUpdates,
boolean relativeToDefaultPosition) |
Creates a new clipping source that wraps the specified source.
|
| Modifier and Type | Method | Description |
|---|---|---|
MediaPeriod |
createPeriod(MediaSource.MediaPeriodId id,
Allocator allocator,
long startPositionUs) |
Returns a new
MediaPeriod identified by periodId. |
MediaItem |
getMediaItem() |
Returns the
MediaItem whose media is provided by the source. |
protected long |
getMediaTimeForChildMediaTime(Void id,
long mediaTimeMs) |
Returns the media time in the composite source corresponding to the specified media time in a
child source.
|
Object |
getTag() |
Deprecated.
Use
getMediaItem() and MediaItem.PlaybackProperties.tag instead. |
void |
maybeThrowSourceInfoRefreshError() |
Throws any pending error encountered while loading or refreshing source information.
|
protected void |
onChildSourceInfoRefreshed(Void id,
MediaSource mediaSource,
Timeline timeline) |
Called when the source info of a child source has been refreshed.
|
protected void |
prepareSourceInternal(TransferListener mediaTransferListener) |
Starts source preparation and enables the source, see
BaseMediaSource.prepareSource(MediaSourceCaller,
TransferListener). |
void |
releasePeriod(MediaPeriod mediaPeriod) |
Releases the period.
|
protected void |
releaseSourceInternal() |
Releases the source, see
BaseMediaSource.releaseSource(MediaSourceCaller). |
addDrmEventListener, addEventListener, createDrmEventDispatcher, createDrmEventDispatcher, createEventDispatcher, createEventDispatcher, createEventDispatcher, disable, enable, isEnabled, prepareSource, refreshSourceInfo, releaseSource, removeDrmEventListener, removeEventListenerdisableChildSource, disableInternal, enableChildSource, enableInternal, getMediaPeriodIdForChildMediaPeriodId, getWindowIndexForChildWindowIndex, prepareChildSource, releaseChildSourcegetInitialTimeline, isSingleWindowpublic ClippingMediaSource(MediaSource mediaSource, long startPositionUs, long endPositionUs)
mediaSource - The single-period source to wrap.startPositionUs - The start position within mediaSource's window at which to start
providing samples, in microseconds.endPositionUs - The end position within mediaSource's window 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 durationUs)
mediaSource - The single-period source to wrap.durationUs - The duration from the default position in the window in mediaSource's
timeline at which to stop providing samples. Specifying a duration that exceeds the
mediaSource's duration will result in the end of the source not being clipped.public ClippingMediaSource(MediaSource mediaSource, long startPositionUs, long endPositionUs, boolean enableInitialDiscontinuity, boolean allowDynamicClippingUpdates, boolean relativeToDefaultPosition)
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.
For live streams, if the clipping positions should move with the live window, pass
true to allowDynamicClippingUpdates. Otherwise, the live stream ends when the playback
reaches endPositionUs in the last reported live window at the time a media period was
created.
mediaSource - The single-period source to wrap.startPositionUs - The start position at which to start providing samples, in microseconds.
If relativeToDefaultPosition is false, this position is relative to the
start of the window in mediaSource's timeline. If relativeToDefaultPosition
is true, this position is relative to the default position in the window in
mediaSource's timeline.endPositionUs - The end position 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. If
relativeToDefaultPosition is false, the specified position is relative to the
start of the window in mediaSource's timeline. If relativeToDefaultPosition
is true, this position is relative to the default position in the window in
mediaSource's timeline.enableInitialDiscontinuity - Whether the initial discontinuity should be enabled.allowDynamicClippingUpdates - Whether the clipping of active media periods moves with a
live window. If false, playback ends when it reaches endPositionUs in the
last reported live window at the time a media period was created.relativeToDefaultPosition - Whether startPositionUs and endPositionUs are
relative to the default position in the window in mediaSource's timeline.@Deprecated @Nullable public Object getTag()
getMediaItem() and MediaItem.PlaybackProperties.tag instead.public MediaItem getMediaItem()
MediaSourceMediaItem whose media is provided by the source.protected void prepareSourceInternal(@Nullable
TransferListener mediaTransferListener)
BaseMediaSourceBaseMediaSource.prepareSource(MediaSourceCaller,
TransferListener). This method is called at most once until the next call to BaseMediaSource.releaseSourceInternal().prepareSourceInternal in class CompositeMediaSource<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 void maybeThrowSourceInfoRefreshError()
throws IOException
MediaSourceShould not be called directly from application code.
Must only be called after MediaSource.prepareSource(MediaSourceCaller, TransferListener).
maybeThrowSourceInfoRefreshError in interface MediaSourcemaybeThrowSourceInfoRefreshError in class CompositeMediaSource<Void>IOExceptionpublic MediaPeriod createPeriod(MediaSource.MediaPeriodId id, Allocator allocator, long startPositionUs)
MediaSourceMediaPeriod identified by periodId.
Should not be called directly from application code.
Must only be called if the source is enabled.
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 releaseSourceInternal()
BaseMediaSourceBaseMediaSource.releaseSource(MediaSourceCaller). This method is called
exactly once after each call to BaseMediaSource.prepareSourceInternal(TransferListener).releaseSourceInternal in class CompositeMediaSource<Void>protected void onChildSourceInfoRefreshed(Void id, MediaSource mediaSource, Timeline timeline)
CompositeMediaSourceonChildSourceInfoRefreshed in class CompositeMediaSource<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.protected long getMediaTimeForChildMediaTime(Void id, long mediaTimeMs)
CompositeMediaSourcegetMediaTimeForChildMediaTime in class CompositeMediaSource<Void>id - The unique id used to prepare the child source.mediaTimeMs - A media time of the child source, in milliseconds.