alsa-utils
alsa-utils copied to clipboard
The Advanced Linux Sound Architecture (ALSA) - utilities
Fix valgrind memcheck error: ==1337389== Invalid write of size 1 ==1337389== at 0x4A4AFAB: __vsnprintf_internal (vsnprintf.c:117) ==1337389== by 0x4AECF40: __snprintf_chk (snprintf_chk.c:38) ==1337389== by 0x484B870: snprintf (stdio2.h:67) ==1337389== by 0x484B870: print_as_hex_bytes (nhlt-processor.c:112)...
If alsa-lib is configured using `--disable-rawmidi`, then alsa-utils fails to build: ``` alsactl/info.c:83:44: error: unknown type name 'snd_rawmidi_stream_t'; did you mean 'snd_pcm_stream_t'? 83 | static const char *snd_rawmidi_stream_name(snd_rawmidi_stream_t stream) |...
The text output of speaker-test for -c6 appears to indicate that it is using 5+1 channels, with FL, FR, RL, RR, FC, LFE channels (output in a different order). But...
Commit 9a8fcec ("amidi: add timestamp option for dump") removed the space between bytes when dumping MIDI, changing the output from: 90 45 40 80 45 00 to: 904540 804500 It...
If we suspend the system while axfer is doing playback/capture, after system resumed, axfer stopped playbak/capture with: ``` Fail to process frames: Streams pipe error PLAYBACK: Expected 4611686018427387903frames, Actual 143392frames...
The spelling of 'aborted' was 'aboeted' in the manual. This commit fixes it. Fixes: a37703614a90 ("axfer: fulfill manual section for libffado backend") Reported-by: Chao Song [email protected] Signed-off-by: Takashi Sakamoto
There is an `-i` option for interactive mode, in the interactive mode, we are able to pause/resume the playback/capture stream with SPACE key, which is very good. However we have...