https://bugs.freedesktop.org/show_bug.cgi?id=87713

--- Comment #42 from Raymond <[email protected]> ---
does analog capture also overrun ?

arecord -f dat -D hw:CARD=CA0106 -t wav -d 5 test.wav



https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/tree/sound/pci/ca0106/ca0106_mixer.c

if your sb0410 only have four jacks and support 7.1

it need snd_ca0106_capture_line_in_side_out which change blue line in jack as
side line out jack 


if (emu->details->i2c_adc == 1) {
        ADD_CTLS(emu, snd_ca0106_volume_i2c_adc_ctls);
        if (emu->details->gpio_type == 1)
            err = snd_ctl_add(card,
snd_ctl_new1(&snd_ca0106_capture_mic_line_in, emu));
        else  /* gpio_type == 2 */
            err = snd_ctl_add(card,
snd_ctl_new1(&snd_ca0106_capture_line_in_side_out, emu));
        if (err < 0)
            return err;
    }

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
_______________________________________________
pulseaudio-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/pulseaudio-bugs

Reply via email to