mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
13 lines
266 B
Java
13 lines
266 B
Java
![]() |
package androidx.media3.exoplayer.source.chunk;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class ChunkHolder {
|
||
|
public Chunk chunk;
|
||
|
public boolean endOfStream;
|
||
|
|
||
|
public void clear() {
|
||
|
this.chunk = null;
|
||
|
this.endOfStream = false;
|
||
|
}
|
||
|
}
|