导航菜单

页面标题

页面副标题

涩里逼 v1.0.3 - a.java 源代码

正在查看: 涩里逼 v1.0.3 应用的 a.java JAVA 源代码文件

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


package f2;

import android.os.Parcel;
import android.os.Parcelable;
import java.util.Arrays;
import p0.p;
import p0.v;
import p0.w;
import p0.x;
import s0.j0;

public final class a implements w.b {

    public final String f8022f;

    public final String f8023g;

    public final long f8024h;

    public final long f8025i;

    public final byte[] f8026j;

    private int f8027k;

    private static final p f8020l = new p.b().o0("application/id3").K();

    private static final p f8021m = new p.b().o0("application/x-scte35").K();
    public static final Parcelable.Creator<a> CREATOR = new C0108a();

    class C0108a implements Parcelable.Creator<a> {
        C0108a() {
        }

        @Override
        public a createFromParcel(Parcel parcel) {
            return new a(parcel);
        }

        @Override
        public a[] newArray(int i10) {
            return new a[i10];
        }
    }

    a(Parcel parcel) {
        this.f8022f = (String) j0.i(parcel.readString());
        this.f8023g = (String) j0.i(parcel.readString());
        this.f8024h = parcel.readLong();
        this.f8025i = parcel.readLong();
        this.f8026j = (byte[]) j0.i(parcel.createByteArray());
    }

    public a(String str, String str2, long j10, long j11, byte[] bArr) {
        this.f8022f = str;
        this.f8023g = str2;
        this.f8024h = j10;
        this.f8025i = j11;
        this.f8026j = bArr;
    }

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

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

    @Override
    public void e(v.b bVar) {
        x.c(this, bVar);
    }

    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.f8024h == aVar.f8024h && this.f8025i == aVar.f8025i && j0.c(this.f8022f, aVar.f8022f) && j0.c(this.f8023g, aVar.f8023g) && Arrays.equals(this.f8026j, aVar.f8026j);
    }

    @Override
    public byte[] f() {
        if (b() != null) {
            return this.f8026j;
        }
        return null;
    }

    public int hashCode() {
        if (this.f8027k == 0) {
            String str = this.f8022f;
            int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
            String str2 = this.f8023g;
            int hashCode2 = str2 != null ? str2.hashCode() : 0;
            long j10 = this.f8024h;
            int i10 = (((hashCode + hashCode2) * 31) + ((int) (j10 ^ (j10 >>> 32)))) * 31;
            long j11 = this.f8025i;
            this.f8027k = ((i10 + ((int) (j11 ^ (j11 >>> 32)))) * 31) + Arrays.hashCode(this.f8026j);
        }
        return this.f8027k;
    }

    public String toString() {
        return "EMSG: scheme=" + this.f8022f + ", id=" + this.f8025i + ", durationMs=" + this.f8024h + ", value=" + this.f8023g;
    }

    @Override
    public void writeToParcel(Parcel parcel, int i10) {
        parcel.writeString(this.f8022f);
        parcel.writeString(this.f8023g);
        parcel.writeLong(this.f8024h);
        parcel.writeLong(this.f8025i);
        parcel.writeByteArray(this.f8026j);
    }
}