导航菜单

页面标题

页面副标题

Cantique de Louanges v12 - a.java 源代码

正在查看: Cantique de Louanges v12 应用的 a.java JAVA 源代码文件

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


package com.applovin.exoplayer2.g.b;

import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.Nullable;
import com.applovin.exoplayer2.ac;
import com.applovin.exoplayer2.g.a;
import com.applovin.exoplayer2.g.h;
import com.applovin.exoplayer2.l.ai;
import com.applovin.exoplayer2.v;
import java.util.Arrays;

public final class a implements a.InterfaceC0154a {
    public final String Jm;
    public final String Jn;
    public final long Jo;
    public final long Jp;
    public final byte[] Jq;
    private int dS;
    private static final v Jk = new v.a().m("application/id3").bT();
    private static final v Jl = new v.a().m("application/x-scte35").bT();
    public static final Parcelable.Creator<a> CREATOR = new Parcelable.Creator<a>() {
        @Override
        public a[] newArray(int i5) {
            return new a[i5];
        }

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

    public a(String str, String str2, long j5, long j6, byte[] bArr) {
        this.Jm = str;
        this.Jn = str2;
        this.Jo = j5;
        this.Jp = j6;
        this.Jq = bArr;
    }

    @Override
    public void F(ac.a aVar) {
        h.a(this, aVar);
    }

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

    public boolean equals(@Nullable Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || a.class != obj.getClass()) {
            return false;
        }
        a aVar = (a) obj;
        return this.Jo == aVar.Jo && this.Jp == aVar.Jp && ai.r(this.Jm, aVar.Jm) && ai.r(this.Jn, aVar.Jn) && Arrays.equals(this.Jq, aVar.Jq);
    }

    public int hashCode() {
        if (this.dS == 0) {
            String str = this.Jm;
            int hashCode = (527 + (str != null ? str.hashCode() : 0)) * 31;
            String str2 = this.Jn;
            int hashCode2 = str2 != null ? str2.hashCode() : 0;
            long j5 = this.Jo;
            int i5 = (((hashCode + hashCode2) * 31) + ((int) (j5 ^ (j5 >>> 32)))) * 31;
            long j6 = this.Jp;
            this.dS = ((i5 + ((int) (j6 ^ (j6 >>> 32)))) * 31) + Arrays.hashCode(this.Jq);
        }
        return this.dS;
    }

    @Override
    @Nullable
    public v kE() {
        String str = this.Jm;
        str.hashCode();
        switch (str) {
            case "urn:scte:scte35:2014:bin":
                return Jl;
            case "https://aomedia.org/emsg/ID3":
            case "https://developer.apple.com/streaming/emsg-id3":
                return Jk;
            default:
                return null;
        }
    }

    @Override
    @Nullable
    public byte[] kF() {
        if (kE() != null) {
            return this.Jq;
        }
        return null;
    }

    public String toString() {
        return "EMSG: scheme=" + this.Jm + ", id=" + this.Jp + ", durationMs=" + this.Jo + ", value=" + this.Jn;
    }

    @Override
    public void writeToParcel(Parcel parcel, int i5) {
        parcel.writeString(this.Jm);
        parcel.writeString(this.Jn);
        parcel.writeLong(this.Jo);
        parcel.writeLong(this.Jp);
        parcel.writeByteArray(this.Jq);
    }

    a(Parcel parcel) {
        this.Jm = (String) ai.R(parcel.readString());
        this.Jn = (String) ai.R(parcel.readString());
        this.Jo = parcel.readLong();
        this.Jp = parcel.readLong();
        this.Jq = (byte[]) ai.R(parcel.createByteArray());
    }
}