package co.discord.media_engine.internal; import a0.a.a.b; import b.d.b.a.a; /* compiled from: NativeStatistics.kt */ /* loaded from: classes.dex */ public final class InboundRtcpStats { private final long firPackets; private final long nackPackets; private final long nackRequests; private final long pliPackets; private final long uniqueNackRequests; public InboundRtcpStats(long j, long j2, long j3, long j4, long j5) { this.firPackets = j; this.nackPackets = j2; this.nackRequests = j3; this.pliPackets = j4; this.uniqueNackRequests = j5; } public static /* synthetic */ InboundRtcpStats copy$default(InboundRtcpStats inboundRtcpStats, long j, long j2, long j3, long j4, long j5, int i, Object obj) { return inboundRtcpStats.copy((i & 1) != 0 ? inboundRtcpStats.firPackets : j, (i & 2) != 0 ? inboundRtcpStats.nackPackets : j2, (i & 4) != 0 ? inboundRtcpStats.nackRequests : j3, (i & 8) != 0 ? inboundRtcpStats.pliPackets : j4, (i & 16) != 0 ? inboundRtcpStats.uniqueNackRequests : j5); } public final long component1() { return this.firPackets; } public final long component2() { return this.nackPackets; } public final long component3() { return this.nackRequests; } public final long component4() { return this.pliPackets; } public final long component5() { return this.uniqueNackRequests; } public final InboundRtcpStats copy(long j, long j2, long j3, long j4, long j5) { return new InboundRtcpStats(j, j2, j3, j4, j5); } public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof InboundRtcpStats)) { return false; } InboundRtcpStats inboundRtcpStats = (InboundRtcpStats) obj; return this.firPackets == inboundRtcpStats.firPackets && this.nackPackets == inboundRtcpStats.nackPackets && this.nackRequests == inboundRtcpStats.nackRequests && this.pliPackets == inboundRtcpStats.pliPackets && this.uniqueNackRequests == inboundRtcpStats.uniqueNackRequests; } public final long getFirPackets() { return this.firPackets; } public final long getNackPackets() { return this.nackPackets; } public final long getNackRequests() { return this.nackRequests; } public final long getPliPackets() { return this.pliPackets; } public final long getUniqueNackRequests() { return this.uniqueNackRequests; } public int hashCode() { int a = b.a(this.nackPackets); int a2 = b.a(this.nackRequests); int a3 = b.a(this.pliPackets); return b.a(this.uniqueNackRequests) + ((a3 + ((a2 + ((a + (b.a(this.firPackets) * 31)) * 31)) * 31)) * 31); } public String toString() { StringBuilder R = a.R("InboundRtcpStats(firPackets="); R.append(this.firPackets); R.append(", nackPackets="); R.append(this.nackPackets); R.append(", nackRequests="); R.append(this.nackRequests); R.append(", pliPackets="); R.append(this.pliPackets); R.append(", uniqueNackRequests="); return a.B(R, this.uniqueNackRequests, ")"); } }