diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2019-09-23 15:47:27 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2019-09-24 12:05:16 +0200 |
commit | 0eb1088960a2df96369c442f9e96d768de17e070 (patch) | |
tree | 27c1460264d6af28533778d173681e1d13e47372 | |
parent | 25273ef23aef4aa6bd4517a63bca826d4092f345 (diff) | |
download | ffmpeg-0eb1088960a2df96369c442f9e96d768de17e070.tar.gz |
avcodec/nvenc: add driver version info for SDK 9.1
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
-rw-r--r-- | libavcodec/nvenc.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c index 3fe64bba8b..316e4a3679 100644 --- a/libavcodec/nvenc.c +++ b/libavcodec/nvenc.c @@ -122,7 +122,15 @@ static int nvenc_print_error(void *log_ctx, NVENCSTATUS err, static void nvenc_print_driver_requirement(AVCodecContext *avctx, int level) { -#if NVENCAPI_CHECK_VERSION(9, 0) +#if NVENCAPI_CHECK_VERSION(9, 2) + const char *minver = "(unknown)"; +#elif NVENCAPI_CHECK_VERSION(9, 1) +# if defined(_WIN32) || defined(__CYGWIN__) + const char *minver = "436.15"; +# else + const char *minver = "435.21"; +# endif +#elif NVENCAPI_CHECK_VERSION(9, 0) # if defined(_WIN32) || defined(__CYGWIN__) const char *minver = "418.81"; # else |