|
|
@ -20,7 +20,6 @@ import com.google.android.exoplayer2.upstream.DataSource; |
|
|
|
import com.google.android.exoplayer2.upstream.DefaultDataSourceFactory; |
|
|
|
import com.google.android.exoplayer2.upstream.cache.CacheDataSourceFactory; |
|
|
|
import com.google.android.exoplayer2.upstream.cache.SimpleCache; |
|
|
|
import com.google.android.exoplayer2.video.VideoListener; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
@ -237,7 +236,6 @@ public class VideoAwareRecyclerScroller extends RecyclerView.OnScrollListener { |
|
|
|
if (playerView == null) return; |
|
|
|
playerView.setPlayer(player); |
|
|
|
|
|
|
|
if (player != null) { |
|
|
|
btnMute = itemView.findViewById(R.id.btnMute); |
|
|
|
|
|
|
|
float vol = settingsHelper.getBoolean(Constants.MUTED_VIDEOS) ? 0f : 1f; |
|
|
@ -259,7 +257,6 @@ public class VideoAwareRecyclerScroller extends RecyclerView.OnScrollListener { |
|
|
|
|
|
|
|
playerView.setOnClickListener(v -> player.setPlayWhenReady(!player.getPlayWhenReady())); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (videoChangeCallback != null) videoChangeCallback.playerChanged(itemPos, player); |
|
|
|
} |
|
|
|