Interface MediaPeriod
-
- All Superinterfaces:
SequenceableLoader
- All Known Implementing Classes:
ClippingMediaPeriod
,FakeAdaptiveMediaPeriod
,FakeMediaPeriod
,HlsMediaPeriod
,MaskingMediaPeriod
@Deprecated public interface MediaPeriod extends SequenceableLoader
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.Loads media corresponding to aTimeline.Period
, and allows that media to be read. All methods are called on the player's internal playback thread, as described in theExoPlayer
Javadoc.A
MediaPeriod
may only able to provide oneSampleStream
corresponding to a group at any given time, however thisSampleStream
may adapt between multiple tracks within the group.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
MediaPeriod.Callback
Deprecated.A callback to be notified ofMediaPeriod
events.
-
Method Summary
All Methods Instance Methods Abstract Methods Default 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 andSeekParameters
.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, orC.TIME_END_OF_SOURCE
if loading has finished.default List<StreamKey>
getStreamKeys(List<ExoTrackSelection> trackSelections)
Deprecated.Returns a list ofStreamKeys
which allow to filter the media in this period to load only the parts needed to play the providedTrackSelections
.TrackGroupArray
getTrackGroups()
Deprecated.Returns theTrackGroup
s 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
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.
-
-
-
Method Detail
-
prepare
void prepare(MediaPeriod.Callback callback, long positionUs)
Deprecated.Prepares this media period asynchronously.callback.onPrepared
is called when preparation completes. If preparation fails,maybeThrowPrepareError()
will throw anIOException
.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 beforecallback.onPrepared
.- Parameters:
callback
- Callback to receive updates from this period, including being notified when preparation completes.positionUs
- The expected starting position, in microseconds.
-
maybeThrowPrepareError
void maybeThrowPrepareError() throws IOException
Deprecated.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.
- Throws:
IOException
- The underlying error.
-
getTrackGroups
TrackGroupArray getTrackGroups()
Deprecated.Returns theTrackGroup
s exposed by the period.This method is only called after the period has been prepared.
- Returns:
- The
TrackGroup
s.
-
getStreamKeys
default List<StreamKey> getStreamKeys(List<ExoTrackSelection> trackSelections)
Deprecated.Returns a list ofStreamKeys
which allow to filter the media in this period to load only the parts needed to play the providedTrackSelections
.This method is only called after the period has been prepared.
- Parameters:
trackSelections
- TheTrackSelections
describing the tracks for which stream keys are requested.- Returns:
- The corresponding
StreamKeys
for the selected tracks, or an empty list if filtering is not possible and the entire media needs to be loaded to play the selected tracks.
-
selectTracks
long selectTracks(@NullableType ExoTrackSelection[] selections, boolean[] mayRetainStreamFlags, @NullableType SampleStream[] streams, boolean[] streamResetFlags, long positionUs)
Deprecated.Performs a track selection.The call receives track
selections
for each renderer,mayRetainStreamFlags
indicating whether the existingSampleStream
can be retained for each selection, and the existingstream
s themselves. The call will updatestreams
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 instreamResetFlags
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.
- Parameters:
selections
- The renderer track selections.mayRetainStreamFlags
- Flags indicating whether the existing sample stream can be retained for each track selection. Atrue
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
void discardBuffer(long positionUs, boolean toKeyframe)
Deprecated.Discards buffered media up to the specified position.This method is only called after the period has been prepared.
- Parameters:
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.
-
readDiscontinuity
long readDiscontinuity()
Deprecated.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
, allSampleStreams
provided by the period are guaranteed to start from a key frame.This method is only called after the period has been prepared.
- Returns:
- The playback position after the discontinuity, in microseconds, or
C.TIME_UNSET
if there is no discontinuity.
-
seekToUs
long seekToUs(long positionUs)
Deprecated.Attempts to seek to the specified position in microseconds.After this method has been called, all
SampleStream
s provided by the period are guaranteed to start from a key frame.This method is only called when at least one track is selected.
- Parameters:
positionUs
- The seek position in microseconds.- Returns:
- The actual position to which the period was seeked, in microseconds.
-
getAdjustedSeekPositionUs
long getAdjustedSeekPositionUs(long positionUs, SeekParameters seekParameters)
Deprecated.Returns the position to which a seek will be performed, given the specified seek position andSeekParameters
.This method is only called after the period has been prepared.
- Parameters:
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.
-
getBufferedPositionUs
long getBufferedPositionUs()
Deprecated.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 interfaceSequenceableLoader
- Returns:
- 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.
-
getNextLoadPositionUs
long getNextLoadPositionUs()
Deprecated.Returns the next load time, orC.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 interfaceSequenceableLoader
-
continueLoading
boolean continueLoading(long positionUs)
Deprecated.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 theMediaPeriod.Callback
passed toprepare(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 interfaceSequenceableLoader
- Parameters:
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
getNextLoadPositionUs()
will return a different value than prior to the call. False otherwise.
-
isLoading
boolean isLoading()
Deprecated.Returns whether the media period is currently loading.- Specified by:
isLoading
in interfaceSequenceableLoader
-
reevaluateBuffer
void reevaluateBuffer(long positionUs)
Deprecated.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 interfaceSequenceableLoader
- Parameters:
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.
-
-