diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-12-09 13:40:03 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-12-12 20:56:36 +0100 |
commit | 0a19538bcf401afd369a597fe1fa06172368e46f (patch) | |
tree | 7ca44edab499ab67a3a9584d945a7bb440eaa710 /configure | |
parent | 69e80d6ce42c6b1a19f6cc79d68cedd91111cc37 (diff) | |
download | ffmpeg-0a19538bcf401afd369a597fe1fa06172368e46f.tar.gz |
avfilter: add SOFAlizer audio filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -279,6 +279,7 @@ External library support: --disable-lzma disable lzma [autodetect] --enable-decklink enable Blackmagic DeckLink I/O support [no] --enable-mmal enable decoding via MMAL [no] + --enable-netcdf enable NetCDF, needed for sofalizer filter [no] --enable-nvenc enable NVIDIA NVENC support [no] --enable-openal enable OpenAL 1.1 capture support [no] --enable-opencl enable OpenCL code @@ -1503,6 +1504,7 @@ EXTERNAL_LIBRARY_LIST=" libzvbi lzma mmal + netcdf nvenc openal opencl @@ -2890,6 +2892,7 @@ showfreqs_filter_deps="avcodec" showfreqs_filter_select="fft" showspectrum_filter_deps="avcodec" showspectrum_filter_select="rdft" +sofalizer_filter_deps="netcdf" spp_filter_deps="gpl avcodec" spp_filter_select="fft idctdsp fdctdsp me_cmp pixblockdsp" stereo3d_filter_deps="gpl" @@ -5494,6 +5497,7 @@ enabled mmal && { check_lib interface/mmal/mmal.h mmal_port_connect check_lib interface/mmal/mmal.h mmal_port_connect ; } check_lib interface/mmal/mmal.h mmal_port_connect ; } || die "ERROR: mmal not found"; } +enabled netcdf && require_pkg_config netcdf netcdf.h nc_inq_libvers enabled nvenc && { check_header nvEncodeAPI.h || die "ERROR: nvEncodeAPI.h not found."; } && { check_cpp_condition nvEncodeAPI.h "NVENCAPI_MAJOR_VERSION >= 5" || die "ERROR: NVENC API version 4 or older is not supported"; } && |