Class MediaPeriodId
- java.lang.Object
-
- com.google.android.exoplayer2.source.MediaPeriodId
-
- Direct Known Subclasses:
MediaSource.MediaPeriodId
@Deprecated public class MediaPeriodId extends Object
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.Identifies a specific playback of aTimeline.Period.A
Timeline.Periodcan be played multiple times, for example if it is repeated. Each instances of this class identifies a specific playback of aTimeline.Period.In ExoPlayer's implementation,
MediaPeriodIdidentifies aMediaPeriod.
-
-
Field Summary
Fields Modifier and Type Field Description intadGroupIndexDeprecated.If the media period is in an ad group, the index of the ad group in the period.intadIndexInAdGroupDeprecated.If the media period is in an ad group, the index of the ad in its ad group in the period.intnextAdGroupIndexDeprecated.The index of the next ad group to which the media period's content is clipped, orC.INDEX_UNSETif there is no following ad group or if this media period is an ad.ObjectperiodUidDeprecated.The unique id of the timeline period.longwindowSequenceNumberDeprecated.The sequence number of the window in the buffered sequence of windows this media period is part of.
-
Constructor Summary
Constructors Modifier Constructor Description protectedMediaPeriodId(MediaPeriodId mediaPeriodId)Deprecated.Copy constructor for inheritance.MediaPeriodId(Object periodUid)Deprecated.Creates a media period identifier for a period which is not part of a buffered sequence of windows.MediaPeriodId(Object periodUid, int adGroupIndex, int adIndexInAdGroup, long windowSequenceNumber)Deprecated.Creates a media period identifier that identifies an ad within an ad group at the specified timeline period.MediaPeriodId(Object periodUid, long windowSequenceNumber)Deprecated.Creates a media period identifier for the specified period in the timeline.MediaPeriodId(Object periodUid, long windowSequenceNumber, int nextAdGroupIndex)Deprecated.Creates a media period identifier for the specified clipped period in the timeline.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description MediaPeriodIdcopyWithPeriodUid(Object newPeriodUid)Deprecated.Returns a copy of this period identifier but withnewPeriodUidas its period uid.MediaPeriodIdcopyWithWindowSequenceNumber(long windowSequenceNumber)Deprecated.Returns a copy of this period identifier with a newwindowSequenceNumber.booleanequals(Object obj)Deprecated.inthashCode()Deprecated.booleanisAd()Deprecated.Returns whether this period identifier identifies an ad in an ad group in a period.
-
-
-
Field Detail
-
periodUid
public final Object periodUid
Deprecated.The unique id of the timeline period.
-
adGroupIndex
public final int adGroupIndex
Deprecated.If the media period is in an ad group, the index of the ad group in the period.C.INDEX_UNSETotherwise.
-
adIndexInAdGroup
public final int adIndexInAdGroup
Deprecated.If the media period is in an ad group, the index of the ad in its ad group in the period.C.INDEX_UNSETotherwise.
-
windowSequenceNumber
public final long windowSequenceNumber
Deprecated.The sequence number of the window in the buffered sequence of windows this media period is part of.C.INDEX_UNSETif the media period id is not part of a buffered sequence of windows.
-
nextAdGroupIndex
public final int nextAdGroupIndex
Deprecated.The index of the next ad group to which the media period's content is clipped, orC.INDEX_UNSETif there is no following ad group or if this media period is an ad.
-
-
Constructor Detail
-
MediaPeriodId
public MediaPeriodId(Object periodUid)
Deprecated.Creates a media period identifier for a period which is not part of a buffered sequence of windows.- Parameters:
periodUid- The unique id of the timeline period.
-
MediaPeriodId
public MediaPeriodId(Object periodUid, long windowSequenceNumber)
Deprecated.Creates a media period identifier for the specified period in the timeline.- Parameters:
periodUid- The unique id of the timeline period.windowSequenceNumber- The sequence number of the window in the buffered sequence of windows this media period is part of.
-
MediaPeriodId
public MediaPeriodId(Object periodUid, long windowSequenceNumber, int nextAdGroupIndex)
Deprecated.Creates a media period identifier for the specified clipped period in the timeline.- Parameters:
periodUid- The unique id of the timeline period.windowSequenceNumber- The sequence number of the window in the buffered sequence of windows this media period is part of.nextAdGroupIndex- The index of the next ad group to which the media period's content is clipped.
-
MediaPeriodId
public MediaPeriodId(Object periodUid, int adGroupIndex, int adIndexInAdGroup, long windowSequenceNumber)
Deprecated.Creates a media period identifier that identifies an ad within an ad group at the specified timeline period.- Parameters:
periodUid- The unique id of the timeline period that contains the ad group.adGroupIndex- The index of the ad group.adIndexInAdGroup- The index of the ad in the ad group.windowSequenceNumber- The sequence number of the window in the buffered sequence of windows this media period is part of.
-
MediaPeriodId
protected MediaPeriodId(MediaPeriodId mediaPeriodId)
Deprecated.Copy constructor for inheritance.
-
-
Method Detail
-
copyWithPeriodUid
public MediaPeriodId copyWithPeriodUid(Object newPeriodUid)
Deprecated.Returns a copy of this period identifier but withnewPeriodUidas its period uid.
-
copyWithWindowSequenceNumber
public MediaPeriodId copyWithWindowSequenceNumber(long windowSequenceNumber)
Deprecated.Returns a copy of this period identifier with a newwindowSequenceNumber.
-
isAd
public boolean isAd()
Deprecated.Returns whether this period identifier identifies an ad in an ad group in a period.
-
-