diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2019-09-24 12:00:00 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2019-09-24 12:00:00 +0200 |
commit | 89cbbe9f70fc0ebe3f7227f939aa8e5841e6d218 (patch) | |
tree | 0e51a0f445607cb68219116c40f9845b80f5fe30 /libavcodec | |
parent | a214c17414bd453086aa2b530af300bd2087052b (diff) | |
download | ffmpeg-89cbbe9f70fc0ebe3f7227f939aa8e5841e6d218.tar.gz |
avcodec/nvenc: fix typo in new Windows driver version
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/nvenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c index 87f22b32fa..316e4a3679 100644 --- a/libavcodec/nvenc.c +++ b/libavcodec/nvenc.c @@ -126,7 +126,7 @@ static void nvenc_print_driver_requirement(AVCodecContext *avctx, int level) const char *minver = "(unknown)"; #elif NVENCAPI_CHECK_VERSION(9, 1) # if defined(_WIN32) || defined(__CYGWIN__) - const char *minver = "435.15"; + const char *minver = "436.15"; # else const char *minver = "435.21"; # endif |