diff options
author | James Almer <jamrial@gmail.com> | 2017-11-24 22:48:24 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-25 12:43:09 -0300 |
commit | 4af050c46e2a77fa86894cea5ba2d5f1d3e1f5ea (patch) | |
tree | 6b9f27d39ebc0f383cd2315ac073f2358ceaf73c | |
parent | 89216895757c3dad40379eae939419bb2e736d9d (diff) | |
download | ffmpeg-4af050c46e2a77fa86894cea5ba2d5f1d3e1f5ea.tar.gz |
configure: remove superfluous cuvid and nvdec checks
Both are autodetected, and their dependency on cuda is checked
elsewhere.
Fixes ticket #6849.
Reviewed-by: Philip Langdale <philipl@overt.org>
Signed-off-by: James Almer <jamrial@gmail.com>
-rwxr-xr-x | configure | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -5816,10 +5816,6 @@ done # these are off by default, so fail if requested and not available enabled cuda_sdk && require cuda_sdk cuda.h cuCtxCreate -lcuda -enabled cuvid && { enabled cuda || - die "ERROR: CUVID requires CUDA"; } -enabled nvdec && { enabled cuda || - die "ERROR: NVDEC hwaccel requires CUDA"; } enabled chromaprint && require chromaprint chromaprint.h chromaprint_get_version -lchromaprint enabled decklink && { require_header DeckLinkAPI.h && { check_cpp_condition DeckLinkAPIVersion.h "BLACKMAGIC_DECKLINK_API_VERSION >= 0x0a060100" || die "ERROR: Decklink API version must be >= 10.6.1."; } } |