mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-31 11:09:04 -05:00
module: add a netjack2 driver module
The module advertizes itself on multicast and will trigger a new client in the netjack2 manager. Tested with jack2 and 'jack_load netmanager'. The driver will receive and send data (no midi yet) from and to the manager in sync with the manager, without resampling and with a fixed latency.
This commit is contained in:
parent
d9e29e70f3
commit
991a1558dc
3 changed files with 1767 additions and 0 deletions
|
|
@ -21,6 +21,7 @@ module_sources = [
|
|||
'module-link-factory.c',
|
||||
'module-loopback.c',
|
||||
'module-metadata.c',
|
||||
'module-netjack2-driver.c',
|
||||
'module-pipe-tunnel.c',
|
||||
'module-portal.c',
|
||||
'module-profiler.c',
|
||||
|
|
@ -200,6 +201,14 @@ endif
|
|||
|
||||
summary({'ffado-driver': build_module_ffado_driver}, bool_yn: true, section: 'Optional Modules')
|
||||
|
||||
pipewire_module_netjack2_driver = shared_library('pipewire-module-netjack2-driver',
|
||||
[ 'module-netjack2-driver.c' ],
|
||||
include_directories : [configinc],
|
||||
install : true,
|
||||
install_dir : modules_install_dir,
|
||||
install_rpath: modules_install_dir,
|
||||
dependencies : [spa_dep, mathlib, dl_lib, pipewire_dep],
|
||||
)
|
||||
|
||||
pipewire_module_profiler = shared_library('pipewire-module-profiler',
|
||||
[ 'module-profiler.c',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue