From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 4A48D4B835 for ; Thu, 30 Jan 2025 19:43:35 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1077468C1CA; Thu, 30 Jan 2025 21:41:56 +0200 (EET) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 4326068C121 for ; Thu, 30 Jan 2025 21:41:42 +0200 (EET) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 64361296C1115; Thu, 30 Jan 2025 20:41:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1738266098; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ijpnkx1t8me3WuawVVu7JZQ5fL8NZRThiMyymdYtHM8=; b=FbBXsDc0vdx5NzoaJzpF5bJCMj+XGBkr/kH752aZf/MCgjLGIpGDpJmoix1AJOWiPfBMho IE3vW4XNFq5zAOujPPRB72wbaeNoDh9w5Rc2esOleIwQrsZCkaVcr7YiF2zWP55MfxD63u uUHan5HZNtOGMrlpgKLb38Ysa6pd43VXBHkr5uYJu45EmLbsHEyfiEm0a+k8/k6mHNujzC IcxL7SpAhYm3oYYoKRe5kJ90JvKb7wAggicRno2NDCuE7buwPDLh2vIEb7v5oXHyuvx/dw MyLbTLt6au5rvSXw7thmx5N91V73ueAJg8lApOYSB9jmLDtWs5XGqKt/+hYhOQ== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Thu, 30 Jan 2025 20:40:46 +0100 Message-ID: <20250130194124.21836-10-timo@rothenpieler.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20250130194124.21836-1-timo@rothenpieler.org> References: <20250130194124.21836-1-timo@rothenpieler.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 9/9] avcodec/nvenc: finalize SDK 13.0 support X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Timo Rothenpieler Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- 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 a5c507150c..eb813ba32e 100644 --- a/libavcodec/nvenc.c +++ b/libavcodec/nvenc.c @@ -254,8 +254,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, \ -- 2.45.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".