mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-02-26 01:40:28 -05:00
modules: move the scheduler to a module
Mostly because we can but also because there are more ways of doing the scheduling and this opens the door for some experimentation.
This commit is contained in:
parent
7887c365d1
commit
2fb38af3e0
8 changed files with 1041 additions and 842 deletions
|
|
@ -46,6 +46,7 @@ module_sources = [
|
|||
'module-vban-recv.c',
|
||||
'module-vban-send.c',
|
||||
'module-session-manager.c',
|
||||
'module-scheduler-v1.c',
|
||||
'module-zeroconf-discover.c',
|
||||
'module-roc-source.c',
|
||||
'module-roc-sink.c',
|
||||
|
|
@ -532,6 +533,15 @@ pipewire_module_adapter = shared_library('pipewire-module-adapter',
|
|||
dependencies : [mathlib, dl_lib, rt_lib, pipewire_dep],
|
||||
)
|
||||
|
||||
pipewire_module_scheduler_v1 = shared_library('pipewire-module-scheduler-v1',
|
||||
[ 'module-scheduler-v1.c' ],
|
||||
include_directories : [configinc],
|
||||
install : true,
|
||||
install_dir : modules_install_dir,
|
||||
install_rpath: modules_install_dir,
|
||||
dependencies : [mathlib, dl_lib, rt_lib, pipewire_dep],
|
||||
)
|
||||
|
||||
pipewire_module_session_manager = shared_library('pipewire-module-session-manager',
|
||||
[ 'module-session-manager.c',
|
||||
'module-session-manager/client-endpoint/client-endpoint.c',
|
||||
|
|
|
|||
1009
src/modules/module-scheduler-v1.c
Normal file
1009
src/modules/module-scheduler-v1.c
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue