summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/audio/sdl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/drivers/audio/sdl.c b/firmware/drivers/audio/sdl.c
index dfc77378bd..c14ba0c583 100644
--- a/firmware/drivers/audio/sdl.c
+++ b/firmware/drivers/audio/sdl.c
@@ -85,9 +85,11 @@ void audiohw_set_treble(int value) { (void)value; }
85#if CONFIG_CODEC != SWCODEC 85#if CONFIG_CODEC != SWCODEC
86void audiohw_set_channel(int value) { (void)value; } 86void audiohw_set_channel(int value) { (void)value; }
87void audiohw_set_stereo_width(int value){ (void)value; } 87void audiohw_set_stereo_width(int value){ (void)value; }
88#ifdef HAVE_PITCHCONTROL
88void audiohw_set_pitch(int32_t value) { (void)value; } 89void audiohw_set_pitch(int32_t value) { (void)value; }
89int32_t audiohw_get_pitch(void) { return PITCH_SPEED_100; } 90int32_t audiohw_get_pitch(void) { return PITCH_SPEED_100; }
90#endif 91#endif
92#endif /* CONFIG_CODEC != SWCODEC */
91#if defined(AUDIOHW_HAVE_BASS_CUTOFF) 93#if defined(AUDIOHW_HAVE_BASS_CUTOFF)
92void audiohw_set_bass_cutoff(int value) { (void)value; } 94void audiohw_set_bass_cutoff(int value) { (void)value; }
93#endif 95#endif