导航菜单

页面标题

页面副标题

Baubap v3.9.7 - a.java 源代码

正在查看: Baubap v3.9.7 应用的 a.java JAVA 源代码文件

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


package r7;

import android.os.Parcel;
import android.os.Parcelable;
import java.util.Arrays;
import m6.g0;
import m6.i0;
import m6.k0;
import m6.r;
import m6.s;
import p6.f0;

public final class a implements i0 {
    public static final Parcelable.Creator<a> CREATOR;

    public static final s f27882h;

    public static final s f27883i;

    public final String f27884b;

    public final String f27885c;

    public final long f27886d;

    public final long f27887e;

    public final byte[] f27888f;

    public int f27889g;

    static {
        r rVar = new r();
        rVar.f20180k = k0.k("application/id3");
        f27882h = rVar.a();
        r rVar2 = new r();
        rVar2.f20180k = k0.k("application/x-scte35");
        f27883i = rVar2.a();
        CREATOR = new android.support.v4.media.a(20);
    }

    public a(String str, String str2, long j10, long j11, byte[] bArr) {
        this.f27884b = str;
        this.f27885c = str2;
        this.f27886d = j10;
        this.f27887e = j11;
        this.f27888f = bArr;
    }

    @Override
    public final s b() {
        String str = this.f27884b;
        str.getClass();
        switch (str) {
            case "urn:scte:scte35:2014:bin":
                return f27883i;
            case "https://aomedia.org/emsg/ID3":
            case "https://developer.apple.com/streaming/emsg-id3":
                return f27882h;
            default:
                return null;
        }
    }

    @Override
    public final int describeContents() {
        return 0;
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || a.class != obj.getClass()) {
            return false;
        }
        a aVar = (a) obj;
        return this.f27886d == aVar.f27886d && this.f27887e == aVar.f27887e && f0.a(this.f27884b, aVar.f27884b) && f0.a(this.f27885c, aVar.f27885c) && Arrays.equals(this.f27888f, aVar.f27888f);
    }

    public final int hashCode() {
        if (this.f27889g == 0) {
            String str = this.f27884b;
            int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
            String str2 = this.f27885c;
            int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31;
            long j10 = this.f27886d;
            int i10 = (hashCode2 + ((int) (j10 ^ (j10 >>> 32)))) * 31;
            long j11 = this.f27887e;
            this.f27889g = Arrays.hashCode(this.f27888f) + ((i10 + ((int) (j11 ^ (j11 >>> 32)))) * 31);
        }
        return this.f27889g;
    }

    @Override
    public final void j(g0 g0Var) {
    }

    @Override
    public final byte[] r() {
        if (b() != null) {
            return this.f27888f;
        }
        return null;
    }

    public final String toString() {
        return "EMSG: scheme=" + this.f27884b + ", id=" + this.f27887e + ", durationMs=" + this.f27886d + ", value=" + this.f27885c;
    }

    @Override
    public final void writeToParcel(Parcel parcel, int i10) {
        parcel.writeString(this.f27884b);
        parcel.writeString(this.f27885c);
        parcel.writeLong(this.f27886d);
        parcel.writeLong(this.f27887e);
        parcel.writeByteArray(this.f27888f);
    }

    public a(Parcel parcel) {
        String readString = parcel.readString();
        int i10 = f0.f24487a;
        this.f27884b = readString;
        this.f27885c = parcel.readString();
        this.f27886d = parcel.readLong();
        this.f27887e = parcel.readLong();
        this.f27888f = parcel.createByteArray();
    }
}