/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.mozilla.thirdparty.com.google.android.exoplayer2.trackselection; import androidx.annotation.Nullable; import org.mozilla.thirdparty.com.google.android.exoplayer2.ExoPlaybackException; import org.mozilla.thirdparty.com.google.android.exoplayer2.ExoPlayer; import org.mozilla.thirdparty.com.google.android.exoplayer2.Renderer; import org.mozilla.thirdparty.com.google.android.exoplayer2.RendererCapabilities; import org.mozilla.thirdparty.com.google.android.exoplayer2.RendererConfiguration; import org.mozilla.thirdparty.com.google.android.exoplayer2.Timeline; import org.mozilla.thirdparty.com.google.android.exoplayer2.source.MediaSource.MediaPeriodId; import org.mozilla.thirdparty.com.google.android.exoplayer2.source.TrackGroupArray; import org.mozilla.thirdparty.com.google.android.exoplayer2.upstream.BandwidthMeter; import org.mozilla.thirdparty.com.google.android.exoplayer2.util.Assertions; /** * The component of an {@link ExoPlayer} responsible for selecting tracks to be consumed by each of * the player's {@link Renderer}s. The {@link DefaultTrackSelector} implementation should be * suitable for most use cases. * *

Interactions with the player

* * The following interactions occur between the player and its track selector during playback. * * * *

Renderer configuration

* * The {@link TrackSelectorResult} returned by {@link #selectTracks(RendererCapabilities[], * TrackGroupArray, MediaPeriodId, Timeline)} contains not only {@link TrackSelection}s for each * renderer, but also {@link RendererConfiguration}s defining configuration parameters that the * renderers should apply when consuming the corresponding media. Whilst it may seem counter- * intuitive for a track selector to also specify renderer configuration information, in practice * the two are tightly bound together. It may only be possible to play a certain combination tracks * if the renderers are configured in a particular way. Equally, it may only be possible to * configure renderers in a particular way if certain tracks are selected. Hence it makes sense to * determine the track selection and corresponding renderer configurations in a single step. * *

Threading model

* * All calls made by the player into the track selector are on the player's internal playback * thread. The track selector may call {@link InvalidationListener#onTrackSelectionsInvalidated()} * from any thread. */ public abstract class TrackSelector { /** * Notified when selections previously made by a {@link TrackSelector} are no longer valid. */ public interface InvalidationListener { /** * Called by a {@link TrackSelector} to indicate that selections it has previously made are no * longer valid. May be called from any thread. */ void onTrackSelectionsInvalidated(); } @Nullable private InvalidationListener listener; @Nullable private BandwidthMeter bandwidthMeter; /** * Called by the player to initialize the selector. * * @param listener An invalidation listener that the selector can call to indicate that selections * it has previously made are no longer valid. * @param bandwidthMeter A bandwidth meter which can be used by track selections to select tracks. */ public final void init(InvalidationListener listener, BandwidthMeter bandwidthMeter) { this.listener = listener; this.bandwidthMeter = bandwidthMeter; } /** * Called by the player to perform a track selection. * * @param rendererCapabilities The {@link RendererCapabilities} of the renderers for which tracks * are to be selected. * @param trackGroups The available track groups. * @param periodId The {@link MediaPeriodId} of the period for which tracks are to be selected. * @param timeline The {@link Timeline} holding the period for which tracks are to be selected. * @return A {@link TrackSelectorResult} describing the track selections. * @throws ExoPlaybackException If an error occurs selecting tracks. */ public abstract TrackSelectorResult selectTracks( RendererCapabilities[] rendererCapabilities, TrackGroupArray trackGroups, MediaPeriodId periodId, Timeline timeline) throws ExoPlaybackException; /** * Called by the player when a {@link TrackSelectorResult} previously generated by {@link * #selectTracks(RendererCapabilities[], TrackGroupArray, MediaPeriodId, Timeline)} is activated. * * @param info The value of {@link TrackSelectorResult#info} in the activated selection. */ public abstract void onSelectionActivated(Object info); /** * Calls {@link InvalidationListener#onTrackSelectionsInvalidated()} to invalidate all previously * generated track selections. */ protected final void invalidate() { if (listener != null) { listener.onTrackSelectionsInvalidated(); } } /** * Returns a bandwidth meter which can be used by track selections to select tracks. Must only be * called after {@link #init(InvalidationListener, BandwidthMeter)} has been called. */ protected final BandwidthMeter getBandwidthMeter() { return Assertions.checkNotNull(bandwidthMeter); } }