filter-chain: add support for fftw in the convolver

It's faster than pffft.
This commit is contained in:
Wim Taymans 2024-10-18 16:26:39 +02:00
parent f810c7c15f
commit 7f8ce35709
7 changed files with 267 additions and 5 deletions

View file

@ -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)