mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Make delay signed in the clock io so that we can simply add it to the tick to get the hw position. Add clock drift to clock info
12 lines
511 B
Meson
12 lines
511 B
Meson
spa_alsa_sources = ['alsa.c',
|
|
'alsa-monitor.c',
|
|
'alsa-sink.c',
|
|
'alsa-source.c',
|
|
'alsa-utils.c']
|
|
|
|
spa_alsa = shared_library('spa-alsa',
|
|
spa_alsa_sources,
|
|
include_directories : [spa_inc],
|
|
dependencies : [ alsa_dep, libudev_dep, mathlib ],
|
|
install : true,
|
|
install_dir : '@0@/spa/alsa'.format(get_option('libdir')))
|