- 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
52 lines
1.6 KiB
Java
52 lines
1.6 KiB
Java
package com.google.android.exoplayer2.metadata.dvbsi;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.google.android.exoplayer2.metadata.Metadata;
|
|
import com.google.android.exoplayer2.util.Assertions;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class AppInfoTable implements Metadata.Entry {
|
|
public static final Parcelable.Creator<AppInfoTable> CREATOR = new Parcelable.Creator() { // from class: com.google.android.exoplayer2.metadata.dvbsi.AppInfoTable.1
|
|
@Override // android.os.Parcelable.Creator
|
|
public AppInfoTable createFromParcel(Parcel parcel) {
|
|
return new AppInfoTable(parcel.readInt(), (String) Assertions.checkNotNull(parcel.readString()));
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public AppInfoTable[] newArray(int i) {
|
|
return new AppInfoTable[i];
|
|
}
|
|
};
|
|
public final int controlCode;
|
|
public final String url;
|
|
|
|
@Override // android.os.Parcelable
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public AppInfoTable(int i, String str) {
|
|
this.controlCode = i;
|
|
this.url = str;
|
|
}
|
|
|
|
public String toString() {
|
|
int i = this.controlCode;
|
|
String str = this.url;
|
|
StringBuilder sb = new StringBuilder(String.valueOf(str).length() + 33);
|
|
sb.append("Ait(controlCode=");
|
|
sb.append(i);
|
|
sb.append(",url=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.url);
|
|
parcel.writeInt(this.controlCode);
|
|
}
|
|
}
|