正在查看: 度娘 v1.0.1 应用的 a.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: 度娘 v1.0.1 应用的 a.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package h2;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.Arrays;
import r0.p;
import r0.v;
import r0.w;
import r0.x;
import u0.j0;
public final class a implements w.b {
public final String f9348h;
public final String f9349i;
public final long f9350j;
public final long f9351k;
public final byte[] f9352l;
private int f9353m;
private static final p f9346n = new p.b().o0("application/id3").K();
private static final p f9347o = new p.b().o0("application/x-scte35").K();
public static final Parcelable.Creator<a> CREATOR = new C0149a();
class C0149a implements Parcelable.Creator<a> {
C0149a() {
}
@Override
public a createFromParcel(Parcel parcel) {
return new a(parcel);
}
@Override
public a[] newArray(int i10) {
return new a[i10];
}
}
a(Parcel parcel) {
this.f9348h = (String) j0.i(parcel.readString());
this.f9349i = (String) j0.i(parcel.readString());
this.f9350j = parcel.readLong();
this.f9351k = parcel.readLong();
this.f9352l = (byte[]) j0.i(parcel.createByteArray());
}
public a(String str, String str2, long j10, long j11, byte[] bArr) {
this.f9348h = str;
this.f9349i = str2;
this.f9350j = j10;
this.f9351k = j11;
this.f9352l = bArr;
}
@Override
public int describeContents() {
return 0;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || a.class != obj.getClass()) {
return false;
}
a aVar = (a) obj;
return this.f9350j == aVar.f9350j && this.f9351k == aVar.f9351k && j0.c(this.f9348h, aVar.f9348h) && j0.c(this.f9349i, aVar.f9349i) && Arrays.equals(this.f9352l, aVar.f9352l);
}
@Override
public p h() {
String str = this.f9348h;
str.hashCode();
switch (str) {
case "urn:scte:scte35:2014:bin":
return f9347o;
case "https://aomedia.org/emsg/ID3":
case "https://developer.apple.com/streaming/emsg-id3":
return f9346n;
default:
return null;
}
}
public int hashCode() {
if (this.f9353m == 0) {
String str = this.f9348h;
int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
String str2 = this.f9349i;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
long j10 = this.f9350j;
int i10 = (((hashCode + hashCode2) * 31) + ((int) (j10 ^ (j10 >>> 32)))) * 31;
long j11 = this.f9351k;
this.f9353m = ((i10 + ((int) (j11 ^ (j11 >>> 32)))) * 31) + Arrays.hashCode(this.f9352l);
}
return this.f9353m;
}
@Override
public void p(v.b bVar) {
x.c(this, bVar);
}
@Override
public byte[] q() {
if (h() != null) {
return this.f9352l;
}
return null;
}
public String toString() {
return "EMSG: scheme=" + this.f9348h + ", id=" + this.f9351k + ", durationMs=" + this.f9350j + ", value=" + this.f9349i;
}
@Override
public void writeToParcel(Parcel parcel, int i10) {
parcel.writeString(this.f9348h);
parcel.writeString(this.f9349i);
parcel.writeLong(this.f9350j);
parcel.writeLong(this.f9351k);
parcel.writeByteArray(this.f9352l);
}
}