summaryrefslogtreecommitdiff
path: root/firmware/sound.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/sound.c')
-rw-r--r--firmware/sound.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/firmware/sound.c b/firmware/sound.c
index 336fe90c25..a19cc15c41 100644
--- a/firmware/sound.c
+++ b/firmware/sound.c
@@ -314,6 +314,16 @@ void sound_set_depth_3d(int value)
314} 314}
315#endif /* AUDIOHW_HAVE_DEPTH_3D */ 315#endif /* AUDIOHW_HAVE_DEPTH_3D */
316 316
317#if defined(AUDIOHW_HAVE_FILTER_ROLL_OFF)
318void sound_set_filter_roll_off(int value)
319{
320 if (!audio_is_initialized)
321 return;
322
323 audiohw_set_filter_roll_off(value);
324}
325#endif
326
317#if defined(AUDIOHW_HAVE_EQ) 327#if defined(AUDIOHW_HAVE_EQ)
318int sound_enum_hw_eq_band_setting(unsigned int band, 328int sound_enum_hw_eq_band_setting(unsigned int band,
319 unsigned int band_setting) 329 unsigned int band_setting)