project: Rev 202

This commit is contained in:
Owain van Brakel
2021-12-14 18:20:58 +01:00
parent e974585ce8
commit 7c7bf0901a
406 changed files with 39725 additions and 39842 deletions

View File

@@ -19,25 +19,25 @@ public class VorbisMapping {
int[] submapResidue;
VorbisMapping() {
VorbisSample.readBits(16); // L: 12
this.submaps = VorbisSample.readBit() != 0 ? VorbisSample.readBits(4) + 1 : 1; // L: 13
if (VorbisSample.readBit() != 0) { // L: 14
VorbisSample.readBits(8); // L: 15
VorbisSample.readBits(16);
this.submaps = VorbisSample.readBit() != 0 ? VorbisSample.readBits(4) + 1 : 1;
if (VorbisSample.readBit() != 0) {
VorbisSample.readBits(8);
}
VorbisSample.readBits(2); // L: 18
if (this.submaps > 1) { // L: 19
this.mappingMux = VorbisSample.readBits(4); // L: 20
VorbisSample.readBits(2);
if (this.submaps > 1) {
this.mappingMux = VorbisSample.readBits(4);
}
this.submapFloor = new int[this.submaps]; // L: 22
this.submapResidue = new int[this.submaps]; // L: 23
this.submapFloor = new int[this.submaps];
this.submapResidue = new int[this.submaps];
for (int var1 = 0; var1 < this.submaps; ++var1) { // L: 24
VorbisSample.readBits(8); // L: 25
this.submapFloor[var1] = VorbisSample.readBits(8); // L: 26
this.submapResidue[var1] = VorbisSample.readBits(8); // L: 27
for (int var1 = 0; var1 < this.submaps; ++var1) {
VorbisSample.readBits(8);
this.submapFloor[var1] = VorbisSample.readBits(8);
this.submapResidue[var1] = VorbisSample.readBits(8);
}
} // L: 29
}
}