Oliver Stephenson wrote:
>    Now though, I'm trying to open the PCM output in 6-channel mode 
> non-interleaved, and it all falls over here:
> 
>  if ((err = snd_pcm_hw_params_set_access(playback_handle, hw_params, 
> SND_PCM_ACCESS_RW_NONINTERLEAVED)) < 0)
>  {
>   fprintf(stderr, "cannot set access type (%s)\n", snd_strerror (err));
>   return false;
>  }
> 
>    What gives? Is this a feature of the hardware (C-Media chipset) or is 
> there a workaround?

This chip, like pratically every other sound chip, supports only
interleaved samples.

Try adding "plug:x" in front of the device name.


HTH
Clemens

------------------------------------------------------------------------------
_______________________________________________
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user

Reply via email to