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 ESMTP id 2DBCA43870 for ; Mon, 2 Jan 2023 23:21:53 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 284E268BCAF; Tue, 3 Jan 2023 01:21:51 +0200 (EET) Received: from mail.overt.org (unknown [72.14.183.176]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 5B2A768BC64 for ; Tue, 3 Jan 2023 01:21:45 +0200 (EET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=overt.org; s=mail; t=1672701703; bh=PCRcjsXqTYlxUAobFxR6TnTFIfHm7oGNHfN1euyf8sM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qCPas6rvlW8jejB3Bm+pcKd8jllBLOG+4nyxuormsMVurFZFGpWOaoE0J/RmPefgJ O6rXAygcog40MQtstiQ/lA3t+VxXKYTeJJ0ZeZQuVsng7ZvpytNAwk7smBBrHhx0zR 17aGudl+pX+r+FPrFAiyGq64X4jBOVsgYgpgytSt9FokrneiF8uplNathocPZ9VWMi fShLfkQaknfRmxQHg8tD0EpaPQruf41Gzt1C1GMQY4Vkh4qVGS2ETBeIExQlggdaXG Phxgqaj9LclBgTL8Z1KISU0rQsUGpy9mtRmepQ3sJY2eC78Hz+EkQCiEzD/+/pMjL/ xm09YIHKEJs2Q== Received: from authenticated-user (mail.overt.org [72.14.183.176]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.overt.org (Postfix) with ESMTPSA id 9CBD962A03; Mon, 2 Jan 2023 17:21:43 -0600 (CST) From: Philip Langdale To: ffmpeg-devel@ffmpeg.org Date: Mon, 2 Jan 2023 15:21:32 -0800 Message-Id: <20230102232133.729217-2-philipl@overt.org> In-Reply-To: <20230102232133.729217-1-philipl@overt.org> References: <20230102232133.729217-1-philipl@overt.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 1/2] lavu/hwcontext_cuda: declare support for argb/abgr/rgba/bgra 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: Philip Langdale 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: These can be useful. Signed-off-by: Philip Langdale --- libavutil/hwcontext_cuda.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavutil/hwcontext_cuda.c b/libavutil/hwcontext_cuda.c index 5ae7711c94..22eb9f5513 100644 --- a/libavutil/hwcontext_cuda.c +++ b/libavutil/hwcontext_cuda.c @@ -45,6 +45,10 @@ static const enum AVPixelFormat supported_formats[] = { AV_PIX_FMT_YUV444P16, AV_PIX_FMT_0RGB32, AV_PIX_FMT_0BGR32, + AV_PIX_FMT_ARGB, + AV_PIX_FMT_ABGR, + AV_PIX_FMT_RGBA, + AV_PIX_FMT_BGRA, #if CONFIG_VULKAN AV_PIX_FMT_VULKAN, #endif -- 2.37.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".