On output devices, `snd_pcm_open()` makes a bad loud tick.

alsa-project/alsa-lib issue #451 was opened from ewtoombs:
Minimal reproduction:
``` #include <alsa/asoundlib.h> #include <stdbool.h> int main(int argc, const char **argv) { snd_pcm_t *out; assert(snd_pcm_open(&out, "default", // the name of the device being opened SND_PCM_STREAM_PLAYBACK, // it is an output stream false // iff nonblocking stream ) == 0); } ``` (Compile with `gcc -o test test.c -lasound`.)
Relevant `lspci`: ``` 00:1f.3 Audio device: Intel Corporation Sunrise Point-LP HD Audio (rev 21) ```
`uname`: ``` Linux robert 6.13.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Sun, 23 Mar 2025 17:17:30 +0000 x86_64 GNU/Linux ```
alsa-lib version: 1.2.13-1 (archlinux)
I've heard similar artefacts on many different sound cards, though, across many different architectures, always on linux. One must wait about five minutes in between trials, or the artefact does not occur.
This isn't a minor detail. The tick is very loud. It might even damage speakers in a worst case scenario.
Issue URL : https://github.com/alsa-project/alsa-lib/issues/451 Repository URL: https://github.com/alsa-project/alsa-lib
participants (1)
-
GitHub issues - opened