discord-jadx/app/src/main/java/co/discord/media_engine/InboundFrameOpStats.java

159 lines
5.0 KiB
Java

package co.discord.media_engine;
import c.d.b.a.a;
import d0.z.d.m;
/* compiled from: VoiceQuality.kt */
public final class InboundFrameOpStats {
private final Integer accelerated;
private final Integer cng;
private final Integer expanded;
private final Integer merged;
private final Integer normal;
private final Integer preemptiveExpanded;
private final Integer silent;
public InboundFrameOpStats(Integer num, Integer num2, Integer num3, Integer num4, Integer num5, Integer num6, Integer num7) {
this.silent = num;
this.normal = num2;
this.merged = num3;
this.expanded = num4;
this.accelerated = num5;
this.preemptiveExpanded = num6;
this.cng = num7;
}
public static /* synthetic */ InboundFrameOpStats copy$default(InboundFrameOpStats inboundFrameOpStats, Integer num, Integer num2, Integer num3, Integer num4, Integer num5, Integer num6, Integer num7, int i, Object obj) {
if ((i & 1) != 0) {
num = inboundFrameOpStats.silent;
}
if ((i & 2) != 0) {
num2 = inboundFrameOpStats.normal;
}
if ((i & 4) != 0) {
num3 = inboundFrameOpStats.merged;
}
if ((i & 8) != 0) {
num4 = inboundFrameOpStats.expanded;
}
if ((i & 16) != 0) {
num5 = inboundFrameOpStats.accelerated;
}
if ((i & 32) != 0) {
num6 = inboundFrameOpStats.preemptiveExpanded;
}
if ((i & 64) != 0) {
num7 = inboundFrameOpStats.cng;
}
return inboundFrameOpStats.copy(num, num2, num3, num4, num5, num6, num7);
}
public final Integer component1() {
return this.silent;
}
public final Integer component2() {
return this.normal;
}
public final Integer component3() {
return this.merged;
}
public final Integer component4() {
return this.expanded;
}
public final Integer component5() {
return this.accelerated;
}
public final Integer component6() {
return this.preemptiveExpanded;
}
public final Integer component7() {
return this.cng;
}
public final InboundFrameOpStats copy(Integer num, Integer num2, Integer num3, Integer num4, Integer num5, Integer num6, Integer num7) {
return new InboundFrameOpStats(num, num2, num3, num4, num5, num6, num7);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof InboundFrameOpStats)) {
return false;
}
InboundFrameOpStats inboundFrameOpStats = (InboundFrameOpStats) obj;
return m.areEqual(this.silent, inboundFrameOpStats.silent) && m.areEqual(this.normal, inboundFrameOpStats.normal) && m.areEqual(this.merged, inboundFrameOpStats.merged) && m.areEqual(this.expanded, inboundFrameOpStats.expanded) && m.areEqual(this.accelerated, inboundFrameOpStats.accelerated) && m.areEqual(this.preemptiveExpanded, inboundFrameOpStats.preemptiveExpanded) && m.areEqual(this.cng, inboundFrameOpStats.cng);
}
public final Integer getAccelerated() {
return this.accelerated;
}
public final Integer getCng() {
return this.cng;
}
public final Integer getExpanded() {
return this.expanded;
}
public final Integer getMerged() {
return this.merged;
}
public final Integer getNormal() {
return this.normal;
}
public final Integer getPreemptiveExpanded() {
return this.preemptiveExpanded;
}
public final Integer getSilent() {
return this.silent;
}
public int hashCode() {
Integer num = this.silent;
int i = 0;
int hashCode = (num != null ? num.hashCode() : 0) * 31;
Integer num2 = this.normal;
int hashCode2 = (hashCode + (num2 != null ? num2.hashCode() : 0)) * 31;
Integer num3 = this.merged;
int hashCode3 = (hashCode2 + (num3 != null ? num3.hashCode() : 0)) * 31;
Integer num4 = this.expanded;
int hashCode4 = (hashCode3 + (num4 != null ? num4.hashCode() : 0)) * 31;
Integer num5 = this.accelerated;
int hashCode5 = (hashCode4 + (num5 != null ? num5.hashCode() : 0)) * 31;
Integer num6 = this.preemptiveExpanded;
int hashCode6 = (hashCode5 + (num6 != null ? num6.hashCode() : 0)) * 31;
Integer num7 = this.cng;
if (num7 != null) {
i = num7.hashCode();
}
return hashCode6 + i;
}
public String toString() {
StringBuilder L = a.L("InboundFrameOpStats(silent=");
L.append(this.silent);
L.append(", normal=");
L.append(this.normal);
L.append(", merged=");
L.append(this.merged);
L.append(", expanded=");
L.append(this.expanded);
L.append(", accelerated=");
L.append(this.accelerated);
L.append(", preemptiveExpanded=");
L.append(this.preemptiveExpanded);
L.append(", cng=");
return a.B(L, this.cng, ")");
}
}