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

159 lines
4.7 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 Long accelerated;
private final Long cng;
private final Long expanded;
private final Long merged;
private final Long normal;
private final Long preemptiveExpanded;
private final Long silent;
public InboundFrameOpStats(Long l, Long l2, Long l3, Long l4, Long l5, Long l6, Long l7) {
this.silent = l;
this.normal = l2;
this.merged = l3;
this.expanded = l4;
this.accelerated = l5;
this.preemptiveExpanded = l6;
this.cng = l7;
}
public static /* synthetic */ InboundFrameOpStats copy$default(InboundFrameOpStats inboundFrameOpStats, Long l, Long l2, Long l3, Long l4, Long l5, Long l6, Long l7, int i, Object obj) {
if ((i & 1) != 0) {
l = inboundFrameOpStats.silent;
}
if ((i & 2) != 0) {
l2 = inboundFrameOpStats.normal;
}
if ((i & 4) != 0) {
l3 = inboundFrameOpStats.merged;
}
if ((i & 8) != 0) {
l4 = inboundFrameOpStats.expanded;
}
if ((i & 16) != 0) {
l5 = inboundFrameOpStats.accelerated;
}
if ((i & 32) != 0) {
l6 = inboundFrameOpStats.preemptiveExpanded;
}
if ((i & 64) != 0) {
l7 = inboundFrameOpStats.cng;
}
return inboundFrameOpStats.copy(l, l2, l3, l4, l5, l6, l7);
}
public final Long component1() {
return this.silent;
}
public final Long component2() {
return this.normal;
}
public final Long component3() {
return this.merged;
}
public final Long component4() {
return this.expanded;
}
public final Long component5() {
return this.accelerated;
}
public final Long component6() {
return this.preemptiveExpanded;
}
public final Long component7() {
return this.cng;
}
public final InboundFrameOpStats copy(Long l, Long l2, Long l3, Long l4, Long l5, Long l6, Long l7) {
return new InboundFrameOpStats(l, l2, l3, l4, l5, l6, l7);
}
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 Long getAccelerated() {
return this.accelerated;
}
public final Long getCng() {
return this.cng;
}
public final Long getExpanded() {
return this.expanded;
}
public final Long getMerged() {
return this.merged;
}
public final Long getNormal() {
return this.normal;
}
public final Long getPreemptiveExpanded() {
return this.preemptiveExpanded;
}
public final Long getSilent() {
return this.silent;
}
public int hashCode() {
Long l = this.silent;
int i = 0;
int hashCode = (l != null ? l.hashCode() : 0) * 31;
Long l2 = this.normal;
int hashCode2 = (hashCode + (l2 != null ? l2.hashCode() : 0)) * 31;
Long l3 = this.merged;
int hashCode3 = (hashCode2 + (l3 != null ? l3.hashCode() : 0)) * 31;
Long l4 = this.expanded;
int hashCode4 = (hashCode3 + (l4 != null ? l4.hashCode() : 0)) * 31;
Long l5 = this.accelerated;
int hashCode5 = (hashCode4 + (l5 != null ? l5.hashCode() : 0)) * 31;
Long l6 = this.preemptiveExpanded;
int hashCode6 = (hashCode5 + (l6 != null ? l6.hashCode() : 0)) * 31;
Long l7 = this.cng;
if (l7 != null) {
i = l7.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, ")");
}
}