- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
73 lines
2.8 KiB
Java
73 lines
2.8 KiB
Java
package com.google.android.exoplayer2.metadata.id3;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.google.android.exoplayer2.util.Util;
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class InternalFrame extends Id3Frame {
|
|
public static final Parcelable.Creator<InternalFrame> CREATOR = new Parcelable.Creator() { // from class: com.google.android.exoplayer2.metadata.id3.InternalFrame.1
|
|
@Override // android.os.Parcelable.Creator
|
|
public InternalFrame createFromParcel(Parcel parcel) {
|
|
return new InternalFrame(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public InternalFrame[] newArray(int i) {
|
|
return new InternalFrame[i];
|
|
}
|
|
};
|
|
public final String description;
|
|
public final String domain;
|
|
public final String text;
|
|
|
|
public InternalFrame(Parcel parcel) {
|
|
super(com.mbridge.msdk.playercommon.exoplayer2.metadata.id3.InternalFrame.ID);
|
|
this.domain = (String) Util.castNonNull(parcel.readString());
|
|
this.description = (String) Util.castNonNull(parcel.readString());
|
|
this.text = (String) Util.castNonNull(parcel.readString());
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || InternalFrame.class != obj.getClass()) {
|
|
return false;
|
|
}
|
|
InternalFrame internalFrame = (InternalFrame) obj;
|
|
return Util.areEqual(this.description, internalFrame.description) && Util.areEqual(this.domain, internalFrame.domain) && Util.areEqual(this.text, internalFrame.text);
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.domain;
|
|
int hashCode = (IronSourceError.ERROR_NON_EXISTENT_INSTANCE + (str != null ? str.hashCode() : 0)) * 31;
|
|
String str2 = this.description;
|
|
int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31;
|
|
String str3 = this.text;
|
|
return hashCode2 + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
|
|
@Override // com.google.android.exoplayer2.metadata.id3.Id3Frame
|
|
public String toString() {
|
|
String str = this.id;
|
|
String str2 = this.domain;
|
|
String str3 = this.description;
|
|
StringBuilder sb = new StringBuilder(String.valueOf(str).length() + 23 + String.valueOf(str2).length() + String.valueOf(str3).length());
|
|
sb.append(str);
|
|
sb.append(": domain=");
|
|
sb.append(str2);
|
|
sb.append(", description=");
|
|
sb.append(str3);
|
|
return sb.toString();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.id);
|
|
parcel.writeString(this.domain);
|
|
parcel.writeString(this.text);
|
|
}
|
|
}
|