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

13 lines
276 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package com.google.android.exoplayer2.upstream;
/* loaded from: classes2.dex */
public final class Allocation {
public final byte[] data;
public final int offset;
public Allocation(byte[] bArr, int i) {
this.data = bArr;
this.offset = i;
}
}