summaryrefslogtreecommitdiff
path: root/firmware/target/arm/pp/audio-pp.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/pp/audio-pp.c')
-rw-r--r--firmware/target/arm/pp/audio-pp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/target/arm/pp/audio-pp.c b/firmware/target/arm/pp/audio-pp.c
index 76740f2e42..4e4d4b917a 100644
--- a/firmware/target/arm/pp/audio-pp.c
+++ b/firmware/target/arm/pp/audio-pp.c
@@ -53,8 +53,10 @@ void audio_input_mux(int source, unsigned flags)
53{ 53{
54 (void)flags; 54 (void)flags;
55 /* Prevent pops from unneeded switching */ 55 /* Prevent pops from unneeded switching */
56#ifdef HAVE_RECORDING
56 static int last_source = AUDIO_SRC_PLAYBACK; 57 static int last_source = AUDIO_SRC_PLAYBACK;
57#ifdef HAVE_FMRADIO_REC 58#endif
59#ifdef HAVE_FMRADIO_REC
58 bool recording = flags & SRCF_RECORDING; 60 bool recording = flags & SRCF_RECORDING;
59 static bool last_recording = false; 61 static bool last_recording = false;
60#endif 62#endif
@@ -149,7 +151,9 @@ void audio_input_mux(int source, unsigned flags)
149#endif 151#endif
150 } /* end switch */ 152 } /* end switch */
151 153
154#ifdef HAVE_RECORDING
152 last_source = source; 155 last_source = source;
156#endif
153} /* audio_input_mux */ 157} /* audio_input_mux */
154#endif 158#endif
155 159