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 E915440F9E for ; Sat, 10 Sep 2022 19:30:51 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 2474E68BB2C; Sat, 10 Sep 2022 22:30:49 +0300 (EEST) Received: from mail.overt.org (mail.overt.org [157.230.92.47]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 2BECF68B149 for ; Sat, 10 Sep 2022 22:30:43 +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 DA4EB3F6C4 for ; Sat, 10 Sep 2022 14:30:41 -0500 (CDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=overt.org; s=mail; t=1662838242; bh=30CO3dG85FEGunXGmL4gg9QxhqA8npf13jbEUZLUBt8=; h=Date:From:To:Subject:In-Reply-To:References:From; b=F4H5OfjmBCSLZNafaRG3z+hlQLtzardQuFy40XYUaEowolOah2hy2v3Mhzz9CfYpY afuIRz6RRtdvIRcFsBtINlof/UEpbLpBJLg9G4eG6OXOhfXkZpZb/7RQXex6Nf+4K0 qiwHIINKeO8HD+Ej7Klg1AVag3+kH3K5x4/AZMd0r1S3F0Bkz3Bt5lUi4LEfbDn/AE oH2wOdqqxhSzvadmn295QMLET/ySsg9KS7soqn6qC6qyPoH78dXzmgCTkiTYQz+sGI +EKovSy1HLAZulCEUxKGhuJzbu7vwwiqXKPrtMwJmf83tDf4vgf4K4Sh0Tsz90BJYO 1DgJRnGgh+jUg== Date: Sat, 10 Sep 2022 12:30:39 -0700 From: Philip Langdale To: ffmpeg-devel@ffmpeg.org Message-ID: <20220910123039.74778c12@fido7> In-Reply-To: <20220906195822.83664-1-philipl@overt.org> References: <20220906195822.83664-1-philipl@overt.org> MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH 0/4] swscale/output: Add support for new VAAPI formats 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 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: On Tue, 6 Sep 2022 12:58:18 -0700 Philip Langdale wrote: > This patch set adds output support to complement the input supported > added previously. > > As in the input changes, I did not implement BE support where the > infrastructure didn't already exist (ie: only P012 has it) because > these formats aren't expected to be used except in conjunction with > Intel VAAPI which will always be little endina. > > Philip Langdale (4): > swscale/output: add support for P012 > swscale/output: add support for XV36LE > swscale/output: add support for XV30LE > swscale/output: add support for Y210LE and Y212LE > > libswscale/output.c | 248 > +++++++++++++++++------ libswscale/utils.c | > 12 +- tests/ref/fate/filter-pixdesc-p012be | 1 + > tests/ref/fate/filter-pixdesc-p012le | 1 + > tests/ref/fate/filter-pixdesc-xv30le | 1 + > tests/ref/fate/filter-pixdesc-xv36le | 1 + > tests/ref/fate/filter-pixdesc-y210le | 1 + > tests/ref/fate/filter-pixdesc-y212le | 1 + > tests/ref/fate/filter-pixfmts-copy | 6 + > tests/ref/fate/filter-pixfmts-crop | 4 + > tests/ref/fate/filter-pixfmts-field | 6 + > tests/ref/fate/filter-pixfmts-fieldorder | 4 + > tests/ref/fate/filter-pixfmts-hflip | 4 + > tests/ref/fate/filter-pixfmts-il | 6 + > tests/ref/fate/filter-pixfmts-null | 6 + > tests/ref/fate/filter-pixfmts-pad | 1 + > tests/ref/fate/filter-pixfmts-scale | 6 + > tests/ref/fate/filter-pixfmts-transpose | 4 + > tests/ref/fate/filter-pixfmts-vflip | 6 + > 19 files changed, 254 insertions(+), 65 deletions(-) > create mode 100644 tests/ref/fate/filter-pixdesc-p012be > create mode 100644 tests/ref/fate/filter-pixdesc-p012le > create mode 100644 tests/ref/fate/filter-pixdesc-xv30le > create mode 100644 tests/ref/fate/filter-pixdesc-xv36le > create mode 100644 tests/ref/fate/filter-pixdesc-y210le > create mode 100644 tests/ref/fate/filter-pixdesc-y212le > Series pushed. Thanks. --phil _______________________________________________ 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".