diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2014-02-21 11:26:40 -0500 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2014-02-24 15:50:04 +0000 |
commit | d00a504b244e136a0c82a55e21ed94659e0674ad (patch) | |
tree | 24562510e7ae4efa8512292ab9135432d43e50be /configure | |
parent | 30517a9f056c8d01b3790871db4aee95d9c176e6 (diff) | |
download | ffmpeg-d00a504b244e136a0c82a55e21ed94659e0674ad.tar.gz |
libx265: Update API usage
Framerate is now a sane rational instead of an integer, and
inputDepth is changed to what it actually is.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3982,8 +3982,8 @@ enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 & { check_cpp_condition x264.h "X264_BUILD >= 118" || die "ERROR: libx264 version must be >= 0.118."; } enabled libx265 && require_pkg_config x265 x265.h x265_encoder_encode && - { check_cpp_condition x265.h "X265_BUILD >= 5" || - die "ERROR: libx265 version must be >= 5."; } + { check_cpp_condition x265.h "X265_BUILD >= 7" || + die "ERROR: libx265 version must be >= 7."; } enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto || |