Class HlsMediaPlaylist

  • All Implemented Interfaces:
    FilterableManifest<HlsPlaylist>

    @Deprecated
    public final class HlsMediaPlaylist
    extends HlsPlaylist
    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.
    Represents an HLS media playlist.
    • Field Detail

      • PLAYLIST_TYPE_UNKNOWN

        public static final int PLAYLIST_TYPE_UNKNOWN
        Deprecated.
        See Also:
        Constant Field Values
      • PLAYLIST_TYPE_VOD

        public static final int PLAYLIST_TYPE_VOD
        Deprecated.
        See Also:
        Constant Field Values
      • PLAYLIST_TYPE_EVENT

        public static final int PLAYLIST_TYPE_EVENT
        Deprecated.
        See Also:
        Constant Field Values
      • playlistType

        public final @com.google.android.exoplayer2.source.hls.playlist.HlsMediaPlaylist.PlaylistType int playlistType
        Deprecated.
        The type of the playlist. See HlsMediaPlaylist.PlaylistType.
      • startOffsetUs

        public final long startOffsetUs
        Deprecated.
        The start offset in microseconds from the beginning of the playlist, as defined by #EXT-X-START, or C.TIME_UNSET if undefined. The value is guaranteed to be between 0 and durationUs, inclusive.
      • hasPositiveStartOffset

        public final boolean hasPositiveStartOffset
        Deprecated.
        Whether the startOffsetUs was explicitly defined by #EXT-X-START as a positive value or zero.
      • preciseStart

        public final boolean preciseStart
        Deprecated.
        Whether the start position should be precise, as defined by #EXT-X-START.
      • startTimeUs

        public final long startTimeUs
        Deprecated.
        If hasProgramDateTime is true, contains the datetime as microseconds since epoch. Otherwise, contains the aggregated duration of removed segments up to this snapshot of the playlist.
      • hasDiscontinuitySequence

        public final boolean hasDiscontinuitySequence
        Deprecated.
        Whether the playlist contains the #EXT-X-DISCONTINUITY-SEQUENCE tag.
      • discontinuitySequence

        public final int discontinuitySequence
        Deprecated.
        The discontinuity sequence number of the first media segment in the playlist, as defined by #EXT-X-DISCONTINUITY-SEQUENCE.
      • mediaSequence

        public final long mediaSequence
        Deprecated.
        The media sequence number of the first media segment in the playlist, as defined by #EXT-X-MEDIA-SEQUENCE.
      • version

        public final int version
        Deprecated.
        The compatibility version, as defined by #EXT-X-VERSION.
      • targetDurationUs

        public final long targetDurationUs
        Deprecated.
        The target duration in microseconds, as defined by #EXT-X-TARGETDURATION.
      • partTargetDurationUs

        public final long partTargetDurationUs
        Deprecated.
        The target duration for segment parts, as defined by #EXT-X-PART-INF, or C.TIME_UNSET if undefined.
      • hasEndTag

        public final boolean hasEndTag
        Deprecated.
        Whether the playlist contains the #EXT-X-ENDLIST tag.
      • hasProgramDateTime

        public final boolean hasProgramDateTime
        Deprecated.
        Whether the playlist contains a #EXT-X-PROGRAM-DATE-TIME tag.
      • protectionSchemes

        @Nullable
        public final DrmInitData protectionSchemes
        Deprecated.
        Contains the CDM protection schemes used by segments in this playlist. Does not contain any key acquisition data. Null if none of the segments in the playlist is CDM-encrypted.
      • trailingParts

        public final List<HlsMediaPlaylist.Part> trailingParts
        Deprecated.
        The list of parts at the end of the playlist for which the segment is not in the playlist yet.
      • durationUs

        public final long durationUs
        Deprecated.
        The total duration of the playlist in microseconds.
    • Method Detail

      • copy

        public HlsMediaPlaylist copy​(List<StreamKey> streamKeys)
        Deprecated.
        Description copied from interface: FilterableManifest
        Returns a copy of the manifest including only the streams specified by the given keys. If the manifest is unchanged then the instance may return itself.
        Parameters:
        streamKeys - A non-empty list of stream keys.
        Returns:
        The filtered manifest.
      • isNewerThan

        public boolean isNewerThan​(@Nullable
                                   HlsMediaPlaylist other)
        Deprecated.
        Returns whether this playlist is newer than other.
        Parameters:
        other - The playlist to compare.
        Returns:
        Whether this playlist is newer than other.
      • getEndTimeUs

        public long getEndTimeUs()
        Deprecated.
        Returns the result of adding the duration of the playlist to its start time.
      • copyWith

        public HlsMediaPlaylist copyWith​(long startTimeUs,
                                         int discontinuitySequence)
        Deprecated.
        Returns a playlist identical to this one except for the start time, the discontinuity sequence and hasDiscontinuitySequence values. The first two are set to the specified values, hasDiscontinuitySequence is set to true.
        Parameters:
        startTimeUs - The start time for the returned playlist.
        discontinuitySequence - The discontinuity sequence for the returned playlist.
        Returns:
        An identical playlist including the provided discontinuity and timing information.
      • copyWithEndTag

        public HlsMediaPlaylist copyWithEndTag()
        Deprecated.
        Returns a playlist identical to this one except that an end tag is added. If an end tag is already present then the playlist will return itself.