mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 07:13:00 +00:00 
			
		
		
		
	Merge pull request #3752 from Redirion/exoupdate
Update to ExoPlayer 2.11.6
This commit is contained in:
		| @@ -84,7 +84,7 @@ ext { | ||||
|     checkstyleVersion = '8.32' | ||||
|     stethoVersion = '1.5.1' | ||||
|     leakCanaryVersion = '2.2' | ||||
|     exoPlayerVersion = '2.11.4' | ||||
|     exoPlayerVersion = '2.11.6' | ||||
|     androidxLifecycleVersion = '2.2.0' | ||||
|     androidxRoomVersion = '2.2.5' | ||||
|     groupieVersion = '2.8.0' | ||||
|   | ||||
| @@ -215,7 +215,7 @@ public abstract class BasePlayer implements | ||||
|  | ||||
|         final TrackSelection.Factory trackSelectionFactory = PlayerHelper | ||||
|                 .getQualitySelector(context); | ||||
|         this.trackSelector = new CustomTrackSelector(trackSelectionFactory); | ||||
|         this.trackSelector = new CustomTrackSelector(context, trackSelectionFactory); | ||||
|  | ||||
|         this.loadControl = new LoadController(); | ||||
|         this.renderFactory = new DefaultRenderersFactory(context); | ||||
|   | ||||
| @@ -1,5 +1,6 @@ | ||||
| package org.schabi.newpipe.player.playback; | ||||
|  | ||||
| import android.content.Context; | ||||
| import android.text.TextUtils; | ||||
| import android.util.Pair; | ||||
|  | ||||
| @@ -26,8 +27,9 @@ import com.google.android.exoplayer2.util.Assertions; | ||||
| public class CustomTrackSelector extends DefaultTrackSelector { | ||||
|     private String preferredTextLanguage; | ||||
|  | ||||
|     public CustomTrackSelector(final TrackSelection.Factory adaptiveTrackSelectionFactory) { | ||||
|         super(adaptiveTrackSelectionFactory); | ||||
|     public CustomTrackSelector(final Context context, | ||||
|                                final TrackSelection.Factory adaptiveTrackSelectionFactory) { | ||||
|         super(context, adaptiveTrackSelectionFactory); | ||||
|     } | ||||
|  | ||||
|     private static boolean formatHasLanguage(final Format format, final String language) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Tobias Groza
					Tobias Groza