Back to Exoplayer

ClippingMediaPeriod (ExoPlayer library)

docs/doc/reference/com/google/android/exoplayer2/source/ClippingMediaPeriod.html

latest20.8 KB
Original Source

Package com.google.android.exoplayer2.source

Class ClippingMediaPeriod

  • java.lang.Object

    • com.google.android.exoplayer2.source.ClippingMediaPeriod
  • All Implemented Interfaces:MediaPeriod, MediaPeriod.Callback, SequenceableLoader, SequenceableLoader.Callback<MediaPeriod>


[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public final classClippingMediaPeriodextends[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")implements[MediaPeriod](MediaPeriod.html "interface in com.google.android.exoplayer2.source"),[MediaPeriod.Callback](MediaPeriod.Callback.html "interface in com.google.android.exoplayer2.source")

Deprecated. com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.

Wraps a MediaPeriod and clips its SampleStreams to provide a subsequence of their samples.

Nested Class Summary

- 

Nested classes/interfaces inherited from interface com.google.android.exoplayer2.source.MediaPeriod

MediaPeriod.Callback

Field Summary

Fields | Modifier and Type | Field | Description | | --- | --- | --- | | MediaPeriod | mediaPeriod | Deprecated.

The MediaPeriod wrapped by this clipping media period. |

Constructor Summary

Constructors | Constructor | Description | | --- | --- | | ClippingMediaPeriod​(MediaPeriod mediaPeriod, boolean enableInitialDiscontinuity, long startUs, long endUs) | Deprecated.

Creates a new clipping media period that provides a clipped view of the specified MediaPeriod's sample streams. |

Method Summary

All Methods Instance Methods Concrete Methods Deprecated Methods | Modifier and Type | Method | Description | | --- | --- | --- | | boolean | continueLoading​(long positionUs) | Deprecated.

Attempts to continue loading. | | void | discardBuffer​(long positionUs, boolean toKeyframe) | Deprecated.

Discards buffered media up to the specified position. | | long | getAdjustedSeekPositionUs​(long positionUs, SeekParameters seekParameters) | Deprecated.

Returns the position to which a seek will be performed, given the specified seek position and SeekParameters. | | long | getBufferedPositionUs() | Deprecated.

Returns an estimate of the position up to which data is buffered for the enabled tracks. | | long | getNextLoadPositionUs() | Deprecated.

Returns the next load time, or C.TIME_END_OF_SOURCE if loading has finished. | | TrackGroupArray | getTrackGroups() | Deprecated.

Returns the TrackGroups exposed by the period. | | boolean | isLoading() | Deprecated.

Returns whether the media period is currently loading. | | void | maybeThrowPrepareError() | Deprecated.

Throws an error that's preventing the period from becoming prepared. | | void | onContinueLoadingRequested​(MediaPeriod source) | Deprecated.

Called by the loader to indicate that it wishes for its SequenceableLoader.continueLoading(long) method to be called when it can continue to load data. | | void | onPrepared​(MediaPeriod mediaPeriod) | Deprecated.

Called when preparation completes. | | void | prepare​(MediaPeriod.Callback callback, long positionUs) | Deprecated.

Prepares this media period asynchronously. | | long | readDiscontinuity() | Deprecated.

Attempts to read a discontinuity. | | void | reevaluateBuffer​(long positionUs) | Deprecated.

Re-evaluates the buffer given the playback position. | | long | seekToUs​(long positionUs) | Deprecated.

Attempts to seek to the specified position in microseconds. | | long | selectTracks​(@NullableType ExoTrackSelection[] selections, boolean[] mayRetainStreamFlags, @NullableType SampleStream[] streams, boolean[] streamResetFlags, long positionUs) | Deprecated.

Performs a track selection. | | void | setClippingError​(ClippingMediaSource.IllegalClippingException clippingError) | Deprecated.

Sets a clipping error detected by the media source so that it can be thrown as a period error at the next opportunity. | | void | updateClipping​(long startUs, long endUs) | Deprecated.

Updates the clipping start/end times for this period, in microseconds. |

- 

Methods inherited from class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

- 

Methods inherited from interface com.google.android.exoplayer2.source.MediaPeriod

getStreamKeys

Field Detail

- 

mediaPeriod

public final[MediaPeriod](MediaPeriod.html "interface in com.google.android.exoplayer2.source")mediaPeriod

Deprecated.

The MediaPeriod wrapped by this clipping media period.

Constructor Detail

- 

ClippingMediaPeriod

public ClippingMediaPeriod​([MediaPeriod](MediaPeriod.html "interface in com.google.android.exoplayer2.source")mediaPeriod,
                           boolean enableInitialDiscontinuity,
                           long startUs,
                           long endUs)

Deprecated.

Creates a new clipping media period that provides a clipped view of the specified MediaPeriod's sample streams.

If the start point is guaranteed to be a key frame, pass false to enableInitialPositionDiscontinuity to suppress an initial discontinuity when the period is first read from.

Parameters:mediaPeriod - The media period to clip.enableInitialDiscontinuity - Whether the initial discontinuity should be enabled.startUs - The clipping start time, in microseconds.endUs - The clipping end time, in microseconds, or C.TIME_END_OF_SOURCE to indicate the end of the period.

Method Detail

- 

updateClipping

public void updateClipping​(long startUs,
                           long endUs)

Deprecated.

Updates the clipping start/end times for this period, in microseconds. Parameters:startUs - The clipping start time, in microseconds.endUs - The clipping end time, in microseconds, or C.TIME_END_OF_SOURCE to indicate the end of the period.

- 

setClippingError

public void setClippingError​([ClippingMediaSource.IllegalClippingException](ClippingMediaSource.IllegalClippingException.html "class in com.google.android.exoplayer2.source")clippingError)

Deprecated.

Sets a clipping error detected by the media source so that it can be thrown as a period error at the next opportunity. Parameters:clippingError - The clipping error.

- 

prepare

public void prepare​([MediaPeriod.Callback](MediaPeriod.Callback.html "interface in com.google.android.exoplayer2.source")callback,
                    long positionUs)

Deprecated.

Description copied from interface: MediaPeriod

Prepares this media period asynchronously.

callback.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.

Specified by:prepare in interface MediaPeriodParameters:callback - Callback to receive updates from this period, including being notified when preparation completes.positionUs - The expected starting position, in microseconds.

- 

maybeThrowPrepareError

public void maybeThrowPrepareError()
                            throws[IOException](https://developer.android.com/reference/java/io/IOException.html "class or interface in java.io")

Deprecated.

Description copied from interface: MediaPeriod

Throws an error that's preventing the period from becoming prepared. Does nothing if no such error exists.

This method is only called before the period has completed preparation.

Specified by:maybeThrowPrepareError in interface MediaPeriodThrows:IOException - The underlying error.

- 

getTrackGroups

public[TrackGroupArray](TrackGroupArray.html "class in com.google.android.exoplayer2.source")getTrackGroups()

Deprecated.

Description copied from interface: MediaPeriod

Returns the TrackGroups exposed by the period.

This method is only called after the period has been prepared.

Specified by:getTrackGroups in interface MediaPeriodReturns:The TrackGroups.

- 

selectTracks

public long selectTracks​(@NullableType[ExoTrackSelection](../trackselection/ExoTrackSelection.html "interface in com.google.android.exoplayer2.trackselection")[] selections,
                         boolean[] mayRetainStreamFlags,
                         @NullableType[SampleStream](SampleStream.html "interface in com.google.android.exoplayer2.source")[] streams,
                         boolean[] streamResetFlags,
                         long positionUs)

Deprecated.

Description copied from interface: MediaPeriod

Performs a track selection.

The 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.

Specified by:selectTracks in interface MediaPeriodParameters:selections - 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.Returns:The actual position at which the tracks were enabled, in microseconds.

- 

discardBuffer

public void discardBuffer​(long positionUs,
                          boolean toKeyframe)

Deprecated.

Description copied from interface: MediaPeriod

Discards buffered media up to the specified position.

This method is only called after the period has been prepared.

Specified by:discardBuffer in interface MediaPeriodParameters:positionUs - 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.

- 

reevaluateBuffer

public void reevaluateBuffer​(long positionUs)

Deprecated.

Description copied from interface: MediaPeriod

Re-evaluates the buffer given the playback position.

This 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.

Specified by:reevaluateBuffer in interface MediaPeriodSpecified by:reevaluateBuffer in interface SequenceableLoaderParameters:positionUs - 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.

- 

readDiscontinuity

public long readDiscontinuity()

Deprecated.

Description copied from interface: MediaPeriod

Attempts to read a discontinuity.

A discontinuity implies that the provided SampleStreams will start from a new playback position and any output pipelines need to be reset. This happens for example if the streams provide decode-only samples before the intended playback start position that need to be dropped.

After 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.

Specified by:readDiscontinuity in interface MediaPeriodReturns:The playback position after the discontinuity, in microseconds, or C.TIME_UNSET if there is no discontinuity.

- 

getBufferedPositionUs

public long getBufferedPositionUs()

Deprecated.

Description copied from interface: MediaPeriod

Returns an estimate of the position up to which data is buffered for the enabled tracks.

This method is only called when at least one track is selected.

Specified by:getBufferedPositionUs in interface MediaPeriodSpecified by:getBufferedPositionUs in interface SequenceableLoaderReturns:An estimate of the absolute position in microseconds up to which data is buffered, or C.TIME_END_OF_SOURCE if the track is fully buffered.

- 

seekToUs

public long seekToUs​(long positionUs)

Deprecated.

Description copied from interface: MediaPeriod

Attempts to seek to the specified position in microseconds.

After 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.

Specified by:seekToUs in interface MediaPeriodParameters:positionUs - The seek position in microseconds.Returns:The actual position to which the period was seeked, in microseconds.

- 

getAdjustedSeekPositionUs

public long getAdjustedSeekPositionUs​(long positionUs,[SeekParameters](../SeekParameters.html "class in com.google.android.exoplayer2")seekParameters)

Deprecated.

Description copied from interface: MediaPeriod

Returns the position to which a seek will be performed, given the specified seek position and SeekParameters.

This method is only called after the period has been prepared.

Specified by:getAdjustedSeekPositionUs in interface MediaPeriodParameters:positionUs - The seek position in microseconds.seekParameters - Parameters that control how the seek is performed. Implementations may apply seek parameters on a best effort basis.Returns:The actual position to which a seek will be performed, in microseconds.

- 

getNextLoadPositionUs

public long getNextLoadPositionUs()

Deprecated.

Description copied from interface: MediaPeriod

Returns the next load time, or C.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.

Specified by:getNextLoadPositionUs in interface MediaPeriodSpecified by:getNextLoadPositionUs in interface SequenceableLoader

- 

continueLoading

public boolean continueLoading​(long positionUs)

Deprecated.

Description copied from interface: MediaPeriod

Attempts to continue loading.

This 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.

Specified by:continueLoading in interface MediaPeriodSpecified by:continueLoading in interface SequenceableLoaderParameters:positionUs - 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.Returns:True if progress was made, meaning that MediaPeriod.getNextLoadPositionUs() will return a different value than prior to the call. False otherwise.

- 

isLoading

public boolean isLoading()

Deprecated.

Description copied from interface: MediaPeriod

Returns whether the media period is currently loading. Specified by:isLoading in interface MediaPeriodSpecified by:isLoading in interface SequenceableLoader

- 

onPrepared

public void onPrepared​([MediaPeriod](MediaPeriod.html "interface in com.google.android.exoplayer2.source")mediaPeriod)

Deprecated.

Description copied from interface: MediaPeriod.Callback

Called when preparation completes.

Called on the playback thread. After invoking this method, the MediaPeriod can expect for MediaPeriod.selectTracks(ExoTrackSelection[], boolean[], SampleStream[], boolean[], long) to be called with the initial track selection.

Specified by:onPrepared in interface MediaPeriod.CallbackParameters:mediaPeriod - The prepared MediaPeriod.

- 

onContinueLoadingRequested

public void onContinueLoadingRequested​([MediaPeriod](MediaPeriod.html "interface in com.google.android.exoplayer2.source")source)

Deprecated.

Description copied from interface: SequenceableLoader.Callback

Called by the loader to indicate that it wishes for its SequenceableLoader.continueLoading(long) method to be called when it can continue to load data. Called on the playback thread. Specified by:onContinueLoadingRequested in interface SequenceableLoader.Callback<MediaPeriod>