导航菜单

页面标题

页面副标题

Bhakti v5.4.0 - a.java 源代码

正在查看: Bhakti v5.4.0 应用的 a.java JAVA 源代码文件

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


package T3;

import b3.C1019I;
import b3.C1037o;
import b3.InterfaceC1021K;
import b3.M;
import b3.p;
import j$.util.Objects;
import java.util.Arrays;

public final class a implements InterfaceC1021K {

    public static final p f7529g;

    public static final p f7530h;
    public final String a;
    public final String b;

    public final long f7531c;

    public final long f7532d;

    public final byte[] f7533e;

    public int f7534f;

    static {
        C1037o c1037o = new C1037o();
        c1037o.f11685m = M.p("application/id3");
        f7529g = new p(c1037o);
        C1037o c1037o2 = new C1037o();
        c1037o2.f11685m = M.p("application/x-scte35");
        f7530h = new p(c1037o2);
    }

    public a(String str, String str2, long j10, long j11, byte[] bArr) {
        this.a = str;
        this.b = str2;
        this.f7531c = j10;
        this.f7532d = j11;
        this.f7533e = bArr;
    }

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

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

    @Override
    public final void c(C1019I c1019i) {
    }

    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.f7531c == aVar.f7531c && this.f7532d == aVar.f7532d && Objects.equals(this.a, aVar.a) && Objects.equals(this.b, aVar.b) && Arrays.equals(this.f7533e, aVar.f7533e);
    }

    public final int hashCode() {
        if (this.f7534f == 0) {
            String str = this.a;
            int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
            String str2 = this.b;
            int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31;
            long j10 = this.f7531c;
            int i10 = (hashCode2 + ((int) (j10 ^ (j10 >>> 32)))) * 31;
            long j11 = this.f7532d;
            this.f7534f = Arrays.hashCode(this.f7533e) + ((i10 + ((int) (j11 ^ (j11 >>> 32)))) * 31);
        }
        return this.f7534f;
    }

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