mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
14 lines
340 B
Java
14 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);
|
|
}
|