mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
jack: add jack source and sink
Makes a device with a source and sink that automatically proxies all physical ports from jack. Jack then drives our PipeWire pipeline from its own thread.
This commit is contained in:
parent
d00c641559
commit
5b9869200f
15 changed files with 2433 additions and 1 deletions
12
spa/plugins/jack/meson.build
Normal file
12
spa/plugins/jack/meson.build
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
spa_jack_sources = ['plugin.c',
|
||||
'jack-client.c',
|
||||
'jack-device.c',
|
||||
'jack-sink.c',
|
||||
'jack-source.c']
|
||||
|
||||
spa_jack = shared_library('spa-jack',
|
||||
spa_jack_sources,
|
||||
include_directories : [spa_inc],
|
||||
dependencies : [ jack_dep, mathlib ],
|
||||
install : true,
|
||||
install_dir : '@0@/spa/jack'.format(get_option('libdir')))
|
||||
Loading…
Add table
Add a link
Reference in a new issue