11 Feb
2013
11 Feb
'13
1:53 p.m.
2013/1/15 Takashi Iwai tiwai@suse.de:
Since some codecs can choose the aamix as a capture source, we should support it as well. When spec->add_stereo_mix_input flag is set, the parser checks the availability of aamix as the input source, and adds the paths automatically when possible.
if (mixer && spec->add_stereo_mix_input) {
err = parse_capture_source(codec, mixer, num_adcs,
"Stereo Mix", 0);
if (err < 0)
return err; }
Can this feature enabled automatically if auto mic is not enabled ?
since this feature cannot be enabled when auto mic is enabled
- if (mixer && spec->add_stereo_mix_input) { + if (mixer && !spec->auto_mic) {