1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-08-04 10:00:47 +00:00
NewPipe/app/src/main/java/org/schabi/newpipe/playlist/SinglePlayQueue.java
John Zhen Mo 0806344ffb -Changed quality resolution to persist across player.
-Updated ExoPlayer to 2.5.4.
-Expanded button size in main video player play queue.
-Removed Quality event.
-Extracted player error strings to xml.
2017-10-30 20:58:46 -07:00

20 lines
428 B
Java

package org.schabi.newpipe.playlist;
import org.schabi.newpipe.extractor.stream.StreamInfo;
import java.util.Collections;
public final class SinglePlayQueue extends PlayQueue {
public SinglePlayQueue(final StreamInfo info) {
super(0, Collections.singletonList(new PlayQueueItem(info)));
}
@Override
public boolean isComplete() {
return true;
}
@Override
public void fetch() {}
}