[FFmpeg-cvslog] avcodec/nvenc: finalize SDK 13.0 support
Timo Rothenpieler
git at videolan.org
Sun Feb 2 21:04:22 EET 2025
ffmpeg | branch: master | Timo Rothenpieler <timo at rothenpieler.org> | Thu Jan 30 20:37:00 2025 +0100| [b37606e56220e3a0c936d46de4f08cef07aec767] | committer: Timo Rothenpieler
avcodec/nvenc: finalize SDK 13.0 support
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b37606e56220e3a0c936d46de4f08cef07aec767
---
libavcodec/nvenc.c | 4 +++-
libavcodec/version.h | 4 ++--
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c
index fc8678cdfe..c52e47734e 100644
--- a/libavcodec/nvenc.c
+++ b/libavcodec/nvenc.c
@@ -253,8 +253,10 @@ static void nvenc_map_preset(NvencContext *ctx)
static void nvenc_print_driver_requirement(AVCodecContext *avctx, int level)
{
-#if NVENCAPI_CHECK_VERSION(12, 3)
+#if NVENCAPI_CHECK_VERSION(13, 1)
const char *minver = "(unknown)";
+#elif NVENCAPI_CHECK_VERSION(13, 0)
+ const char *minver = "570.0";
#elif NVENCAPI_CHECK_VERSION(12, 2)
# if defined(_WIN32) || defined(__CYGWIN__)
const char *minver = "551.76";
diff --git a/libavcodec/version.h b/libavcodec/version.h
index 1030154c0e..56dbb9238d 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -29,8 +29,8 @@
#include "version_major.h"
-#define LIBAVCODEC_VERSION_MINOR 31
-#define LIBAVCODEC_VERSION_MICRO 101
+#define LIBAVCODEC_VERSION_MINOR 32
+#define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
More information about the ffmpeg-cvslog
mailing list