mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-03-17 05:33:55 -04:00
filter-chain: add spatializer
SOFA is a file format used for storing and accessing spatial audio data, namely head-related transfer functions. These can be used to create binaural spatial sound using head- or earphones. This commit introduces libmysofa as an optional dependency for loading SOFA files and creates a spatializer plugin for the filter-chain ci: install libmysofa-devel for full build ci: bump FDO_DISTRIBUTION_TAG
This commit is contained in:
parent
ecf06935ba
commit
3e0dc2678b
5 changed files with 262 additions and 2 deletions
|
|
@ -285,6 +285,9 @@ ncurses_dep = dependency('ncursesw', required : false)
|
|||
sndfile_dep = dependency('sndfile', version : '>= 1.0.20', required : get_option('sndfile'))
|
||||
summary({'sndfile': sndfile_dep.found()}, bool_yn: true, section: 'pw-cat/pw-play/pw-dump/filter-chain')
|
||||
cdata.set('HAVE_SNDFILE', sndfile_dep.found())
|
||||
libmysofa_dep = dependency('libmysofa', required : get_option('libmysofa'))
|
||||
summary({'libmysofa': libmysofa_dep.found()}, bool_yn: true, section: 'filter-chain')
|
||||
cdata.set('HAVE_LIBMYSOFA', libmysofa_dep.found())
|
||||
pulseaudio_dep = dependency('libpulse', required : get_option('libpulse'))
|
||||
summary({'libpulse': pulseaudio_dep.found()}, bool_yn: true, section: 'Streaming between daemons')
|
||||
avahi_dep = dependency('avahi-client', required : get_option('avahi'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue