mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
19 lines
405 B
Java
19 lines
405 B
Java
|
package androidx.media3.decoder;
|
||
|
|
||
|
import androidx.media3.decoder.DecoderException;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface Decoder<I, O, E extends DecoderException> {
|
||
|
I dequeueInputBuffer() throws DecoderException;
|
||
|
|
||
|
O dequeueOutputBuffer() throws DecoderException;
|
||
|
|
||
|
void flush();
|
||
|
|
||
|
String getName();
|
||
|
|
||
|
void queueInputBuffer(I i) throws DecoderException;
|
||
|
|
||
|
void release();
|
||
|
}
|