diff options
author | Niklas Haas <git@haasn.dev> | 2024-04-09 15:09:40 +0200 |
---|---|---|
committer | Niklas Haas <git@haasn.dev> | 2024-05-02 12:12:49 +0200 |
commit | 71669f2ad54d92a40dc2748cd5bd6ca4c8651231 (patch) | |
tree | 63604dd58229d866fc9c3205dbee8a997e521ab8 /configure | |
parent | 476688095f5f5ecb4e3b1d77f96eecf7de7e3c3c (diff) | |
download | ffmpeg-71669f2ad54d92a40dc2748cd5bd6ca4c8651231.tar.gz |
avcodec/libx264: bump minimum required version to 155
This version is seven years old, and present in Debian oldoldstable,
Ubuntu 20.04 and Leap 15.0.
Allows cleaning up the file substantially. In particular, this is
motivated by the desire to stop relying on init_static_data.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7015,7 +7015,7 @@ enabled libwebp && { enabled libwebp_encoder && require_pkg_config libwebp "libwebp >= 0.2.0" webp/encode.h WebPGetEncoderVersion enabled libwebp_anim_encoder && check_pkg_config libwebp_anim_encoder "libwebpmux >= 0.4.0" webp/mux.h WebPAnimEncoderOptionsInit; } enabled libx264 && require_pkg_config libx264 x264 "stdint.h x264.h" x264_encoder_encode && - require_cpp_condition libx264 x264.h "X264_BUILD >= 122" && { + require_cpp_condition libx264 x264.h "X264_BUILD >= 155" && { [ "$toolchain" != "msvc" ] || require_cpp_condition libx264 x264.h "X264_BUILD >= 158"; } && check_cpp_condition libx264_hdr10 x264.h "X264_BUILD >= 163" && |