141e91ef1f
* If AUDIOHW_MUTE_ON_PAUSE, no meaningful change * Unconditionally unmute on playback start * xduoox3ii: Mute on sample rate change * rocker/xduoo: Stay muted after startup This avoids the nasty "pop" on startup, without doing the full mute-on-pause stuff that causes unacceptable dropouts on the X3ii. Change-Id: I2e3ee0bb8094e288f37a0acada86a80016ce5cac
19 lines
534 B
C
19 lines
534 B
C
#ifndef __XDUOOLINUX_CODEC__
|
|
#define __XDUOOLINUX_CODEC__
|
|
|
|
#define AUDIOHW_CAPS (LINEOUT_CAP | FILTER_ROLL_OFF_CAP)
|
|
AUDIOHW_SETTING(VOLUME, "dB", 0, 1, -127, 0, -30)
|
|
AUDIOHW_SETTING(FILTER_ROLL_OFF, "", 0, 1, 0, 4, 0)
|
|
#endif
|
|
|
|
// We want this, but the codec takes over a second to unmute!
|
|
//#define AUDIOHW_MUTE_ON_PAUSE
|
|
|
|
#if defined(XDUOO_X3II)
|
|
/* The AK4490 glitches when switching sample rates */
|
|
#define AUDIOHW_MUTE_ON_SRATE_CHANGE
|
|
#endif
|
|
|
|
void audiohw_mute(int mute);
|
|
void xduoo_set_output(int ps);
|
|
int xduoo_get_outputs(void);
|