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 audiomixer: optimize avx mixer some more 2022-07-10 23:13:24 +02:00
meson.build audiomixer: improve sse and sse2 mixer 2022-07-10 21:15:34 +02:00
mix-ops-avx.c audiomixer: optimize avx mixer some more 2022-07-10 23:13:24 +02:00
mix-ops-c.c audiomixer: improve sse and sse2 mixer 2022-07-10 21:15:34 +02:00
mix-ops-sse.c audiomixer: optimize avx mixer some more 2022-07-10 23:13:24 +02:00
mix-ops-sse2.c audiomixer: optimize avx mixer some more 2022-07-10 23:13:24 +02:00
mix-ops.c spa: add macro to simplify array iterations some more 2022-09-30 16:24:26 +02:00
mix-ops.h audiomixer: rewrite the mixer functions 2022-07-09 18:11:13 +02:00
mixer-dsp.c spa: clean up some port io checks 2022-09-01 15:39:34 +02:00
plugin.c mixer: Move floatmix to the audio mixer plugin 2019-10-03 16:20:12 +02:00
test-helper.h tests: add missing file 2022-07-09 20:16:15 +02:00
test-mix-ops.c audiomixer: optimize avx mixer some more 2022-07-10 23:13:24 +02:00