diff options
author | James Almer <jamrial@gmail.com> | 2024-03-19 10:07:18 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-09-19 10:06:05 -0300 |
commit | dc11c12b6466795f5f9eb057b1aebd76bf129785 (patch) | |
tree | f334342ebbbacf71dfada0f43a9ec65af6f1b37c /configure | |
parent | df609af8e445f0c1fdf5d08a3c89b0521c529084 (diff) | |
download | ffmpeg-dc11c12b6466795f5f9eb057b1aebd76bf129785.tar.gz |
avfilter: add an LCEVC decoding filter
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -246,6 +246,7 @@ External library support: --enable-libklvanc enable Kernel Labs VANC processing [no] --enable-libkvazaar enable HEVC encoding via libkvazaar [no] --enable-liblc3 enable LC3 de/encoding via liblc3 [no] + --enable-liblcevc-dec enable LCEVC decoding via liblcevc-dec [no] --enable-liblensfun enable lensfun lens correction [no] --enable-libmodplug enable ModPlug via libmodplug [no] --enable-libmp3lame enable MP3 encoding via libmp3lame [no] @@ -1930,6 +1931,7 @@ EXTERNAL_LIBRARY_LIST=" libklvanc libkvazaar liblc3 + liblcevc_dec libmodplug libmp3lame libmysofa @@ -3893,6 +3895,7 @@ identity_filter_select="scene_sad" interlace_filter_deps="gpl" kerndeint_filter_deps="gpl" ladspa_filter_deps="ladspa libdl" +lcevc_filter_deps="liblcevc_dec" lensfun_filter_deps="liblensfun version3" libplacebo_filter_deps="libplacebo vulkan" lv2_filter_deps="lv2" @@ -6921,6 +6924,7 @@ enabled libklvanc && require libklvanc libklvanc/vanc.h klvanc_context_c enabled libkvazaar && require_pkg_config libkvazaar "kvazaar >= 2.0.0" kvazaar.h kvz_api_get enabled liblc3 && require_pkg_config liblc3 "lc3 >= 1.1.0" lc3.h lc3_hr_setup_encoder enabled liblensfun && require_pkg_config liblensfun lensfun lensfun.h lf_db_create +enabled liblcevc_dec && require_pkg_config liblcevc_dec "lcevc_dec >= 2.0.0" "LCEVC/lcevc_dec.h" LCEVC_CreateDecoder if enabled libmfx && enabled libvpl; then die "ERROR: can not use libmfx and libvpl together" |