mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
15 lines
340 B
Java
15 lines
340 B
Java
|
package androidx.media3.extractor.ogg;
|
||
|
|
||
|
import androidx.media3.extractor.ExtractorInput;
|
||
|
import androidx.media3.extractor.SeekMap;
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
interface OggSeeker {
|
||
|
SeekMap createSeekMap();
|
||
|
|
||
|
long read(ExtractorInput extractorInput) throws IOException;
|
||
|
|
||
|
void startSeek(long j);
|
||
|
}
|