mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
filter-chain: add support for fftw in the convolver
It's faster than pffft.
This commit is contained in:
parent
f810c7c15f
commit
7f8ce35709
7 changed files with 267 additions and 5 deletions
|
|
@ -311,6 +311,9 @@ cdata.set('HAVE_DBUS', dbus_dep.found())
|
|||
sdl_dep = dependency('sdl2', required : get_option('sdl2'))
|
||||
summary({'SDL2 (video examples)': sdl_dep.found()}, bool_yn: true, section: 'Misc dependencies')
|
||||
drm_dep = dependency('libdrm', required : false)
|
||||
fftw_dep = dependency('fftw3f', required : false)
|
||||
summary({'fftw3f (filter-chain convolver)': fftw_dep.found()}, bool_yn: true, section: 'Misc dependencies')
|
||||
cdata.set('HAVE_FFTW', fftw_dep.found())
|
||||
|
||||
if get_option('readline').disabled()
|
||||
readline_dep = dependency('', required: false)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue