pipewire/src/modules/module-client-device
Peter Hutterer 51a177eb6d tree-wide: replace strstr(a, b) == a with spa_strstartswith()
spa_strstartswith() is more immediately understandable.

Coccinelle spatch file:
	@@
	expression E1, E2;
	@@
	- strstr(E1, E2) != E1
	+ !spa_strstartswith(E1, E2)

	@@
	expression E1, E2;
	@@
	- strstr(E1, E2) == E1
	+ spa_strstartswith(E1, E2)

Applied to the tree except for alsa/acp/compat.h because it looks like
that header is still mostly as-is from PA.
2021-08-02 08:24:21 +00:00
..
client-device.h move proxy implementations in their own file 2019-12-11 10:58:51 +01:00
protocol-native.c tree-wide: replace strstr(a, b) == a with spa_strstartswith() 2021-08-02 08:24:21 +00:00
proxy-device.c spa/buffer: rename SPA_MEMBER to SPA_PTROFF 2021-05-06 09:39:39 +00:00
resource-device.c client-device: first set implementation, then register 2020-08-03 18:11:12 +02:00