Class Track
- java.lang.Object
-
- com.castlabs.android.player.models.Track
-
- Direct Known Subclasses:
AudioTrack,SubtitleTrack,VideoTrack
public class Track extends Object
Base class for tracks that exposes a track index to uniquely identify the track within a player model.- Since:
- 3.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static LocaleLABEL_LOCALEFor Tracks that display a language, this Locale will be used.static intUNKNOWN_INDEXIndicates that an index is unknown
-
Constructor Summary
Constructors Constructor Description Track()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDescriptor(DashDescriptor dashDescriptor)Adds a Dash descriptor to the listbooleanequals(Object obj)List<DashDescriptor>getDescriptors()static StringgetLocalizedLanguageName(String language)Returns the given language code's name, in theLocaledetermined byLABEL_LOCALE.intgetOriginalGroupIndex()intgetOriginalTrackIndex()intgetTrackIndex()inthashCode()booleanhasTrickModeId(int trickModeId)booleanisTrickModeTrack()voidsetDescriptors(List<DashDescriptor> descriptors)Sets the Dash descriptors listvoidsetOriginalGroupIndex(int originalGroupIndex)Set the original index of this groupvoidsetOriginalTrackIndex(int originalTrackIndex)Set the original index of this trackvoidsetTrackIndex(int trackIndex)Set the track index of this trackvoidsetTrickModeIds(int[] trickModeIds)
-
-
-
Field Detail
-
UNKNOWN_INDEX
public static final int UNKNOWN_INDEX
Indicates that an index is unknown- See Also:
- Constant Field Values
-
LABEL_LOCALE
public static Locale LABEL_LOCALE
For Tracks that display a language, this Locale will be used. This is the language in which the Track's language name is displayed. If null (default) will use the current system Locale.
-
-
Method Detail
-
getTrackIndex
public int getTrackIndex()
- Returns:
- The track index of this track
-
setTrackIndex
public void setTrackIndex(int trackIndex)
Set the track index of this track- Parameters:
trackIndex- the track index
-
getOriginalTrackIndex
public int getOriginalTrackIndex()
- Returns:
- The original index if this track, when no filters where applied
-
setOriginalTrackIndex
public void setOriginalTrackIndex(int originalTrackIndex)
Set the original index of this track- Parameters:
originalTrackIndex- The original index
-
getOriginalGroupIndex
public int getOriginalGroupIndex()
- Returns:
- The original index if this group, when no filters where applied
-
setOriginalGroupIndex
public void setOriginalGroupIndex(int originalGroupIndex)
Set the original index of this group- Parameters:
originalGroupIndex- The original index
-
setTrickModeIds
public void setTrickModeIds(@NonNull int[] trickModeIds)
-
isTrickModeTrack
public boolean isTrickModeTrack()
-
hasTrickModeId
public boolean hasTrickModeId(int trickModeId)
-
addDescriptor
public void addDescriptor(@NonNull DashDescriptor dashDescriptor)Adds a Dash descriptor to the list- Parameters:
dashDescriptor- Dash descriptor to add
-
getDescriptors
@Nullable public List<DashDescriptor> getDescriptors()
- Returns:
- list of Dash descriptors for this track.
-
setDescriptors
public void setDescriptors(@Nullable List<DashDescriptor> descriptors)Sets the Dash descriptors list- Parameters:
descriptors- list of Dash descriptors to set.
-
getLocalizedLanguageName
@NonNull public static String getLocalizedLanguageName(@Nullable String language)
Returns the given language code's name, in theLocaledetermined byLABEL_LOCALE. If such is null, the current device Locale will be used.- Parameters:
language- the language code- Returns:
- the language name
-
-