forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simple dependency-free ALSA test rig for PCM capture analysis.
Just drop this script on a test device to run it. No tools to build, no dependencies to install. Confirmed to run on Python 3.8+ with nothing more than the core libraries and a working libasound.so.2 visible to the runtime linker. When run without arguments, the tool will record from the capture device for the specified duration, then emit the resulting samples back out the playback device without processing (except potentially to convert the sample format from s32_le to s16_le if needed, and to discard any channels beyond those supported by the playback device). Passing --chirp-test enables a playback-to-capture latency detector: the tool will emit a short ~6 kHz wave packet via ALSA's mmap interface (which allows measuring and correcting for the buffer latency from the userspace process) and simultaneously loop on short reads from the capture device looking for the moment it arrives. Passing --echo-test enables a capture-while-playback test. The script will play a specified .wav file ("noise.wav" by default) for the specified duration, while simultaneously capturing, and report the "power" (in essentially arbitrary units, but it's linear with actual signal energy assuming the sample space is itself linear) of the captured data to stdout at the end of the test. Signed-off-by: Andy Ross <[email protected]>
- Loading branch information
Showing
1 changed file
with
364 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,364 @@ | ||
#!/usr/bin/env python3 | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# Copyright 2024 Google LLC | ||
# Author: Andy Ross <[email protected]> | ||
import os | ||
import re | ||
import sys | ||
import time | ||
import struct | ||
import random | ||
import argparse | ||
import ctypes as c | ||
|
||
# Simple dependency-free ALSA test rig for PCM capture analysis. | ||
# | ||
# Just drop this script on a test device to run it. No tools to | ||
# build, no dependencies to install. Confirmed to run on Python 3.8+ | ||
# with nothing more than the core libraries and a working | ||
# libasound.so.2 visible to the runtime linker. | ||
# | ||
# When run without arguments, the tool will record from the capture | ||
# device for the specified duration, then emit the resulting samples | ||
# back out the playback device without processing (except potentially | ||
# to convert the sample format from s32_le to s16_le if needed, and to | ||
# discard any channels beyond those supported by the playback device). | ||
# | ||
# Passing --chirp-test enables a playback-to-capture latency detector: | ||
# the tool will emit a short ~6 kHz wave packet via ALSA's mmap | ||
# interface (which allows measuring and correcting for the buffer | ||
# latency from the userspace process) and simultaneously loop on short | ||
# reads from the capture device looking for the moment it arrives. | ||
# | ||
# Passing --echo-test enables a capture-while-playback test. The | ||
# script will play a specified .wav file ("noise.wav" by default) for | ||
# the specified duration, while simultaneously capturing, and report | ||
# the "power" (in essentially arbitrary units, but it's linear with | ||
# actual signal energy assuming the sample space is itself linear) of | ||
# the captured data to stdout at the end of the test. | ||
|
||
opts = argparse.ArgumentParser() | ||
opts.add_argument("--disable-rtnr", action="store_true", help="Disable RTNR noise reduction") | ||
opts.add_argument("-c", "--card", type=int, default=0, help="ALSA card index") | ||
opts.add_argument("--pcm", type=int, default=16, help="Output ALSA PCM index") | ||
opts.add_argument("--cap", type=int, default=18, help="Capture ALSA PCM index") | ||
opts.add_argument("--rate", type=int, default=48000, help="Sample rate") | ||
opts.add_argument("--chan", type=int, default=2, help="Output channel count") | ||
opts.add_argument("--capchan", type=int, help="Capture channel count (if different from output)") | ||
opts.add_argument("--capbits", type=int, default=16, help="Capture sample bits (16 or 32)") | ||
opts.add_argument("--noise", default="noise.wav", help="WAV file containing 'noise' for capture") | ||
opts.add_argument("--duration", type=int, default=3, help="Capture duration (seconds)") | ||
opts.add_argument("--chirpcyc", type=int, default=120, help="Repetitions of chirp waveform") | ||
opts.add_argument("--chirp-test", action="store_true", help="Test latency with synthesized audio") | ||
opts.add_argument("--echo-test", action="store_true", help="Test simultaneous capture/playback") | ||
|
||
opts = opts.parse_args() | ||
if not opts.capchan: | ||
opts.capchan = opts.chan | ||
opts.base_test = not (opts.chirp_test or opts.echo_test) | ||
|
||
# Tiny ctypes stub. Wraps the alsa API such that errno returns (at | ||
# least ones that look like an errno) become OSErrors and don't need | ||
# to be checked. Includes a generalized alloc() that wraps all the | ||
# _sizeof() predicates and allocates from the (safe/collected) python | ||
# heap. Provides a simple spot for putting (manually-derived) | ||
# constants. The ALSA C API is mostly-structless and quite simple, so | ||
# this tends to work well without a lot of ctypes use except for an | ||
# occasional constructed integer or byref() pointer. | ||
class ALSA: | ||
PCM_STREAM_PLAYBACK = 0 | ||
PCM_STREAM_CAPTURE = 1 | ||
PCM_FORMAT_S16_LE = 2 | ||
PCM_FORMAT_S32_LE = 10 | ||
PCM_ACCESS_MMAP_INTERLEAVED = 0 | ||
PCM_ACCESS_RW_INTERLEAVED = 3 | ||
def __init__(self): | ||
self.lib = c.cdll.LoadLibrary("libasound.so.2") | ||
def __getattr__(self, name): | ||
if name.startswith("snd_"): | ||
fn = getattr(self.lib, name) | ||
if name.endswith("_name"): # These return strings! | ||
fn.restype = c.c_char_p | ||
return lambda *args: fn(*args).decode("utf-8") | ||
else: | ||
return lambda *args: self.err_wrap(fn(*args)) | ||
def err_wrap(self, ret): | ||
if ret < 0 and ret > -200: | ||
raise OSError(os.strerror(-ret)) | ||
return ret | ||
def alloc(self, typ): | ||
return (c.c_byte * getattr(self.lib, f"snd_{typ}_sizeof")())() | ||
class pcm_channel_area_t(c.Structure): | ||
_fields_ = [("addr", c.c_ulong), ("first", c.c_int), ("step", c.c_int)] | ||
|
||
# A programmatically-detectable chirp/pop signal for testing latency. | ||
# To minimize latency, we want the chirp to be low duration, high | ||
# energy and high frequency. This repeats an 8-sample square wave (6 | ||
# kHz at 48k sample rate). Some devices can reproduce this well with | ||
# as few as 8 repetitions (1.3ms), but on at least one mt8195 device | ||
# it's unreliably audible unless repeated 128 times! It's not caused | ||
# by software in the DSP, more like a codec/amp feature (possibly | ||
# related to power management, if we don't play other audio | ||
# immediately before, it's even less reliable). | ||
def gen_chirp_s16le(rate, chans): | ||
reps = 4 | ||
chirp = b'' | ||
for i in range(opts.chirpcyc): | ||
n = chans * reps | ||
vals = [-0x8000] * n + [0x7fff] * n | ||
chirp += struct.pack(f"{2*n}h", *vals) | ||
return (chirp, opts.chirpcyc * reps) | ||
|
||
def init_stream(pcm, rate, chans, fmt, access): | ||
hwp = alsa.alloc("pcm_hw_params") | ||
alsa.snd_pcm_hw_params_any(pcm, hwp) | ||
alsa.snd_pcm_hw_params_set_format(pcm, hwp, fmt) | ||
alsa.snd_pcm_hw_params_set_channels(pcm, hwp, chans) | ||
alsa.snd_pcm_hw_params_set_rate(pcm, hwp, rate, alsa.PCM_STREAM_PLAYBACK) | ||
alsa.snd_pcm_hw_params_set_access(pcm, hwp, access) | ||
alsa.snd_pcm_hw_params(pcm, hwp) | ||
|
||
# Noise reduction likes to squash our chirp on capture. Walk the list | ||
# of controls, looking for an RTNR enable control, if one exists, and | ||
# set it to false. Unbelievably cumbersome API to do this: call | ||
# elem_list once on an empty struct to get the element count, then | ||
# allocate, then call it again. Then for each element we can check | ||
# the name directly, but need to allocate an "id" struct to query an | ||
# abstract identifier, that we use with a separately-allocated "value" | ||
# (on which we set the dyncmically typed data) to send the command to | ||
# the kernel. | ||
def disable_rtnr(): | ||
dev = f"hw:{opts.card}".encode("ascii") | ||
ctl = c.c_ulong() | ||
alsa.snd_ctl_open(c.byref(ctl), dev, 0) | ||
elist = alsa.alloc("ctl_elem_list") | ||
alsa.snd_ctl_elem_list(ctl, elist) | ||
nelem = alsa.snd_ctl_elem_list_get_count(elist) | ||
alsa.snd_ctl_elem_list_alloc_space(elist, nelem) | ||
alsa.snd_ctl_elem_list(ctl, elist) | ||
for i in range(nelem): | ||
name = alsa.snd_ctl_elem_list_get_name(elist, i) | ||
if re.match(r'RTNR.*\s+rtnr_enable.*', name): | ||
print(f"Disabling control: {name}") | ||
eid = alsa.alloc("ctl_elem_id") | ||
val = alsa.alloc("ctl_elem_value") | ||
alsa.snd_ctl_elem_list_get_id(elist, i, c.byref(eid)) | ||
alsa.snd_ctl_elem_value_set_id(val, eid) | ||
alsa.snd_ctl_elem_value_set_boolean(val, 0, False) | ||
alsa.snd_ctl_elem_write(ctl, val) | ||
alsa.snd_ctl_close(ctl) | ||
|
||
def play_buf(data): | ||
data = bytearray(data) | ||
addr = c.addressof((c.c_byte * 1).from_buffer(data)) | ||
off = 0 | ||
n = int(len(data) / (2 * opts.chan)) | ||
n = min(n, opts.rate * opts.duration) | ||
|
||
pcm = c.c_long(0) | ||
dev = f"hw:{opts.card},{opts.pcm}".encode("ascii") | ||
alsa.snd_pcm_open(c.byref(pcm), dev, alsa.PCM_STREAM_PLAYBACK, 0) | ||
init_stream(pcm, opts.rate, opts.chan, alsa.PCM_FORMAT_S16_LE, | ||
alsa.PCM_ACCESS_RW_INTERLEAVED) | ||
while n > 0: | ||
f = alsa.snd_pcm_writei(pcm, c.c_ulong(addr + off), n) | ||
n -= f | ||
off += f | ||
alsa.snd_pcm_drain(pcm) | ||
alsa.snd_pcm_close(pcm) | ||
|
||
def play_chirp(): | ||
pcm = c.c_long(0) | ||
dev = f"hw:{opts.card},{opts.pcm}".encode("ascii") | ||
alsa.snd_pcm_open(c.byref(pcm), dev, alsa.PCM_STREAM_PLAYBACK, 0) | ||
init_stream(pcm, opts.rate, opts.chan, alsa.PCM_FORMAT_S16_LE, | ||
alsa.PCM_ACCESS_MMAP_INTERLEAVED) | ||
|
||
(chirp, chirp_frames) = gen_chirp_s16le(opts.rate, opts.chan) | ||
|
||
# Reset the stream and queue up as much data as will fit in the | ||
# ring buffer | ||
area = alsa.pcm_channel_area_t() | ||
offset = c.c_ulong() | ||
frames = c.c_ulong(opts.rate) | ||
ring_frames = 0 | ||
alsa.snd_pcm_prepare(pcm) | ||
alsa.snd_pcm_reset(pcm) | ||
while True: | ||
alsa.snd_pcm_avail_update(pcm) | ||
alsa.snd_pcm_mmap_begin(pcm, c.byref(area), c.byref(offset), c.byref(frames)) | ||
committed = alsa.snd_pcm_mmap_commit(pcm, offset, frames) | ||
ring_frames += committed | ||
if committed == 0: | ||
break | ||
|
||
silence = bytes(2 * opts.chan * ring_frames) | ||
|
||
# Start up the stream, spin until there is space in the buffer, | ||
# write the chirp. This minimizes client-side overhead like | ||
# stream startup. Then immediately take a timestamp and write | ||
# silence for one full cycle (to be 100% sure the buffer can't | ||
# wrap and chirp twice). | ||
alsa.snd_pcm_start(pcm) | ||
while alsa.snd_pcm_avail(pcm) < chirp_frames: | ||
pass | ||
pre_buffered = ring_frames - alsa.snd_pcm_avail(pcm) | ||
f = alsa.snd_pcm_mmap_writei(pcm, chirp, chirp_frames) | ||
chirp_sent = time.perf_counter() | ||
|
||
n = 0 | ||
while n < ring_frames: | ||
n += alsa.snd_pcm_mmap_writei(pcm, silence, ring_frames) | ||
alsa.snd_pcm_drain(pcm) | ||
alsa.snd_pcm_close(pcm) | ||
|
||
# Correct chirp_sent for buffered data! | ||
chirp_sent += pre_buffered / opts.rate | ||
return chirp_sent | ||
|
||
# Returns an array of tuples of (timestamp, bytes), no processing done | ||
# here for performance reasons, just one heap allocation and copy. | ||
def do_capture(duration): | ||
pcm = c.c_long(0) | ||
fmt = alsa.PCM_FORMAT_S32_LE if opts.capbits == 32 else alsa.PCM_FORMAT_S16_LE | ||
capsz = 4 if opts.capbits == 32 else 2 | ||
dev = f"hw:{opts.card},{opts.cap}".encode("ascii") | ||
alsa.snd_pcm_open(c.byref(pcm), dev, alsa.PCM_STREAM_CAPTURE, 0) | ||
init_stream(pcm, opts.rate, opts.capchan, fmt, alsa.PCM_ACCESS_RW_INTERLEAVED) | ||
frames_remaining = duration * opts.rate | ||
buf_frames = int(opts.rate / 1000) # 1ms blocks | ||
fsz = opts.capchan * capsz | ||
buf = bytearray(fsz * buf_frames) | ||
addr = c.c_ulong(c.addressof((c.c_byte * 1).from_buffer(buf))) | ||
buflist = [] | ||
buf_frames = c.c_ulong(buf_frames) | ||
while frames_remaining > 0: | ||
f = alsa.snd_pcm_readi(pcm, addr, buf_frames) | ||
t = time.perf_counter() | ||
frames_remaining -= f | ||
buflist.append((t, bytes(buf[0:f * fsz]))) | ||
return buflist | ||
|
||
# Converts a byte array containing capture frames (which can have | ||
# different sample format and channel count) to the playback format | ||
# (always s16_le). Also computes an "energy" value as the sum of | ||
# absolute sample differences (in units of +/-1.0) over all result | ||
# channels. Returns both as a tuple. | ||
# | ||
# FIXME: should consider low-passing the energy computation by | ||
# averaging ~N recent samples. Otherwise high frequency noise can | ||
# dominate, which we don't really care about measuring (AEC can't | ||
# treat it, and it can plausibly create false positive chirp signals | ||
# if loud enough). | ||
def cap_to_playback(buf): | ||
capfmt = ('i' if opts.capbits == 32 else 'h') * opts.capchan | ||
capsz = opts.capchan * (4 if opts.capbits == 32 else 2) | ||
scale = 1 / (1 << (opts.capbits - 1)) | ||
last_frame = None | ||
delta_sum = 0 | ||
out_frames = [] | ||
for i in range(0, len(buf), capsz): | ||
frame = [scale * x for x in struct.unpack(capfmt, buf[i:i+capsz])[0:opts.chan]] | ||
if last_frame: | ||
delta_sum += sum(abs(last_frame[x] - frame[x]) for x in range(opts.chan)) | ||
last_frame = frame | ||
iframe = [int(min(0x7fff, max(-0x8000, (1 << 15) * e))) for e in frame] | ||
out_frames.append(struct.pack(f'{opts.chan}h', *iframe)) | ||
return (b''.join(out_frames), delta_sum) | ||
|
||
def chirp_child(wpipe): | ||
for rec in do_capture(opts.duration): | ||
t = rec[0] | ||
(buf, energy) = cap_to_playback(rec[1]) | ||
frames = len(buf) / (2 * opts.chan) | ||
|
||
# Normalize energy as "half-swing per sample" and check vs. a | ||
# threshold that will trigger if we get a 0.1 unit swing over | ||
# the 8-sample chirp waveform. | ||
# | ||
# FIXME: would be possible to do this analysis at the | ||
# individual sample layer for better time fidelity instead of | ||
# in 1ms chunks. | ||
energy = energy / (frames * opts.chan) | ||
if energy > (0.1/8): | ||
os.write(wpipe, f"{t}".encode("ascii")) | ||
return | ||
|
||
def echo_child(wpipe): | ||
energy = 0 | ||
for rec in do_capture(opts.duration): | ||
energy += cap_to_playback(rec[1])[1] | ||
|
||
# Normalize energy to "half-swing per second" here, just to make | ||
# essentially arbitrary numbers prettier (e.g. a typical pop music | ||
# track results in ~few-hundred values for "energy") | ||
energy /= (opts.duration * opts.chan) | ||
os.write(wpipe, f"{energy:.3f}".encode("ascii")) | ||
|
||
# Forks a child process to listen for the chirp and write back a | ||
# time.perf_counter() value (which is an invariant clock across | ||
# processes) through a pipe. | ||
def chirp_test(): | ||
(rfd, wfd) = os.pipe() | ||
pid = os.fork() | ||
if pid == 0: | ||
chirp_child(wfd) | ||
exit(0) | ||
|
||
# Randomly sleep for a bit to make aliasing bugs (e.g. noise being | ||
# detected as a chirp) visible as unreliable output. | ||
time.sleep(random.randint(1000, 2000)/1000) | ||
chirp_sent = play_chirp() | ||
|
||
os.waitpid(pid, 0) | ||
msg = os.read(rfd, 9999).decode("ascii") | ||
chirp_detected = eval(msg) | ||
|
||
lat_ms = (chirp_detected - chirp_sent) * 1000 | ||
print(f"Chirp latency: {lat_ms:.1f} ms") | ||
|
||
# Similar to chirp test, but plays a .wav file while the child | ||
# captures, and reports average capture energy (useful for testing mic | ||
# gain and echo cancellation performance) | ||
def echo_test(): | ||
# Just slurps in the wav file and chops off the header, assuming | ||
# the user got the format and sampling rate correct. | ||
buf = open(opts.noise, "rb").read()[44:] | ||
|
||
(rfd, wfd) = os.pipe() | ||
pid = os.fork() | ||
if pid == 0: | ||
echo_child(wfd) | ||
exit(0) | ||
|
||
play_buf(buf) | ||
|
||
os.waitpid(pid, 0) | ||
msg = os.read(rfd, 9999).decode("ascii") | ||
print("Capture energy:", msg) | ||
|
||
# Simplest test: Just capture opts.duration seconds worth of data, | ||
# convert to playback format, and play it. | ||
def base_test(): | ||
bufs = [] | ||
energy = 0 | ||
for rec in do_capture(opts.duration): | ||
crec = cap_to_playback(rec[1]) | ||
bufs.append(crec[0]) | ||
energy += crec[1] | ||
play_buf(b''.join(bufs)) | ||
print(f"Energy {energy}") | ||
|
||
def main(): | ||
if opts.disable_rtnr: | ||
disable_rtnr() | ||
if opts.base_test: | ||
base_test() | ||
if opts.chirp_test: | ||
chirp_test() | ||
if opts.echo_test: | ||
echo_test() | ||
|
||
alsa = ALSA() | ||
if __name__ == "__main__": | ||
main() |