mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
24 lines
472 B
Java
24 lines
472 B
Java
package androidx.media3.exoplayer.upstream;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface Allocator {
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface AllocationNode {
|
|
Allocation getAllocation();
|
|
|
|
AllocationNode next();
|
|
}
|
|
|
|
Allocation allocate();
|
|
|
|
int getIndividualAllocationLength();
|
|
|
|
int getTotalBytesAllocated();
|
|
|
|
void release(Allocation allocation);
|
|
|
|
void release(AllocationNode allocationNode);
|
|
|
|
void trim();
|
|
}
|