导航菜单

页面标题

页面副标题

Perplexity v2.48.1 - a.java 源代码

正在查看: Perplexity v2.48.1 应用的 a.java JAVA 源代码文件

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


package F8;

import Z7.C1203q;
import Z7.L;
import Z7.N;
import Z7.r;
import java.util.Arrays;
import java.util.Objects;

public final class a implements L {

    public static final r f3276g;

    public static final r f3277h;

    public final String f3278a;

    public final String f3279b;

    public final long f3280c;

    public final long f3281d;

    public final byte[] f3282e;

    public int f3283f;

    static {
        C1203q c1203q = new C1203q();
        c1203q.f18665m = N.m("application/id3");
        f3276g = new r(c1203q);
        C1203q c1203q2 = new C1203q();
        c1203q2.f18665m = N.m("application/x-scte35");
        f3277h = new r(c1203q2);
    }

    public a(String str, String str2, long j10, long j11, byte[] bArr) {
        this.f3278a = str;
        this.f3279b = str2;
        this.f3280c = j10;
        this.f3281d = j11;
        this.f3282e = bArr;
    }

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

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

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj != null && a.class == obj.getClass()) {
            a aVar = (a) obj;
            if (this.f3280c == aVar.f3280c && this.f3281d == aVar.f3281d && Objects.equals(this.f3278a, aVar.f3278a) && Objects.equals(this.f3279b, aVar.f3279b) && Arrays.equals(this.f3282e, aVar.f3282e)) {
                return true;
            }
        }
        return false;
    }

    public final int hashCode() {
        if (this.f3283f == 0) {
            String str = this.f3278a;
            int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
            String str2 = this.f3279b;
            int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31;
            long j10 = this.f3280c;
            int i10 = (hashCode2 + ((int) (j10 ^ (j10 >>> 32)))) * 31;
            long j11 = this.f3281d;
            this.f3283f = Arrays.hashCode(this.f3282e) + ((i10 + ((int) (j11 ^ (j11 >>> 32)))) * 31);
        }
        return this.f3283f;
    }

    public final String toString() {
        return "EMSG: scheme=" + this.f3278a + ", id=" + this.f3281d + ", durationMs=" + this.f3280c + ", value=" + this.f3279b;
    }
}