- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
85 lines
2.6 KiB
Java
85 lines
2.6 KiB
Java
package com.applovin.impl;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.applovin.impl.vd;
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
import com.mbridge.msdk.playercommon.exoplayer2.metadata.id3.ApicFrame;
|
|
import java.util.Arrays;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class v0 extends ya {
|
|
public static final Parcelable.Creator<v0> CREATOR = new a();
|
|
public final String b;
|
|
public final String c;
|
|
public final int d;
|
|
public final byte[] f;
|
|
|
|
@Override // com.applovin.impl.ya
|
|
public String toString() {
|
|
return this.a + ": mimeType=" + this.b + ", description=" + this.c;
|
|
}
|
|
|
|
public v0(Parcel parcel) {
|
|
super(ApicFrame.ID);
|
|
this.b = (String) xp.a((Object) parcel.readString());
|
|
this.c = parcel.readString();
|
|
this.d = parcel.readInt();
|
|
this.f = (byte[]) xp.a((Object) parcel.createByteArray());
|
|
}
|
|
|
|
@Override // com.applovin.impl.bf.b
|
|
public void a(vd.b bVar) {
|
|
bVar.a(this.f, this.d);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || v0.class != obj.getClass()) {
|
|
return false;
|
|
}
|
|
v0 v0Var = (v0) obj;
|
|
return this.d == v0Var.d && xp.a((Object) this.b, (Object) v0Var.b) && xp.a((Object) this.c, (Object) v0Var.c) && Arrays.equals(this.f, v0Var.f);
|
|
}
|
|
|
|
public int hashCode() {
|
|
int i = (this.d + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31;
|
|
String str = this.b;
|
|
int hashCode = (i + (str != null ? str.hashCode() : 0)) * 31;
|
|
String str2 = this.c;
|
|
return ((hashCode + (str2 != null ? str2.hashCode() : 0)) * 31) + Arrays.hashCode(this.f);
|
|
}
|
|
|
|
public v0(String str, String str2, int i, byte[] bArr) {
|
|
super(ApicFrame.ID);
|
|
this.b = str;
|
|
this.c = str2;
|
|
this.d = i;
|
|
this.f = bArr;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.c);
|
|
parcel.writeInt(this.d);
|
|
parcel.writeByteArray(this.f);
|
|
}
|
|
|
|
public class a implements Parcelable.Creator {
|
|
@Override // android.os.Parcelable.Creator
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public v0[] newArray(int i) {
|
|
return new v0[i];
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public v0 createFromParcel(Parcel parcel) {
|
|
return new v0(parcel);
|
|
}
|
|
}
|
|
}
|