package com.cvte.tv.api.functions;

import com.cvte.tv.api.NotifyAction;
import com.cvte.tv.api.NotifyParams;
import com.cvte.tv.api.ResetAction;
import com.cvte.tv.api.aidl.EnumResetLevel;

/* JADX INFO: loaded from: classes.dex */
@ResetAction(reset = {"eventSoundArcReset"})
public interface ITVApiSoundArc {
    int eventSoundArcGetAudioDelay();

    int eventSoundArcGetVolume();

    boolean eventSoundArcIsAmpVolume();

    boolean eventSoundArcIsEnabled();

    boolean eventSoundArcIsMute();

    boolean eventSoundArcReset(EnumResetLevel enumResetLevel);

    boolean eventSoundArcSetAudioDelay(int i2);

    boolean eventSoundArcSetEnable(boolean z);

    boolean eventSoundArcSetMute(boolean z);

    boolean eventSoundArcSetVolume(int i2);

    @NotifyAction("notifySoundArcAmpMuteChange")
    void notifySoundArcAmpMuteChange(@NotifyParams("ampMute") boolean z);

    @NotifyAction("notifySoundArcAmpVolumeChange")
    void notifySoundArcAmpVolumeChange(@NotifyParams("ampVolume") int i2);

    @NotifyAction("notifySoundArcChange")
    void notifySoundArcChange();
}
