diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2024-03-31 21:43:01 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2024-03-31 21:43:38 +0200 |
commit | c06e9e289f1e26b779ea46e435ed0ad243a2cd0d (patch) | |
tree | 1e2f7cccb5cc8a035a05ea34de9db10dd3c6776e | |
parent | 21b4708969415b9ec6d212fb35c12e4d1c28d066 (diff) | |
download | ffmpeg-c06e9e289f1e26b779ea46e435ed0ad243a2cd0d.tar.gz |
avcodec/nvenc: update minimum driver version list
-rw-r--r-- | libavcodec/nvenc.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c index d121442957..05cb148504 100644 --- a/libavcodec/nvenc.c +++ b/libavcodec/nvenc.c @@ -242,8 +242,20 @@ static void nvenc_map_preset(NvencContext *ctx) static void nvenc_print_driver_requirement(AVCodecContext *avctx, int level) { -#if NVENCAPI_CHECK_VERSION(12, 1) +#if NVENCAPI_CHECK_VERSION(12, 3) const char *minver = "(unknown)"; +#elif NVENCAPI_CHECK_VERSION(12, 2) +# if defined(_WIN32) || defined(__CYGWIN__) + const char *minver = "551.76"; +# else + const char *minver = "550.54.14"; +# endif +#elif NVENCAPI_CHECK_VERSION(12, 1) +# if defined(_WIN32) || defined(__CYGWIN__) + const char *minver = "531.61"; +# else + const char *minver = "530.41.03"; +# endif #elif NVENCAPI_CHECK_VERSION(12, 0) # if defined(_WIN32) || defined(__CYGWIN__) const char *minver = "522.25"; |