Package com.brightcove.player.render
Interface TrackSelectionOverrideCreator
- All Known Implementing Classes:
InclusiveHEVCVideoTrackSelectionOverride
public interface TrackSelectionOverrideCreator
A TrackSelectionOverrides creator,
that can be set using TrackSelectorHelper.applyTrackSelectionOverrides(int, TrackSelectionOverrideCreator)
to manually select the track renditions.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TrackSelectionOverrideCreatorIndicates an empty TrackSelectionOverrideCreator.static final com.google.android.exoplayer2.trackselection.TrackSelectionOverrides.TrackSelectionOverrideIndicates this is an empty Track Selection Overrides. -
Method Summary
Modifier and TypeMethodDescriptioncom.google.android.exoplayer2.trackselection.TrackSelectionOverrides.TrackSelectionOverridecreate(com.google.android.exoplayer2.source.TrackGroupArray trackGroups, int trackIndex, com.google.android.exoplayer2.trackselection.DefaultTrackSelector.Parameters parameters) Creates aTrackSelectionOverrides.TrackSelectionOverridebased on theTrackGroupand track index provided.
-
Field Details
-
EMPTY_TRACK_SELECTION_OVERRIDES
static final com.google.android.exoplayer2.trackselection.TrackSelectionOverrides.TrackSelectionOverride EMPTY_TRACK_SELECTION_OVERRIDESIndicates this is an empty Track Selection Overrides. Use this instead of null. -
EMPTY
Indicates an empty TrackSelectionOverrideCreator. Its create method returnsEMPTY_TRACK_SELECTION_OVERRIDES
-
-
Method Details
-
create
@NonNull com.google.android.exoplayer2.trackselection.TrackSelectionOverrides.TrackSelectionOverride create(@NonNull com.google.android.exoplayer2.source.TrackGroupArray trackGroups, int trackIndex, @Nullable com.google.android.exoplayer2.trackselection.DefaultTrackSelector.Parameters parameters) Creates a
TrackSelectionOverrides.TrackSelectionOverridebased on theTrackGroupand track index provided.The
TrackGroupArraycan be retrieved by callingMappingTrackSelector.MappedTrackInfo.getTrackGroups(int).- Parameters:
trackGroups- the Track Group Array from the current VideotrackIndex- the track index of the TrackGroupArray to be impacted.parameters- it contains the TrackSelector parameters that can further constraint the SelectionOverride- Returns:
- the Track Selection Override to be set to the
DefaultTrackSelector
-