summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/erosqlinux_codec.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/audio/erosqlinux_codec.c')
-rw-r--r--firmware/drivers/audio/erosqlinux_codec.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/firmware/drivers/audio/erosqlinux_codec.c b/firmware/drivers/audio/erosqlinux_codec.c
index deb3bb4b87..9336083d58 100644
--- a/firmware/drivers/audio/erosqlinux_codec.c
+++ b/firmware/drivers/audio/erosqlinux_codec.c
@@ -56,6 +56,8 @@ static void hw_close(void)
56 close(fd_hw); 56 close(fd_hw);
57} 57}
58 58
59static int muted = -1;
60
59void audiohw_mute(int mute) 61void audiohw_mute(int mute)
60{ 62{
61 logf("mute %d", mute); 63 logf("mute %d", mute);
@@ -70,6 +72,7 @@ void audiohw_mute(int mute)
70 last_ps = 0; 72 last_ps = 0;
71 erosq_get_outputs(); 73 erosq_get_outputs();
72 } 74 }
75 muted = mute;
73} 76}
74 77
75int erosq_get_outputs(void) { 78int erosq_get_outputs(void) {
@@ -95,7 +98,7 @@ int erosq_get_outputs(void) {
95 98
96void erosq_set_output(int ps) 99void erosq_set_output(int ps)
97{ 100{
98 if (!inited) return; 101 if (!inited || muted) return;
99 102
100 if (last_ps != ps) 103 if (last_ps != ps)
101 { 104 {
@@ -119,7 +122,7 @@ void audiohw_preinit(void)
119void audiohw_postinit(void) 122void audiohw_postinit(void)
120{ 123{
121 logf("hw postinit"); 124 logf("hw postinit");
122 erosq_set_output(erosq_get_outputs()); /* Unmute */ 125 erosq_get_outputs(); // Unmutes
123} 126}
124 127
125void audiohw_close(void) 128void audiohw_close(void)