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 69F6943C44 for ; Sat, 23 Jul 2022 18:53:44 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3B10068B777; Sat, 23 Jul 2022 21:53:40 +0300 (EEST) Received: from mail.overt.org (mail.overt.org [157.230.92.47]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3B67068B4DC for ; Sat, 23 Jul 2022 21:53:33 +0300 (EEST) Received: from authenticated-user (mail.overt.org [157.230.92.47]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by mail.overt.org (Postfix) with ESMTPSA id C85413F6BA; Sat, 23 Jul 2022 13:53:31 -0500 (CDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=overt.org; s=mail; t=1658602412; bh=MnIIbktkd56AdYNlwQJDksFpz82KONlRJY+3PtKKuKo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FqeGOtUBnu9j0OX+3v1YsYQS2fTJA2LprVILLaY9naF586x+o4J5hwfDQ5KFz0rqU 1CuhfcJ7LPD/nk7/pzKHUOBObxdLcLQVnP7uHUTpDTBN60R047v/0NvbO/lMHhdyRG tFX2EpetHa8NDInvk6u7A9om9kwuhUjNRnz4Wompbr4ns/LmINF0SzSWgkHVLEVdGy CNoIlyks04rPFnxmP5BZs8YnHYvowbtC+Jc98jhRN8SSDWhlY9QjhfNQIYR6+8vxvV f1E5IKRjGZ/XMU0mK47zOZkOrA8RNdEHTgULvHDC3mJkkkzr4SlcQJNF/GDN9DTkHW 410gVSOwyYknQ== From: Philip Langdale To: ffmpeg-devel@ffmpeg.org Date: Sat, 23 Jul 2022 11:53:14 -0700 Message-Id: <20220723185315.207081-3-philipl@overt.org> In-Reply-To: <20220723185315.207081-1-philipl@overt.org> References: <20220723185315.207081-1-philipl@overt.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 2/3] lavu/hwcontext_vaapi: Map the AYUV format 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: Mark Thompson , 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: This is the format used by Intel VAAPI for 8bit 4:4:4 content. --- libavutil/hwcontext_vaapi.c | 1 + libavutil/version.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libavutil/hwcontext_vaapi.c b/libavutil/hwcontext_vaapi.c index c3a98bc4b1..2ee5145727 100644 --- a/libavutil/hwcontext_vaapi.c +++ b/libavutil/hwcontext_vaapi.c @@ -125,6 +125,7 @@ static const VAAPIFormatDescriptor vaapi_format_map[] = { MAP(411P, YUV411, YUV411P, 0), MAP(422V, YUV422, YUV440P, 0), MAP(444P, YUV444, YUV444P, 0), + MAP(AYUV, YUV444, VUYA, 0), MAP(Y800, YUV400, GRAY8, 0), #ifdef VA_FOURCC_P010 MAP(P010, YUV420_10BPP, P010, 0), diff --git a/libavutil/version.h b/libavutil/version.h index e9eefcdb2c..21f11f3d6b 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -80,7 +80,7 @@ #define LIBAVUTIL_VERSION_MAJOR 57 #define LIBAVUTIL_VERSION_MINOR 31 -#define LIBAVUTIL_VERSION_MICRO 100 +#define LIBAVUTIL_VERSION_MICRO 101 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ LIBAVUTIL_VERSION_MINOR, \ -- 2.34.1 _______________________________________________ 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".