package com.mstar.android.tvapi.dtv.vo;

import android.os.Parcel;
import android.os.Parcelable;

/* JADX INFO: loaded from: classes.dex */
public class CaComponent implements Parcelable {
    public static final Parcelable.Creator<CaComponent> CREATOR = new Parcelable.Creator<CaComponent>() { // from class: com.mstar.android.tvapi.dtv.vo.CaComponent.1
        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public CaComponent createFromParcel(Parcel parcel) {
            return new CaComponent(parcel);
        }

        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public CaComponent[] newArray(int i2) {
            return new CaComponent[i2];
        }
    };
    public short m_CompType;
    public short m_wCompPID;
    public short m_wECMPID;

    @Override // android.os.Parcelable
    public int describeContents() {
        return 0;
    }

    @Override // android.os.Parcelable
    public void writeToParcel(Parcel parcel, int i2) {
        parcel.writeInt(this.m_wCompPID);
        parcel.writeInt(this.m_wECMPID);
        parcel.writeInt(this.m_CompType);
    }

    public CaComponent() {
        this.m_wCompPID = (short) 0;
        this.m_wECMPID = (short) 0;
        this.m_CompType = (short) 0;
    }

    private CaComponent(Parcel parcel) {
        this.m_wCompPID = (short) parcel.readInt();
        this.m_wECMPID = (short) parcel.readInt();
        this.m_CompType = (short) parcel.readInt();
    }
}
