package c.i.a.c.v1; import androidx.annotation.Nullable; /* compiled from: AuxEffectInfo */ public final class t { public final int a; public final float b; public t(int i, float f) { this.a = i; this.b = f; } public boolean equals(@Nullable Object obj) { if (this == obj) { return true; } if (obj == null || t.class != obj.getClass()) { return false; } t tVar = (t) obj; return this.a == tVar.a && Float.compare(tVar.b, this.b) == 0; } public int hashCode() { return Float.floatToIntBits(this.b) + ((527 + this.a) * 31); } }