pipewire/spa/include/spa
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
..
buffer SPA POD parser: fix several integer overflows 2022-09-27 10:21:17 +00:00
control doc: add brief explanations for all groups 2021-10-04 20:55:04 +03:00
debug Fix some badly-behaved macros 2022-09-23 11:39:33 -04:00
graph Fix some badly-behaved macros 2022-09-23 11:39:33 -04:00
interfaces/audio Fix some badly-behaved macros 2022-09-23 11:39:33 -04:00
monitor Fix some badly-behaved macros 2022-09-23 11:39:33 -04:00
node Fix some badly-behaved macros 2022-09-23 11:39:33 -04:00
param Fix some badly-behaved macros 2022-09-23 11:39:33 -04:00
pod pod: fix alignment check 2022-09-29 17:06:54 +02:00
support SPA POD parser: fix several integer overflows 2022-09-27 10:21:17 +00:00
utils spa: add macro to simplify array iterations some more 2022-09-30 16:24:26 +02:00