cd17decd5a
I'm not happy with the proliferation of filter-roll-off options but I don't have a less ugly solution. Change-Id: I740fca006fa0c3443a467acfea55b6574d48346b
26 lines
731 B
C
26 lines
731 B
C
#ifndef __XDUOOLINUX_CODEC__
|
|
#define __XDUOOLINUX_CODEC__
|
|
|
|
#define AUDIOHW_CAPS (LINEOUT_CAP | FILTER_ROLL_OFF_CAP)
|
|
AUDIOHW_SETTING(VOLUME, "dB", 1, 5, -102*10, 0, -30*10)
|
|
#endif
|
|
|
|
// We want this, but the codec takes over a second to unmute!
|
|
//#define AUDIOHW_MUTE_ON_STOP
|
|
|
|
#if defined(XDUOO_X3II)
|
|
/* The AK4490 glitches when switching sample rates */
|
|
#define AUDIOHW_MUTE_ON_SRATE_CHANGE
|
|
AUDIOHW_SETTING(FILTER_ROLL_OFF, "", 0, 1, 0, 5, 0)
|
|
#define AUDIOHW_HAVE_SS_ROLL_OFF
|
|
#endif
|
|
|
|
#if defined(XDUOO_X20)
|
|
//#define AUDIOHW_NEEDS_INITIAL_UNMUTE
|
|
AUDIOHW_SETTING(FILTER_ROLL_OFF, "", 0, 1, 0, 4, 0)
|
|
#define AUDIOHW_HAVE_SHORT2_ROLL_OFF
|
|
#endif
|
|
|
|
void audiohw_mute(int mute);
|
|
void xduoo_set_output(int ps);
|
|
int xduoo_get_outputs(void);
|