1
0
Fork 0
forked from len0rd/rockbox

sonynwz: add api and debug entries for "acoustic" and "cue/rev" mode

We don't really know what those are supposed to do. They seem to change the
volume curve but it is not very clear what is the intended purpose.

Change-Id: I65f5d18aba139844c23df092277ba17ee8518f96
This commit is contained in:
Amaury Pouly 2017-10-07 21:59:21 +02:00
parent 26d18fd348
commit afbae177a1
3 changed files with 77 additions and 14 deletions

View file

@ -26,4 +26,11 @@
/* Ranges from -100dB to 4dB */
AUDIOHW_SETTING(VOLUME, "dB", 0, 1, -100, 4, -10)
/* enable/disable Sony's "acoustic" mode */
bool audiohw_acoustic_enabled(void);
void audiohw_enable_acoustic(bool en);
/* enable/disable Sony's "cuerev" mode */
bool audiohw_cuerev_enabled(void);
void audiohw_enable_cuerev(bool en);
#endif /* __NWZLINUX_CODEC_H__ */