正在查看: BodyTech v7.6.4 应用的 a.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: BodyTech v7.6.4 应用的 a.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package u8;
import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.Nullable;
import com.google.android.exoplayer2.MediaMetadata;
import com.google.android.exoplayer2.u1;
import java.util.Arrays;
import s8.a;
import w9.u0;
public final class a implements a.b {
public final String c;
public final String d;
public final long e;
public final long k;
public final byte[] n;
private int p;
private static final u1 q = new u1.b().e0("application/id3").E();
private static final u1 r = new u1.b().e0("application/x-scte35").E();
public static final Parcelable.Creator<a> CREATOR = new C0148a();
class C0148a implements Parcelable.Creator<a> {
C0148a() {
}
@Override
public a createFromParcel(Parcel parcel) {
return new a(parcel);
}
@Override
public a[] newArray(int i) {
return new a[i];
}
}
public a(String str, String str2, long j, long j2, byte[] bArr) {
this.c = str;
this.d = str2;
this.e = j;
this.k = j2;
this.n = bArr;
}
@Override
public void G(MediaMetadata.b bVar) {
s8.b.c(this, bVar);
}
@Override
public int describeContents() {
return 0;
}
public boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}
if (obj == null || a.class != obj.getClass()) {
return false;
}
a aVar = (a) obj;
return this.e == aVar.e && this.k == aVar.k && u0.c(this.c, aVar.c) && u0.c(this.d, aVar.d) && Arrays.equals(this.n, aVar.n);
}
public int hashCode() {
if (this.p == 0) {
String str = this.c;
int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
String str2 = this.d;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
long j = this.e;
int i = (((hashCode + hashCode2) * 31) + ((int) (j ^ (j >>> 32)))) * 31;
long j2 = this.k;
this.p = ((i + ((int) (j2 ^ (j2 >>> 32)))) * 31) + Arrays.hashCode(this.n);
}
return this.p;
}
@Override
@Nullable
public u1 j() {
String str = this.c;
str.hashCode();
switch (str) {
case "urn:scte:scte35:2014:bin":
return r;
case "https://aomedia.org/emsg/ID3":
case "https://developer.apple.com/streaming/emsg-id3":
return q;
default:
return null;
}
}
@Override
@Nullable
public byte[] l0() {
if (j() != null) {
return this.n;
}
return null;
}
public String toString() {
return "EMSG: scheme=" + this.c + ", id=" + this.k + ", durationMs=" + this.e + ", value=" + this.d;
}
@Override
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.c);
parcel.writeString(this.d);
parcel.writeLong(this.e);
parcel.writeLong(this.k);
parcel.writeByteArray(this.n);
}
a(Parcel parcel) {
this.c = (String) u0.j(parcel.readString());
this.d = (String) u0.j(parcel.readString());
this.e = parcel.readLong();
this.k = parcel.readLong();
this.n = (byte[]) u0.j(parcel.createByteArray());
}
}