diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-05-12 09:22:29 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-05-19 14:17:03 +0200 |
commit | 2156c4c300971e490b5ca463d78c87c383c2b9a2 (patch) | |
tree | 78ff5be4ac173226490eb01e0cd8a0f8cbadffcc /configure | |
parent | a1df7865039b8a7743f9067300c0b367db50a727 (diff) | |
download | ffmpeg-2156c4c300971e490b5ca463d78c87c383c2b9a2.tar.gz |
nvenc: write the VUI signal properties for HEVC
Bump the API version requirement to 6.
Based on a patch by Agatha Hu <ahu@nvidia.com>.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4667,8 +4667,8 @@ fi if enabled nvenc; then enabled cuda || check_header cuda.h || die "ERROR: cuda.h not found." 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" + check_cpp_condition nvEncodeAPI.h "NVENCAPI_MAJOR_VERSION >= 6" || + die "ERROR: NVENC API version 5 or older is not supported" fi if check_pkg_config sdl SDL_events.h SDL_PollEvent; then |