<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#c2">Comment # 2</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><a href="https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/plain/sound/pci/ca0106/ca0106_main.c">https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/plain/sound/pci/ca0106/ca0106_main.c</a>

static struct snd_pcm_hardware snd_ca0106_playback_hw = {
    .info =            SNDRV_PCM_INFO_MMAP | 
                SNDRV_PCM_INFO_INTERLEAVED |
                SNDRV_PCM_INFO_BLOCK_TRANSFER |
                SNDRV_PCM_INFO_MMAP_VALID |
                SNDRV_PCM_INFO_SYNC_START,
    .formats =        SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE,
    .rates =        (SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_96000 |
                 SNDRV_PCM_RATE_192000),
    .rate_min =        48000,
    .rate_max =        192000,
    .channels_min =        2,  //1,
    .channels_max =        2,  //6,
    .buffer_bytes_max =    ((65536 - 64) * 8),
    .period_bytes_min =    64,
    .period_bytes_max =    (65536 - 64),
    .periods_min =        2,
    .periods_max =        8,
    .fifo_size =        0,
};

seem support both s16_le and s32_le but require SNDRV_PCM_INFO_SYNC_START


post the pulseaudio  verbose log

and


aplay -D hw:CARD=CA0106  --dump-hw-params any.wav</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>