- 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
67 lines
2.4 KiB
Java
67 lines
2.4 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 UrlLinkFrame extends Id3Frame {
|
|
public static final Parcelable.Creator<UrlLinkFrame> CREATOR = new Parcelable.Creator() { // from class: com.google.android.exoplayer2.metadata.id3.UrlLinkFrame.1
|
|
@Override // android.os.Parcelable.Creator
|
|
public UrlLinkFrame createFromParcel(Parcel parcel) {
|
|
return new UrlLinkFrame(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public UrlLinkFrame[] newArray(int i) {
|
|
return new UrlLinkFrame[i];
|
|
}
|
|
};
|
|
public final String description;
|
|
public final String url;
|
|
|
|
public UrlLinkFrame(Parcel parcel) {
|
|
super((String) Util.castNonNull(parcel.readString()));
|
|
this.description = parcel.readString();
|
|
this.url = (String) Util.castNonNull(parcel.readString());
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || UrlLinkFrame.class != obj.getClass()) {
|
|
return false;
|
|
}
|
|
UrlLinkFrame urlLinkFrame = (UrlLinkFrame) obj;
|
|
return this.id.equals(urlLinkFrame.id) && Util.areEqual(this.description, urlLinkFrame.description) && Util.areEqual(this.url, urlLinkFrame.url);
|
|
}
|
|
|
|
public int hashCode() {
|
|
int hashCode = (IronSourceError.ERROR_NON_EXISTENT_INSTANCE + this.id.hashCode()) * 31;
|
|
String str = this.description;
|
|
int hashCode2 = (hashCode + (str != null ? str.hashCode() : 0)) * 31;
|
|
String str2 = this.url;
|
|
return hashCode2 + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
@Override // com.google.android.exoplayer2.metadata.id3.Id3Frame
|
|
public String toString() {
|
|
String str = this.id;
|
|
String str2 = this.url;
|
|
StringBuilder sb = new StringBuilder(String.valueOf(str).length() + 6 + String.valueOf(str2).length());
|
|
sb.append(str);
|
|
sb.append(": url=");
|
|
sb.append(str2);
|
|
return sb.toString();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.id);
|
|
parcel.writeString(this.description);
|
|
parcel.writeString(this.url);
|
|
}
|
|
}
|