导航菜单

页面标题

页面副标题

新暖心缘 v8.1.1 - a.java 源代码

正在查看: 新暖心缘 v8.1.1 应用的 a.java JAVA 源代码文件

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


package r4;

import android.os.Parcel;
import android.os.Parcelable;
import b4.c0;
import java.util.Arrays;
import l5.i0;
import q4.a;

public final class a implements a.b {

    public final String f16898a;

    public final String f16899b;

    public final long f16900c;

    public final long f16901d;

    public final byte[] f16902e;

    private int f16903f;

    private static final c0 f16896g = c0.m(null, "application/id3", Long.MAX_VALUE);

    private static final c0 f16897h = c0.m(null, "application/x-scte35", Long.MAX_VALUE);
    public static final Parcelable.Creator<a> CREATOR = new C0224a();

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

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

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

    public a(String str, String str2, long j8, long j9, byte[] bArr) {
        this.f16898a = str;
        this.f16899b = str2;
        this.f16900c = j8;
        this.f16901d = j9;
        this.f16902e = 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.f16900c == aVar.f16900c && this.f16901d == aVar.f16901d && i0.c(this.f16898a, aVar.f16898a) && i0.c(this.f16899b, aVar.f16899b) && Arrays.equals(this.f16902e, aVar.f16902e);
    }

    public int hashCode() {
        if (this.f16903f == 0) {
            String str = this.f16898a;
            int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
            String str2 = this.f16899b;
            int hashCode2 = str2 != null ? str2.hashCode() : 0;
            long j8 = this.f16900c;
            int i8 = (((hashCode + hashCode2) * 31) + ((int) (j8 ^ (j8 >>> 32)))) * 31;
            long j9 = this.f16901d;
            this.f16903f = ((i8 + ((int) (j9 ^ (j9 >>> 32)))) * 31) + Arrays.hashCode(this.f16902e);
        }
        return this.f16903f;
    }

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

    @Override
    public byte[] o() {
        if (n() != null) {
            return this.f16902e;
        }
        return null;
    }

    public String toString() {
        return "EMSG: scheme=" + this.f16898a + ", id=" + this.f16901d + ", durationMs=" + this.f16900c + ", value=" + this.f16899b;
    }

    @Override
    public void writeToParcel(Parcel parcel, int i8) {
        parcel.writeString(this.f16898a);
        parcel.writeString(this.f16899b);
        parcel.writeLong(this.f16900c);
        parcel.writeLong(this.f16901d);
        parcel.writeByteArray(this.f16902e);
    }

    a(Parcel parcel) {
        this.f16898a = (String) i0.h(parcel.readString());
        this.f16899b = (String) i0.h(parcel.readString());
        this.f16900c = parcel.readLong();
        this.f16901d = parcel.readLong();
        this.f16902e = (byte[]) i0.h(parcel.createByteArray());
    }
}