Files
rr3-apk/decompiled/sources/com/fyber/inneractive/sdk/player/exoplayer2/n.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

33 lines
884 B
Java

package com.fyber.inneractive.sdk.player.exoplayer2;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes2.dex */
public final class n {
public static final n d = new n(1.0f, 1.0f);
public final float a;
public final float b;
public final int c;
public n(float f, float f2) {
this.a = f;
this.b = f2;
this.c = Math.round(f * 1000.0f);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || n.class != obj.getClass()) {
return false;
}
n nVar = (n) obj;
return this.a == nVar.a && this.b == nVar.b;
}
public final int hashCode() {
return Float.floatToRawIntBits(this.b) + ((Float.floatToRawIntBits(this.a) + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31);
}
}