mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
Example executable that runs an output audioadapter using audiotestsrc as slave with an input audioadapter using alsa-pcm-sink as slave for easy testing.
16 lines
583 B
Meson
16 lines
583 B
Meson
if sdl_dep.found()
|
|
executable('local-v4l2', 'local-v4l2.c',
|
|
include_directories : [spa_inc ],
|
|
dependencies : [dl_lib, sdl_dep, pthread_lib],
|
|
install : false)
|
|
endif
|
|
|
|
executable('example-control', 'example-control.c',
|
|
include_directories : [spa_inc ],
|
|
dependencies : [dl_lib, pthread_lib, mathlib],
|
|
install : false)
|
|
|
|
executable('adapter-control', 'adapter-control.c',
|
|
include_directories : [spa_inc ],
|
|
dependencies : [dl_lib, pthread_lib, mathlib],
|
|
install : false)
|