<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - "Transistor" game makes every client playing at double speed"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=87713#c42">Comment # 42</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - "Transistor" game makes every client playing at double speed"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=87713">bug 87713</a>
              from <span class="vcard"><a class="email" href="mailto:superquad.vortex2@gmail.com" title="Raymond <superquad.vortex2@gmail.com>"> <span class="fn">Raymond</span></a>
</span></b>
        <pre>does analog capture also overrun ?

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



<a href="https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/tree/sound/pci/ca0106/ca0106_mixer.c">https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/tree/sound/pci/ca0106/ca0106_mixer.c</a>

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;
    }</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the QA Contact for the bug.</li>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>