summaryrefslogtreecommitdiffstats
path: root/apps/gui
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2019-02-03 21:54:25 -0500
committerSolomon Peachy <pizza@shaftnet.org>2019-02-04 03:58:52 +0100
commit1d893a05c6b3e73a8cda660d4a4cbc209c0fe0d9 (patch)
treec00c08f58ccd1c881583c655e6e08d52d9f148a3 /apps/gui
parent32e074584857a2e107a91d51c2531d67747331fd (diff)
downloadrockbox-1d893a05c6b3e73a8cda660d4a4cbc209c0fe0d9.tar.gz
rockbox-1d893a05c6b3e73a8cda660d4a4cbc209c0fe0d9.zip
pitchscreen: Fix compile on HWCODEC players.
Change-Id: Iffb7018e935e017baf84ddc8e742270f82b996ab
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/pitchscreen.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/gui/pitchscreen.c b/apps/gui/pitchscreen.c
index 443a967178..bf016fdd5f 100644
--- a/apps/gui/pitchscreen.c
+++ b/apps/gui/pitchscreen.c
@@ -162,14 +162,18 @@ static bool at_limit = false;
* | | | | <-- Two "OK" for exit on the sides for touchscreen
* |------------------------|
*
- *
+ *
*/
static void speak_pitch_mode(bool enqueue)
{
+#if CONFIG_CODEC == SWCODEC
bool timestretch_mode = global_settings.pitch_mode_timestretch && dsp_timestretch_available();
if (timestretch_mode)
talk_id(VOICE_PITCH_TIMESTRETCH_MODE, enqueue);
+#else
+#define timestretch_mode 0
+#endif
if (global_settings.pitch_mode_semitone)
talk_id(VOICE_PITCH_SEMITONE_MODE, timestretch_mode ? true : enqueue);
else