diff options
Diffstat (limited to 'utils/cec-follower/cec-processing.cpp')
-rw-r--r-- | utils/cec-follower/cec-processing.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/cec-follower/cec-processing.cpp b/utils/cec-follower/cec-processing.cpp index 27172560..a38f664b 100644 --- a/utils/cec-follower/cec-processing.cpp +++ b/utils/cec-follower/cec-processing.cpp @@ -516,6 +516,12 @@ static void processMsg(struct node *node, struct cec_msg &msg, unsigned me) case 0x43: node->state.mute = !node->state.mute; break; + case 0x65: + node->state.mute = true; + break; + case 0x66: + node->state.mute = false; + break; case 0x6B: if (!enter_standby(node)) exit_standby(node); |