Class ConcatenatingMediaSource2

  • All Implemented Interfaces:
    MediaSource

    @Deprecated
    public final class ConcatenatingMediaSource2
    extends CompositeMediaSource<Integer>
    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.
    Concatenates multiple MediaSources, combining everything in one single Timeline.Window.

    This class can only be used under the following conditions:

    • All sources must be non-empty.
    • All Windows defined by the sources, except the first, must have an period offset of zero. This excludes, for example, live streams or ClippingMediaSource with a non-zero start position.
    • Method Detail

      • getInitialTimeline

        @Nullable
        public Timeline getInitialTimeline()
        Deprecated.
        Description copied from interface: MediaSource
        Returns the initial placeholder timeline that is returned immediately when the real timeline is not yet known, or null to let the player create an initial timeline.

        Should not be called directly from application code.

        The initial timeline must use the same uids for windows and periods that the real timeline will use. It also must provide windows which are marked as dynamic to indicate that the window is expected to change when the real timeline arrives.

        Any media source which has multiple windows should typically provide such an initial timeline to make sure the player reports the correct number of windows immediately.

        This method must be called on the application thread.

      • getMediaItem

        public MediaItem getMediaItem()
        Deprecated.
        Description copied from interface: MediaSource
        Returns the MediaItem whose media is provided by the source.

        Should not be called directly from application code.

        This method must be called on the application thread.

      • createPeriod

        public MediaPeriod createPeriod​(MediaSource.MediaPeriodId id,
                                        Allocator allocator,
                                        long startPositionUs)
        Deprecated.
        Description copied from interface: MediaSource
        Returns a new MediaPeriod identified by periodId.

        Should not be called directly from application code.

        This method must be called on the playback thread and only if the source is enabled.

        Parameters:
        id - The identifier of the period.
        allocator - An Allocator from which to obtain media buffer allocations.
        startPositionUs - The expected start position, in microseconds.
        Returns:
        A new MediaPeriod.
      • releasePeriod

        public void releasePeriod​(MediaPeriod mediaPeriod)
        Deprecated.
        Description copied from interface: MediaSource
        Releases the period.

        Should not be called directly from application code.

        This method must be called on the playback thread.

        Parameters:
        mediaPeriod - The period to release.
      • onChildSourceInfoRefreshed

        protected void onChildSourceInfoRefreshed​(Integer childSourceId,
                                                  MediaSource mediaSource,
                                                  Timeline newTimeline)
        Deprecated.
        Description copied from class: CompositeMediaSource
        Called when the source info of a child source has been refreshed.
        Specified by:
        onChildSourceInfoRefreshed in class CompositeMediaSource<Integer>
        Parameters:
        childSourceId - The unique id used to prepare the child source.
        mediaSource - The child source whose source info has been refreshed.
        newTimeline - The timeline of the child source.
      • getWindowIndexForChildWindowIndex

        protected int getWindowIndexForChildWindowIndex​(Integer childSourceId,
                                                        int windowIndex)
        Deprecated.
        Description copied from class: CompositeMediaSource
        Returns the window index in the composite source corresponding to the specified window index in a child source. The default implementation does not change the window index.
        Overrides:
        getWindowIndexForChildWindowIndex in class CompositeMediaSource<Integer>
        Parameters:
        childSourceId - The unique id used to prepare the child source.
        windowIndex - A window index of the child source.
        Returns:
        The corresponding window index in the composite source.