mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
Remove the thread from alsa sink and use the pollfd event. Make it possible to pass multiple fds in one pollfd event Add 3 callbacks to the pollfd event and add support for timeouts
19 lines
398 B
Meson
19 lines
398 B
Meson
project('spa', 'c')
|
|
|
|
alsa_dep = dependency('alsa')
|
|
v4l2_dep = dependency('libv4l2')
|
|
xv_dep = dependency('x11')
|
|
sdl_dep = dependency('sdl2')
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
dl_lib = cc.find_library('dl', required : true)
|
|
pthread_lib = cc.find_library('pthread', required : true)
|
|
|
|
inc = include_directories('include')
|
|
|
|
subdir('include')
|
|
subdir('lib')
|
|
subdir('plugins')
|
|
subdir('tools')
|
|
subdir('tests')
|