mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 15:23:00 +00:00 
			
		
		
		
	-Fixed failed media source not treated as ready.
This commit is contained in:
		| @@ -4,10 +4,8 @@ import android.support.annotation.NonNull; | ||||
|  | ||||
| import com.google.android.exoplayer2.ExoPlayer; | ||||
| import com.google.android.exoplayer2.source.MediaPeriod; | ||||
| import com.google.android.exoplayer2.source.MediaSource; | ||||
| import com.google.android.exoplayer2.upstream.Allocator; | ||||
|  | ||||
| import org.schabi.newpipe.extractor.stream.StreamInfo; | ||||
| import org.schabi.newpipe.playlist.PlayQueueItem; | ||||
|  | ||||
| import java.io.IOException; | ||||
|   | ||||
| @@ -219,13 +219,16 @@ public class MediaSourceManager { | ||||
|     //////////////////////////////////////////////////////////////////////////*/ | ||||
|  | ||||
|     private boolean isPlayQueueReady() { | ||||
|         if (playQueue == null) return false; | ||||
|  | ||||
|         final boolean isWindowLoaded = playQueue.size() - playQueue.getIndex() > windowSize; | ||||
|         return playQueue.isComplete() || isWindowLoaded; | ||||
|     } | ||||
|  | ||||
|     // Checks if the current playback media source is a placeholder, if so, then it is not ready | ||||
|     private boolean isPlaybackReady() { | ||||
|         return sources.getSize() > 0 && | ||||
|                 sources.getMediaSource(playQueue.getIndex()) instanceof LoadedMediaSource; | ||||
|         return sources != null && playQueue != null && sources.getSize() > playQueue.getIndex() && | ||||
|                 !(sources.getMediaSource(playQueue.getIndex()) instanceof PlaceholderMediaSource); | ||||
|     } | ||||
|  | ||||
|     private void tryBlock() { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 John Zhen Mo
					John Zhen Mo