mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
21 lines
436 B
Java
21 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);
|
||
|
}
|