forked from len0rd/rockbox
Add DAC's oversampling filter roll-off selection to sound settings.
Change-Id: I1258ba50dd9308f49d97965562f3a423c9bfb785
This commit is contained in:
parent
f6e179bd8e
commit
0519f7e5ab
9 changed files with 96 additions and 0 deletions
|
@ -314,6 +314,16 @@ void sound_set_depth_3d(int value)
|
|||
}
|
||||
#endif /* AUDIOHW_HAVE_DEPTH_3D */
|
||||
|
||||
#if defined(AUDIOHW_HAVE_FILTER_ROLL_OFF)
|
||||
void sound_set_filter_roll_off(int value)
|
||||
{
|
||||
if (!audio_is_initialized)
|
||||
return;
|
||||
|
||||
audiohw_set_filter_roll_off(value);
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(AUDIOHW_HAVE_EQ)
|
||||
int sound_enum_hw_eq_band_setting(unsigned int band,
|
||||
unsigned int band_setting)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue