导航菜单

页面标题

页面副标题

Dostt v1.0.89 - a.java 源代码

正在查看: Dostt v1.0.89 应用的 a.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package J7;

import H7.a;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.Arrays;
import n8.Q;
import o7.A0;

public final class a implements a.b {
    public final String a;
    public final String b;
    public final long c;
    public final long d;
    public final byte[] e;
    private int f;
    private static final A0 o = new A0.b().e0("application/id3").E();
    private static final A0 p = new A0.b().e0("application/x-scte35").E();
    public static final Parcelable.Creator<a> CREATOR = new C0023a();

    class C0023a implements Parcelable.Creator {
        C0023a() {
        }

        @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.a = str;
        this.b = str2;
        this.c = j;
        this.d = j2;
        this.e = bArr;
    }

    @Override
    public byte[] b0() {
        if (p() != null) {
            return this.e;
        }
        return null;
    }

    @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.c == aVar.c && this.d == aVar.d && Q.c(this.a, aVar.a) && Q.c(this.b, aVar.b) && Arrays.equals(this.e, aVar.e);
    }

    public int hashCode() {
        if (this.f == 0) {
            String str = this.a;
            int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
            String str2 = this.b;
            int hashCode2 = str2 != null ? str2.hashCode() : 0;
            long j = this.c;
            int i = (((hashCode + hashCode2) * 31) + ((int) (j ^ (j >>> 32)))) * 31;
            long j2 = this.d;
            this.f = ((i + ((int) (j2 ^ (j2 >>> 32)))) * 31) + Arrays.hashCode(this.e);
        }
        return this.f;
    }

    @Override
    public A0 p() {
        String str = this.a;
        str.hashCode();
        switch (str) {
            case "urn:scte:scte35:2014:bin":
                return p;
            case "https://aomedia.org/emsg/ID3":
            case "https://developer.apple.com/streaming/emsg-id3":
                return o;
            default:
                return null;
        }
    }

    public String toString() {
        return "EMSG: scheme=" + this.a + ", id=" + this.d + ", durationMs=" + this.c + ", value=" + this.b;
    }

    @Override
    public void writeToParcel(Parcel parcel, int i) {
        parcel.writeString(this.a);
        parcel.writeString(this.b);
        parcel.writeLong(this.c);
        parcel.writeLong(this.d);
        parcel.writeByteArray(this.e);
    }

    a(Parcel parcel) {
        this.a = (String) Q.j(parcel.readString());
        this.b = (String) Q.j(parcel.readString());
        this.c = parcel.readLong();
        this.d = parcel.readLong();
        this.e = (byte[]) Q.j(parcel.createByteArray());
    }
}