LINE.apk(点击下载) / OBSVideoInfo.java


package jp.naver.line.android.obs.model;

import android.os.Parcel;
import android.os.Parcelable;
import b.d;
import em3.q;
import kotlin.Deprecated;
import kotlin.Metadata;

@Deprecated(message = "Use obs module instead. {@link https://wiki.linecorp.com/x/iBWwjw}")
@Metadata(bv = {}, d1 = {"\u0000\n\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\b‡\b\u0018\u00002\u00020\u0001¨\u0006\u0002"}, d2 = {"Ljp/naver/line/android/obs/model/OBSVideoInfo;", "Landroid/os/Parcelable;", "common-libs_release"}, k = 1, mv = {1, 6, 0})
public final class OBSVideoInfo implements Parcelable {
    public static final Parcelable.Creator<OBSVideoInfo> CREATOR = new a();

    /* renamed from: b  reason: collision with root package name */
    public final int f97624b;

    /* renamed from: c  reason: collision with root package name */
    public final int f97625c;

    /* renamed from: d  reason: collision with root package name */
    public final long f97626d;

    public static final class a implements Parcelable.Creator<OBSVideoInfo> {
        /* Return type fixed from 'java.lang.Object' to match base method */
        @Override // android.os.Parcelable.Creator
        public OBSVideoInfo createFromParcel(Parcel parcel) {
            q.f(parcel, "source");
            return new OBSVideoInfo(parcel);
        }

        /* Return type fixed from 'java.lang.Object[]' to match base method */
        @Override // android.os.Parcelable.Creator
        public OBSVideoInfo[] newArray(int i14) {
            return new OBSVideoInfo[i14];
        }
    }

    public OBSVideoInfo(int i14, int i15, long j14) {
        this.f97624b = i14;
        this.f97625c = i15;
        this.f97626d = j14;
    }

    public int describeContents() {
        return 0;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof OBSVideoInfo)) {
            return false;
        }
        OBSVideoInfo oBSVideoInfo = (OBSVideoInfo) obj;
        return this.f97624b == oBSVideoInfo.f97624b && this.f97625c == oBSVideoInfo.f97625c && this.f97626d == oBSVideoInfo.f97626d;
    }

    public int hashCode() {
        return Long.hashCode(this.f97626d) + af1.a.b(this.f97625c, Integer.hashCode(this.f97624b) * 31, 31);
    }

    public String toString() {
        StringBuilder a14 = d.a("OBSVideoInfo(width=");
        a14.append(this.f97624b);
        a14.append(", height=");
        a14.append(this.f97625c);
        a14.append(", durationInMills=");
        return com.linecorp.andromeda.common.device.a.b(a14, this.f97626d, ')');
    }

    public void writeToParcel(Parcel parcel, int i14) {
        q.f(parcel, "dest");
        parcel.writeInt(this.f97624b);
        parcel.writeInt(this.f97625c);
        parcel.writeLong(this.f97626d);
    }

    public OBSVideoInfo(Parcel parcel) {
        int readInt = parcel.readInt();
        int readInt2 = parcel.readInt();
        long readLong = parcel.readLong();
        this.f97624b = readInt;
        this.f97625c = readInt2;
        this.f97626d = readLong;
    }
}