package com.seewo.vtv.interfaces;

import com.seewo.vtv.interfaces.ISourceHelper;

/* JADX INFO: loaded from: classes.dex */
public interface IHDMICECHelper {

    public interface DeviceChangedListener {
        void onDeviceOff();

        void onDeviceOn();

        void onDeviceStateChanged(ISourceHelper.SourceItem sourceItem, int i);
    }

    void setDeviceState(int i);

    void setListener(DeviceChangedListener deviceChangedListener);
}
