mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
72 lines
2.1 KiB
Java
72 lines
2.1 KiB
Java
package androidx.media3.extractor.mkv;
|
|
|
|
import androidx.media3.extractor.ExtractorInput;
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
final class VarintReader {
|
|
private static final int STATE_BEGIN_READING = 0;
|
|
private static final int STATE_READ_CONTENTS = 1;
|
|
private static final long[] VARINT_LENGTH_MASKS = {128, 64, 32, 16, 8, 4, 2, 1};
|
|
private int length;
|
|
private final byte[] scratch = new byte[8];
|
|
private int state;
|
|
|
|
public int getLastLength() {
|
|
return this.length;
|
|
}
|
|
|
|
public void reset() {
|
|
this.state = 0;
|
|
this.length = 0;
|
|
}
|
|
|
|
public long readUnsignedVarint(ExtractorInput extractorInput, boolean z, boolean z2, int i) throws IOException {
|
|
if (this.state == 0) {
|
|
if (!extractorInput.readFully(this.scratch, 0, 1, z)) {
|
|
return -1L;
|
|
}
|
|
int parseUnsignedVarintLength = parseUnsignedVarintLength(this.scratch[0] & 255);
|
|
this.length = parseUnsignedVarintLength;
|
|
if (parseUnsignedVarintLength == -1) {
|
|
throw new IllegalStateException("No valid varint length mask found");
|
|
}
|
|
this.state = 1;
|
|
}
|
|
int i2 = this.length;
|
|
if (i2 > i) {
|
|
this.state = 0;
|
|
return -2L;
|
|
}
|
|
if (i2 != 1) {
|
|
extractorInput.readFully(this.scratch, 1, i2 - 1);
|
|
}
|
|
this.state = 0;
|
|
return assembleVarint(this.scratch, this.length, z2);
|
|
}
|
|
|
|
public static int parseUnsignedVarintLength(int i) {
|
|
int i2 = 0;
|
|
while (true) {
|
|
long[] jArr = VARINT_LENGTH_MASKS;
|
|
if (i2 >= jArr.length) {
|
|
return -1;
|
|
}
|
|
if ((jArr[i2] & i) != 0) {
|
|
return i2 + 1;
|
|
}
|
|
i2++;
|
|
}
|
|
}
|
|
|
|
public static long assembleVarint(byte[] bArr, int i, boolean z) {
|
|
long j = bArr[0] & 255;
|
|
if (z) {
|
|
j &= ~VARINT_LENGTH_MASKS[i - 1];
|
|
}
|
|
for (int i2 = 1; i2 < i; i2++) {
|
|
j = (j << 8) | (bArr[i2] & 255);
|
|
}
|
|
return j;
|
|
}
|
|
}
|