pipewire/spa/plugins/audiomixer
Wim Taymans d22feab92a spa: add macro to simplify array iterations some more
uint32_t i;
	for (i = 0; i < SPA_N_ELEMENTS(some_array); i++)
		.. stuff with some_array[i].foo ...

   becomes:

	SPA_FOR_EACH_ELEMENT_VAR(some_array, p)
		.. stuff with p->foo ..
2022-09-30 16:24:26 +02:00
..
audiomixer.c spa: make default samplerate 48000 2022-09-05 12:21:20 +02:00
benchmark-mix-ops.c
meson.build
mix-ops-avx.c
mix-ops-c.c
mix-ops-sse.c
mix-ops-sse2.c
mix-ops.c spa: add macro to simplify array iterations some more 2022-09-30 16:24:26 +02:00
mix-ops.h
mixer-dsp.c spa: clean up some port io checks 2022-09-01 15:39:34 +02:00
plugin.c
test-helper.h
test-mix-ops.c