use of com.google.android.exoplayer2.source.hls.playlist.HlsPlaylistTracker in project ExoPlayer by google.
the class HlsMediaSource method prepareSource.
@Override
public void prepareSource(ExoPlayer player, boolean isTopLevelSource, Listener listener) {
Assertions.checkState(playlistTracker == null);
playlistTracker = new HlsPlaylistTracker(manifestUri, dataSourceFactory, eventDispatcher, minLoadableRetryCount, this);
sourceListener = listener;
playlistTracker.start();
}
Aggregations