正在查看: Sandridge Go v2025.2.170190457 应用的 a.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Sandridge Go v2025.2.170190457 应用的 a.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package P1;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.Arrays;
import p1.C1570t;
import p1.G;
import s1.P;
public final class a implements G.b {
public final String f4326o;
public final String f4327p;
public final long f4328q;
public final long f4329r;
public final byte[] f4330s;
private int f4331t;
private static final C1570t f4324u = new C1570t.b().s0("application/id3").M();
private static final C1570t f4325v = new C1570t.b().s0("application/x-scte35").M();
public static final Parcelable.Creator<a> CREATOR = new C0080a();
class C0080a implements Parcelable.Creator {
C0080a() {
}
@Override
public a createFromParcel(Parcel parcel) {
return new a(parcel);
}
@Override
public a[] newArray(int i5) {
return new a[i5];
}
}
public a(String str, String str2, long j5, long j6, byte[] bArr) {
this.f4326o = str;
this.f4327p = str2;
this.f4328q = j5;
this.f4329r = j6;
this.f4330s = bArr;
}
@Override
public int describeContents() {
return 0;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj != null && a.class == obj.getClass()) {
a aVar = (a) obj;
if (this.f4328q == aVar.f4328q && this.f4329r == aVar.f4329r && P.g(this.f4326o, aVar.f4326o) && P.g(this.f4327p, aVar.f4327p) && Arrays.equals(this.f4330s, aVar.f4330s)) {
return true;
}
}
return false;
}
@Override
public C1570t f() {
String str = this.f4326o;
str.getClass();
switch (str) {
case "urn:scte:scte35:2014:bin":
return f4325v;
case "https://aomedia.org/emsg/ID3":
case "https://developer.apple.com/streaming/emsg-id3":
return f4324u;
default:
return null;
}
}
public int hashCode() {
if (this.f4331t == 0) {
String str = this.f4326o;
int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
String str2 = this.f4327p;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
long j5 = this.f4328q;
int i5 = (((hashCode + hashCode2) * 31) + ((int) (j5 ^ (j5 >>> 32)))) * 31;
long j6 = this.f4329r;
this.f4331t = ((i5 + ((int) (j6 ^ (j6 >>> 32)))) * 31) + Arrays.hashCode(this.f4330s);
}
return this.f4331t;
}
@Override
public byte[] o() {
if (f() != null) {
return this.f4330s;
}
return null;
}
public String toString() {
return "EMSG: scheme=" + this.f4326o + ", id=" + this.f4329r + ", durationMs=" + this.f4328q + ", value=" + this.f4327p;
}
@Override
public void writeToParcel(Parcel parcel, int i5) {
parcel.writeString(this.f4326o);
parcel.writeString(this.f4327p);
parcel.writeLong(this.f4328q);
parcel.writeLong(this.f4329r);
parcel.writeByteArray(this.f4330s);
}
a(Parcel parcel) {
this.f4326o = (String) P.l(parcel.readString());
this.f4327p = (String) P.l(parcel.readString());
this.f4328q = parcel.readLong();
this.f4329r = parcel.readLong();
this.f4330s = (byte[]) P.l(parcel.createByteArray());
}
}