Rabbit-R1/android (non root)/java/sources/androidx/media3/common/audio/ChannelMixingMatrix.java
2024-05-21 17:08:36 -04:00

124 lines
3.8 KiB
Java

package androidx.media3.common.audio;
import androidx.media3.common.util.Assertions;
/* loaded from: classes2.dex */
public final class ChannelMixingMatrix {
private final float[] coefficients;
private final int inputChannelCount;
private final boolean isDiagonal;
private final boolean isIdentity;
private final boolean isZero;
private final int outputChannelCount;
public int getInputChannelCount() {
return this.inputChannelCount;
}
public int getOutputChannelCount() {
return this.outputChannelCount;
}
public boolean isDiagonal() {
return this.isDiagonal;
}
public boolean isIdentity() {
return this.isIdentity;
}
public boolean isSquare() {
return this.inputChannelCount == this.outputChannelCount;
}
public boolean isZero() {
return this.isZero;
}
public static ChannelMixingMatrix create(int i, int i2) {
return new ChannelMixingMatrix(i, i2, createMixingCoefficients(i, i2));
}
public ChannelMixingMatrix(int i, int i2, float[] fArr) {
Assertions.checkArgument(i > 0, "Input channel count must be positive.");
Assertions.checkArgument(i2 > 0, "Output channel count must be positive.");
Assertions.checkArgument(fArr.length == i * i2, "Coefficient array length is invalid.");
this.inputChannelCount = i;
this.outputChannelCount = i2;
this.coefficients = checkCoefficientsValid(fArr);
boolean z = true;
boolean z2 = true;
boolean z3 = true;
int i3 = 0;
while (i3 < i) {
int i4 = 0;
while (i4 < i2) {
float mixingCoefficient = getMixingCoefficient(i3, i4);
boolean z4 = i3 == i4;
if (mixingCoefficient != 1.0f && z4) {
z3 = false;
}
if (mixingCoefficient != 0.0f) {
z = false;
if (!z4) {
z2 = false;
}
}
i4++;
}
i3++;
}
this.isZero = z;
boolean z5 = isSquare() && z2;
this.isDiagonal = z5;
this.isIdentity = z5 && z3;
}
public float getMixingCoefficient(int i, int i2) {
return this.coefficients[(i * this.outputChannelCount) + i2];
}
public ChannelMixingMatrix scaleBy(float f) {
float[] fArr = new float[this.coefficients.length];
int i = 0;
while (true) {
float[] fArr2 = this.coefficients;
if (i < fArr2.length) {
fArr[i] = fArr2[i] * f;
i++;
} else {
return new ChannelMixingMatrix(this.inputChannelCount, this.outputChannelCount, fArr);
}
}
}
private static float[] createMixingCoefficients(int i, int i2) {
if (i == i2) {
return initializeIdentityMatrix(i2);
}
if (i == 1 && i2 == 2) {
return new float[]{1.0f, 1.0f};
}
if (i == 2 && i2 == 1) {
return new float[]{0.5f, 0.5f};
}
throw new UnsupportedOperationException("Default channel mixing coefficients for " + i + "->" + i2 + " are not yet implemented.");
}
private static float[] initializeIdentityMatrix(int i) {
float[] fArr = new float[i * i];
for (int i2 = 0; i2 < i; i2++) {
fArr[(i * i2) + i2] = 1.0f;
}
return fArr;
}
private static float[] checkCoefficientsValid(float[] fArr) {
for (int i = 0; i < fArr.length; i++) {
if (fArr[i] < 0.0f) {
throw new IllegalArgumentException("Coefficient at index " + i + " is negative.");
}
}
return fArr;
}
}