mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
adapter: add adapter node
An adapter is like an audio-dsp node and client-stream combined. It allows tighter control with the device (for rate control and variable buffer sizes), software volume. The idea is to also implement the client-stream with this eventually.
This commit is contained in:
parent
0726a608df
commit
aba81455ff
5 changed files with 2783 additions and 0 deletions
|
|
@ -109,3 +109,15 @@ pipewire_module_audio_dsp = shared_library('pipewire-module-audio-dsp',
|
|||
install_dir : modules_install_dir,
|
||||
dependencies : [mathlib, dl_lib, rt_lib, pipewire_dep],
|
||||
)
|
||||
|
||||
pipewire_module_adapter = shared_library('pipewire-module-adapter',
|
||||
[ 'module-adapter.c',
|
||||
'module-adapter/adapter.c',
|
||||
'module-adapter/floatmix.c',
|
||||
'spa/spa-node.c' ],
|
||||
c_args : pipewire_module_c_args,
|
||||
include_directories : [configinc, spa_inc],
|
||||
install : true,
|
||||
install_dir : modules_install_dir,
|
||||
dependencies : [mathlib, dl_lib, rt_lib, pipewire_dep],
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue