mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
20 lines
436 B
Java
20 lines
436 B
Java
package androidx.media3.exoplayer.source;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface SequenceableLoader {
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface Callback<T extends SequenceableLoader> {
|
|
void onContinueLoadingRequested(T t);
|
|
}
|
|
|
|
boolean continueLoading(long j);
|
|
|
|
long getBufferedPositionUs();
|
|
|
|
long getNextLoadPositionUs();
|
|
|
|
boolean isLoading();
|
|
|
|
void reevaluateBuffer(long j);
|
|
}
|