<p><br>
><br>
><br>
> > > as suggested by<br>
> > ><a href="https://bugs.freedesktop.org/show_bug.cgi?id=84804">https://bugs.freedesktop.org/show_bug.cgi?id=84804</a><br>
> > ><br>
> > > Signed-off-by: Peter Meerwald <<a href="mailto:pmeerw@pmeerw.net">pmeerw@pmeerw.net</a>><br>
> > > ---<br>
> > >  src/modules/alsa/alsa-util.c | 15 +++++++++++++++<br>
> > >  1 file changed, 15 insertions(+)<br>
> > ><br>
> > > diff --git a/src/modules/alsa/alsa-util.c b/src/modules/alsa/alsa-util.c<br>
> > > index 4131cff..e382d4f 100644<br>
> > > --- a/src/modules/alsa/alsa-util.c<br>
> > > +++ b/src/modules/alsa/alsa-util.c<br>
> > > @@ -183,6 +183,19 @@ static int set_buffer_size(snd_pcm_t *pcm_handle,<br>
> > snd_pcm_hw_params_t *hwparams,<br>
> > >      return 0;<br>
> > >  }<br>
> > ><br>
> > > +static void check_access(snd_pcm_t *pcm_handle, snd_pcm_hw_params_t<br>
> > *hwparams, bool use_mmap) {<br>
> > > +    if ((use_mmap && !snd_pcm_hw_params_test_access(pcm_handle,<br>
> > hwparams, SND_PCM_ACCESS_MMAP_INTERLEAVED)) ||<br>
> > > +        !snd_pcm_hw_params_test_access(pcm_handle, hwparams,<br>
> > SND_PCM_ACCESS_RW_INTERLEAVED))<br>
> > > +        pa_log_error("Weird, PCM claims to support interleaved access,<br>
> > but snd_pcm_hw_params_set_access() failed.");<br>
> ><br>
> > HW Params of device "hw:0,0":<br>
> > --------------------<br>
> > ACCESS:  MMAP_NONINTERLEAVED RW_NONINTERLEAVED<br>
> > FORMAT:  S32_LE<br>
> > SUBFORMAT:  STD<br>
> > SAMPLE_BITS: 32<br>
> > FRAME_BITS: [448 832]<br>
> > CHANNELS: [14 26]<br>
> > RATE: [32000 96000]<br>
> > PERIOD_TIME: (666 256000]<br>
> > PERIOD_SIZE: [64 8192]<br>
> > PERIOD_BYTES: [3584 851968]<br>
> > PERIODS: 2<br>
> > BUFFER_TIME: (1333 512000]<br>
> > BUFFER_SIZE: [128 16384]<br>
> > BUFFER_BYTES: [7168 1703936]<br>
> > TICK_TIME: ALL<br>
> ><br>
> > if use of test_access is to prevent set_access corrupt the configuration<br>
> > space of hw_param when access is not supported,<br>
><br>
> I am not sure if I understand your comment correctly<br>
><br>
> the idea of the patch is to improve the logging in case _INTERLEAVED is<br>
> not supported (but NONINTERLEAVED is)<br>
><br>
> I don't want to change the current behaviour in the normal case, hence<br>
> check_access() is called after trying to set the access method</p>
<p>Do pulseaudio assume all profiles of the sink use same access type ?</p>
<p>Do pulseaudio allow sink and source use different access type?</p>
<p>surround40,  surround51 of those creative sound cards emu10k1,  ca0106 use multi plugin of front, rear and clfe devices</p>
<p>><a href="http://pastebin.com/NnDvQ2kU">http://pastebin.com/NnDvQ2kU</a>></p>
<p>:~$ aplay --dump-hw-params -D surround40:CARD=Live /usr/share/sounds/alsa/Front_Left.wav</p>
<p>appropriate number of channels is not available WAVE '/usr/share/sounds/alsa/Front_Left.wav' : Signed 16 bit Little Endian, frequency 48000 Hz, Mono</p>
<p>HW Params of device "surround40:CARD=Live":</p>
<p>--------------------</p>
<p>ACCESS: MMAP_COMPLEX RW_INTERLEAVED RW_NONINTERLEAVED FORMAT: U8 S16_LE SUBFORMAT: STD SAMPLE_BITS: [8 16] FRAME_BITS: [32 64] CHANNELS: 4 RATE: [4000 96000] PERIOD_TIME: (166 8192000] PERIOD_SIZE: [16 32768] PERIOD_BYTES: [64 262144] PERIODS: [1 1024] BUFFER_TIME: (666 8192000] BUFFER_SIZE: [64 32768] BUFFER_BYTES: [256 262144] TICK_TIME: ALL --------------------</p>
<p>This mean that  front, rear, clfe (mono and stereo profile) support MMAP_INTERLEAVED and RW_INTERLEAVED</p>
<p>But. surround40 and surround51 support MMAP_COMPLEX or RW_INTERLEAVED</p>
<p>Seem no way to force pulseaudio to try RW_INTERLEAVED first since udev-detect only has tsched flag</p>
<p><a href="http://cgit.freedesktop.org/pulseaudio/pulseaudio/tree/src/modules/module-udev-detect.c">http://cgit.freedesktop.org/pulseaudio/pulseaudio/tree/src/modules/module-udev-detect.c</a></p>
<p>What is the purpose of bool *use_mmap in pa_alsa_set_hw_params</p>
<p>int pa_alsa_set_hw_params( snd_pcm_t *pcm_handle, pa_sample_spec *ss, snd_pcm_uframes_t *period_size, snd_pcm_uframes_t *buffer_size, snd_pcm_uframes_t tsched_size, bool *use_mmap, bool *use_tsched, bool require_exact_channel_number) {</p>
<p><a href="http://cgit.freedesktop.org/pulseaudio/pulseaudio/tree/src/modules/alsa/module-alsa-card.c">http://cgit.freedesktop.org/pulseaudio/pulseaudio/tree/src/modules/alsa/module-alsa-card.c</a></p>
<p>"mmap=<enable memory mapping?> "</p>
<p><a href="http://cgit.freedesktop.org/pulseaudio/pulseaudio/tree/src/modules/alsa/module-alsa-sink.c">http://cgit.freedesktop.org/pulseaudio/pulseaudio/tree/src/modules/alsa/module-alsa-sink.c</a></p>
<p>"mmap=<enable memory mapping?> "</p>
<p><a href="http://cgit.freedesktop.org/pulseaudio/pulseaudio/tree/src/modules/alsa/module-alsa-source.c">http://cgit.freedesktop.org/pulseaudio/pulseaudio/tree/src/modules/alsa/module-alsa-source.c</a></p>
<p>"mmap=<enable memory mapping?> "</p>