diff options
author | Alessandro Ghedini <alessandro@ghedini.me> | 2014-04-29 18:53:16 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-05-01 08:00:30 +0200 |
commit | 1c0210c7981b6a61043d9171f506b435ff5a1f5e (patch) | |
tree | e18e12473c547d02ec3537d160514c6548dc0857 /configure | |
parent | eb3b5501e8b85bfea09d533314cb6920efc42639 (diff) | |
download | ffmpeg-1c0210c7981b6a61043d9171f506b435ff5a1f5e.tar.gz |
lavfi: add Bauer stereo-to-binaural audio filter
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -178,6 +178,7 @@ External library support: --enable-bzlib enable bzlib [autodetect] --enable-frei0r enable frei0r video filtering --enable-gnutls enable gnutls [no] + --enable-libbs2b enable bs2b DSP library [no] --enable-libcdio enable audio CD grabbing with libcdio --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394 and libraw1394 [no] @@ -1124,6 +1125,7 @@ EXTERNAL_LIBRARY_LIST=" bzlib frei0r gnutls + libbs2b libcdio libdc1394 libfaac @@ -2085,6 +2087,7 @@ unix_protocol_select="network" # filters blackframe_filter_deps="gpl" boxblur_filter_deps="gpl" +bs2b_filter_deps="libbs2b" cropdetect_filter_deps="gpl" delogo_filter_deps="gpl" drawtext_filter_deps="libfreetype" @@ -4027,6 +4030,7 @@ enabled avisynth && { { check_header "avisynth/avisynth_c.h" && check_l die "ERROR: LoadLibrary/dlopen not found, or avisynth header not found"; } enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; } enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init +enabled libbs2b && require_pkg_config libbs2b bs2b.h bs2b_open enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac enabled libfontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit |