mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-31 11:09:04 -05:00
Start of RTP module
This commit is contained in:
parent
fd508d395b
commit
d21fc6f378
2 changed files with 506 additions and 0 deletions
|
|
@ -26,6 +26,7 @@ module_sources = [
|
|||
'module-rt.c',
|
||||
'module-raop-discover.c',
|
||||
'module-raop-sink.c',
|
||||
'module-rtp-source.c',
|
||||
'module-session-manager.c',
|
||||
'module-zeroconf-discover.c',
|
||||
'module-roc-source.c',
|
||||
|
|
@ -482,6 +483,15 @@ summary({'raop-sink (requires OpenSSL)': build_module_raop}, bool_yn: true, sect
|
|||
roc_lib = cc.find_library('roc', has_headers: ['roc/config.h' ], required: get_option('roc'))
|
||||
summary({'ROC': roc_lib.found()}, bool_yn: true, section: 'Streaming between daemons')
|
||||
|
||||
pipewire_module_rtp_source = shared_library('pipewire-module-rtp-source',
|
||||
[ 'module-rtp-source.c' ],
|
||||
include_directories : [configinc],
|
||||
install : true,
|
||||
install_dir : modules_install_dir,
|
||||
install_rpath: modules_install_dir,
|
||||
dependencies : [mathlib, dl_lib, rt_lib, pipewire_dep],
|
||||
)
|
||||
|
||||
build_module_roc = roc_lib.found()
|
||||
if build_module_roc
|
||||
pipewire_module_roc_sink = shared_library('pipewire-module-roc-sink',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue