FakeTrackSelection
@UnstableApi
public class FakeTrackSelection extends BaseTrackSelection
java.lang.Object | ||
↳ | androidx.media3.exoplayer.trackselection.BaseTrackSelection | |
↳ | androidx.media3.test.utils.FakeTrackSelection |
A fake ExoTrackSelection
that only returns 1 fixed track, and allows querying the number of calls to its methods.
Summary
Public fields |
|
---|---|
int |
|
boolean |
|
int |
|
final int |
Public constructors |
---|
FakeTrackSelection(TrackGroup rendererTrackGroup) |
FakeTrackSelection(TrackGroup rendererTrackGroup, int selectedIndex) |
Public methods |
|
---|---|
void |
disable() Disables this track selection. |
void |
enable() Enables the track selection. |
boolean |
|
int |
evaluateQueueSize(long playbackPositionUs, List<MediaChunk> queue) Returns the number of chunks that should be retained in the queue. |
boolean |
excludeTrack(int index, long exclusionDurationMs) Attempts to exclude the track at the specified index in the selection, making it ineligible for selection by calls to |
int |
Returns the index of the selected track. |
@Nullable Object |
Returns optional data associated with the current track selection. |
int |
Returns the reason for the current track selection. |
int |
hashCode() |
boolean |
isTrackExcluded(int index, long nowMs) Returns whether the track at the specified index in the selection is excluded. |
void |
updateSelectedTrack( Updates the selected track for sources that load media in discrete |
Inherited Constants |
||||
---|---|---|---|---|
|
Inherited fields |
||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Inherited methods |
||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||
|
Public fields
Public constructors
Public methods
disable
public void disable()
Disables this track selection. No further dynamic changes via updateSelectedTrack
, evaluateQueueSize
or shouldCancelChunkLoad
will happen after this call.
This method may only be called when the track selection is already enabled.
enable
public void enable()
Enables the track selection. Dynamic changes via updateSelectedTrack
, evaluateQueueSize
or shouldCancelChunkLoad
will only happen after this call.
This method may not be called when the track selection is already enabled.
evaluateQueueSize
public int evaluateQueueSize(long playbackPositionUs, List<MediaChunk> queue)
Returns the number of chunks that should be retained in the queue.
May be called by sources that load media in discrete MediaChunks
and support discarding of buffered chunks.
To avoid excessive re-buffering, implementations should normally return the size of the queue. An example of a case where a smaller value may be returned is if network conditions have improved dramatically, allowing chunks to be discarded and re-buffered in a track of significantly higher quality. Discarding chunks may allow faster switching to a higher quality track in this case.
Note that even if the source supports discarding of buffered chunks, the actual number of discarded chunks is not guaranteed. The source will call updateSelectedTrack
with the updated queue of chunks before loading a new chunk to allow switching to another quality.
This method will only be called when the selection is enabled and none of the MediaChunks in the queue are currently loading.
Parameters | |
---|---|
long playbackPositionUs |
The current playback position in microseconds. If playback of the period to which this track selection belongs has not yet started, the value will be the starting position in the period minus the duration of any media in previous periods still to be played. |
List<MediaChunk> queue |
The queue of buffered |
Returns | |
---|---|
int |
The number of chunks to retain in the queue. |
excludeTrack
public boolean excludeTrack(int index, long exclusionDurationMs)
Attempts to exclude the track at the specified index in the selection, making it ineligible for selection by calls to updateSelectedTrack
for the specified period of time.
Exclusion will fail if all other tracks are currently excluded. If excluding the currently selected track, note that it will remain selected until the next call to updateSelectedTrack
.
This method will only be called when the selection is enabled.
Parameters | |
---|---|
int index |
The index of the track in the selection. |
long exclusionDurationMs |
The duration of time for which the track should be excluded, in milliseconds. |
Returns | |
---|---|
boolean |
Whether exclusion was successful. |
getSelectionData
public @Nullable Object getSelectionData()
Returns optional data associated with the current track selection.
getSelectionReason
@C.SelectionReason
public int getSelectionReason()
Returns the reason for the current track selection.
isTrackExcluded
public boolean isTrackExcluded(int index, long nowMs)
Returns whether the track at the specified index in the selection is excluded.
Parameters | |
---|---|
int index |
The index of the track in the selection. |
long nowMs |
The current time in the timebase of |
updateSelectedTrack
public void updateSelectedTrack(
long playbackPositionUs,
long bufferedDurationUs,
long availableDurationUs,
List<MediaChunk> queue,
MediaChunkIterator[] mediaChunkIterators
)
Updates the selected track for sources that load media in discrete MediaChunk
s.
This method will only be called when the selection is enabled.
Parameters | |
---|---|
long playbackPositionUs |
The current playback position in microseconds. If playback of the period to which this track selection belongs has not yet started, the value will be the starting position in the period minus the duration of any media in previous periods still to be played. |
long bufferedDurationUs |
The duration of media currently buffered from the current playback position, in microseconds. Note that the next load position can be calculated as |
long availableDurationUs |
The duration of media available for buffering from the current playback position, in microseconds, or |
List<MediaChunk> queue |
The queue of already buffered |
MediaChunkIterator[] mediaChunkIterators |
An array of |