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:
Wim Taymans 2026-02-19 14:25:03 +01:00
parent 7887c365d1
commit 2fb38af3e0
8 changed files with 1041 additions and 842 deletions

View file

@ -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',

File diff suppressed because it is too large Load diff