- 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
80 lines
3.1 KiB
Java
80 lines
3.1 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;
|
|
import java.util.Arrays;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class GeobFrame extends Id3Frame {
|
|
public static final Parcelable.Creator<GeobFrame> CREATOR = new Parcelable.Creator() { // from class: com.google.android.exoplayer2.metadata.id3.GeobFrame.1
|
|
@Override // android.os.Parcelable.Creator
|
|
public GeobFrame createFromParcel(Parcel parcel) {
|
|
return new GeobFrame(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public GeobFrame[] newArray(int i) {
|
|
return new GeobFrame[i];
|
|
}
|
|
};
|
|
public final byte[] data;
|
|
public final String description;
|
|
public final String filename;
|
|
public final String mimeType;
|
|
|
|
public GeobFrame(Parcel parcel) {
|
|
super(com.mbridge.msdk.playercommon.exoplayer2.metadata.id3.GeobFrame.ID);
|
|
this.mimeType = (String) Util.castNonNull(parcel.readString());
|
|
this.filename = (String) Util.castNonNull(parcel.readString());
|
|
this.description = (String) Util.castNonNull(parcel.readString());
|
|
this.data = (byte[]) Util.castNonNull(parcel.createByteArray());
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || GeobFrame.class != obj.getClass()) {
|
|
return false;
|
|
}
|
|
GeobFrame geobFrame = (GeobFrame) obj;
|
|
return Util.areEqual(this.mimeType, geobFrame.mimeType) && Util.areEqual(this.filename, geobFrame.filename) && Util.areEqual(this.description, geobFrame.description) && Arrays.equals(this.data, geobFrame.data);
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.mimeType;
|
|
int hashCode = (IronSourceError.ERROR_NON_EXISTENT_INSTANCE + (str != null ? str.hashCode() : 0)) * 31;
|
|
String str2 = this.filename;
|
|
int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31;
|
|
String str3 = this.description;
|
|
return ((hashCode2 + (str3 != null ? str3.hashCode() : 0)) * 31) + Arrays.hashCode(this.data);
|
|
}
|
|
|
|
@Override // com.google.android.exoplayer2.metadata.id3.Id3Frame
|
|
public String toString() {
|
|
String str = this.id;
|
|
String str2 = this.mimeType;
|
|
String str3 = this.filename;
|
|
String str4 = this.description;
|
|
StringBuilder sb = new StringBuilder(String.valueOf(str).length() + 36 + String.valueOf(str2).length() + String.valueOf(str3).length() + String.valueOf(str4).length());
|
|
sb.append(str);
|
|
sb.append(": mimeType=");
|
|
sb.append(str2);
|
|
sb.append(", filename=");
|
|
sb.append(str3);
|
|
sb.append(", description=");
|
|
sb.append(str4);
|
|
return sb.toString();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.mimeType);
|
|
parcel.writeString(this.filename);
|
|
parcel.writeString(this.description);
|
|
parcel.writeByteArray(this.data);
|
|
}
|
|
}
|