Rabbit-R1/android (non root)/java/sources/com/google/android/exoplayer2/upstream/DataSink.java

19 lines
405 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package com.google.android.exoplayer2.upstream;
import java.io.IOException;
/* loaded from: classes2.dex */
public interface DataSink {
/* loaded from: classes2.dex */
public interface Factory {
DataSink createDataSink();
}
void close() throws IOException;
void open(DataSpec dataSpec) throws IOException;
void write(byte[] bArr, int i, int i2) throws IOException;
}