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 6269B4B882 for ; Thu, 30 Jan 2025 19:41:45 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 22D0C68BECE; Thu, 30 Jan 2025 21:41:42 +0200 (EET) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 02C5368B8C1 for ; Thu, 30 Jan 2025 21:41:36 +0200 (EET) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 25AC727FD2B7D; Thu, 30 Jan 2025 20:41:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1738266095; 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; bh=lrO9pdTEYjF16q5Y6zKQoFfb+ZpdlKJOE/NAxyEjxt0=; b=oM3mEJ0UwBM0tFKNo0EIxQmbHaylPybGZ5K+HZcCagnkd+iUT7JO8pQVZXsrewTby0z9ZF 7B/gnnOb4jdtEOeJwAEzA73JsPE5vM0H+/5O5fJTIdANNOAWtAYSs6SsVRu3QsdA9GYjL/ L5wH3n6rIWhRYS236F7cS4NI427hObCD17qI3zUg0EWgb1tq5M3mZCbKRCEz/mApfElCpR sPeYMM3vxvx4zyyttyyd3GiCyYDkttqJOjtfIKKIf9RZX6ij+fC/gitq9YL6CEXVdg6FK+ yFk/58v9ZC5HKpPLzfUzyCEdF0i+oZx1pTHUw9Ayteqcd0NBybPWudJfcIYLgQ== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Thu, 30 Jan 2025 20:40:37 +0100 Message-ID: <20250130194124.21836-1-timo@rothenpieler.org> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 0/9] Nvidia Video Codec 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: This series adds support for new features and capabilities added in todays release of the Video Codec SDK 13.0. Diego de Souza (7): avutil/hwcontext_cuda: add 4:2:2 pixel format support avcodec/nvdec: add 4:2:2 decoding and 10-bit support avcodec/cuviddec: add HEVC/H.264 4:2:2 and H.264 10-bit support avcodec/nvenc: add 4:2:2 encoding and H.264 10-bit support avcodec/nvenc: add UHQ to AV1 for NVENC avcodec/nvenc: add Temporal Filtering for AV1 and H.264 in NVENC avcodec/nvenc: add MV-HEVC encoding support Timo Rothenpieler (2): avcodec/nvenc: use encoder level options for qmin/qmax avcodec/nvenc: finalize SDK 13.0 support libavcodec/cuviddec.c | 83 +++++++++++++-- libavcodec/h264_slice.c | 3 + libavcodec/hevc/hevcdec.c | 6 ++ libavcodec/nvdec.c | 44 ++++++-- libavcodec/nvdec.h | 5 + libavcodec/nvdec_h264.c | 2 +- libavcodec/nvenc.c | 210 ++++++++++++++++++++++++++++++++----- libavcodec/nvenc.h | 20 ++++ libavcodec/nvenc_av1.c | 15 ++- libavcodec/nvenc_h264.c | 19 ++++ libavcodec/nvenc_hevc.c | 10 ++ libavcodec/version.h | 4 +- libavutil/hwcontext_cuda.c | 2 + 13 files changed, 373 insertions(+), 50 deletions(-) -- 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".