mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
29 lines
823 B
Java
29 lines
823 B
Java
|
package androidx.media3.common;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class AuxEffectInfo {
|
||
|
public static final int NO_AUX_EFFECT_ID = 0;
|
||
|
public final int effectId;
|
||
|
public final float sendLevel;
|
||
|
|
||
|
public AuxEffectInfo(int i, float f) {
|
||
|
this.effectId = i;
|
||
|
this.sendLevel = f;
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
AuxEffectInfo auxEffectInfo = (AuxEffectInfo) obj;
|
||
|
return this.effectId == auxEffectInfo.effectId && Float.compare(auxEffectInfo.sendLevel, this.sendLevel) == 0;
|
||
|
}
|
||
|
|
||
|
public int hashCode() {
|
||
|
return ((527 + this.effectId) * 31) + Float.floatToIntBits(this.sendLevel);
|
||
|
}
|
||
|
}
|