mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 10:02:28 -06:00
27 lines
738 B
Java
27 lines
738 B
Java
|
package com.google.android.exoplayer2;
|
||
|
|
||
|
import com.google.android.exoplayer2.source.TrackGroupArray;
|
||
|
import com.google.android.exoplayer2.trackselection.ExoTrackSelection;
|
||
|
import com.google.android.exoplayer2.upstream.Allocator;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface LoadControl {
|
||
|
Allocator getAllocator();
|
||
|
|
||
|
long getBackBufferDurationUs();
|
||
|
|
||
|
void onPrepared();
|
||
|
|
||
|
void onReleased();
|
||
|
|
||
|
void onStopped();
|
||
|
|
||
|
void onTracksSelected(Renderer[] rendererArr, TrackGroupArray trackGroupArray, ExoTrackSelection[] exoTrackSelectionArr);
|
||
|
|
||
|
boolean retainBackBufferFromKeyframe();
|
||
|
|
||
|
boolean shouldContinueLoading(long j, long j2, float f);
|
||
|
|
||
|
boolean shouldStartPlayback(long j, float f, boolean z, long j2);
|
||
|
}
|