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

--- Comment #20 from Raymond <[email protected]> ---
http://git.alsa-project.org/?p=alsa-lib.git;a=blob;f=include/pcm.h;hb=HEAD

/** PCM access type */
typedef enum _snd_pcm_access {
    /** mmap access with simple interleaved channels */
    SND_PCM_ACCESS_MMAP_INTERLEAVED = 0,
    /** mmap access with simple non interleaved channels */
    SND_PCM_ACCESS_MMAP_NONINTERLEAVED,
    /** mmap access with complex placement */
    SND_PCM_ACCESS_MMAP_COMPLEX,
    /** snd_pcm_readi/snd_pcm_writei access */
    SND_PCM_ACCESS_RW_INTERLEAVED,
    /** snd_pcm_readn/snd_pcm_writen access */
    SND_PCM_ACCESS_RW_NONINTERLEAVED,
    SND_PCM_ACCESS_LAST = SND_PCM_ACCESS_RW_NONINTERLEAVED
} snd_pcm_access_t;


there are five pcm access type but pulseaudio only support two and does not
report any error when the sound card does not support interleaved modes

-- 
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