导航菜单

页面标题

页面副标题

Jurassic World v1.83.4 - w7.java 源代码

正在查看: Jurassic World v1.83.4 应用的 w7.java JAVA 源代码文件

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


package com.applovin.impl;

import android.os.Parcel;
import android.os.Parcelable;
import com.applovin.impl.bf;
import com.applovin.impl.f9;
import java.util.Arrays;

public final class w7 implements bf.b {
    public final String a;
    public final String b;
    public final long c;
    public final long d;
    public final byte[] f;
    private int g;
    private static final f9 h = new f9.b().f("application/id3").a();
    private static final f9 i = new f9.b().f("application/x-scte35").a();
    public static final Parcelable.Creator<w7> CREATOR = new a();

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

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

    w7(Parcel parcel) {
        this.a = (String) xp.a((Object) parcel.readString());
        this.b = (String) xp.a((Object) parcel.readString());
        this.c = parcel.readLong();
        this.d = parcel.readLong();
        this.f = (byte[]) xp.a((Object) parcel.createByteArray());
    }

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

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

    public int hashCode() {
        if (this.g == 0) {
            String str = this.a;
            int hashCode = ((str != null ? str.hashCode() : 0) + 527) * 31;
            String str2 = this.b;
            int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31;
            long j = this.c;
            int i2 = (hashCode2 + ((int) (j ^ (j >>> 32)))) * 31;
            long j2 = this.d;
            this.g = ((i2 + ((int) (j2 ^ (j2 >>> 32)))) * 31) + Arrays.hashCode(this.f);
        }
        return this.g;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || w7.class != obj.getClass()) {
            return false;
        }
        w7 w7Var = (w7) obj;
        return this.c == w7Var.c && this.d == w7Var.d && xp.a((Object) this.a, (Object) w7Var.a) && xp.a((Object) this.b, (Object) w7Var.b) && Arrays.equals(this.f, w7Var.f);
    }

    @Override
    public void writeToParcel(Parcel parcel, int i2) {
        parcel.writeString(this.a);
        parcel.writeString(this.b);
        parcel.writeLong(this.c);
        parcel.writeLong(this.d);
        parcel.writeByteArray(this.f);
    }

    public w7(String str, String str2, long j, long j2, byte[] bArr) {
        this.a = str;
        this.b = str2;
        this.c = j;
        this.d = j2;
        this.f = bArr;
    }

    class a implements Parcelable.Creator {
        a() {
        }

        @Override
        public w7[] newArray(int i) {
            return new w7[i];
        }

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