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 69DCB43CEA for ; Tue, 6 Sep 2022 19:58:40 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6842F68BB36; Tue, 6 Sep 2022 22:58:38 +0300 (EEST) Received: from mail.overt.org (mail.overt.org [157.230.92.47]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 8F64768BA9A for ; Tue, 6 Sep 2022 22:58:32 +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 BAEF03F1DD; Tue, 6 Sep 2022 14:58:30 -0500 (CDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=overt.org; s=mail; t=1662494311; bh=II7so6RFDRTHCW+A7p9ztuVIxLxapZM6JGNIC8rZ4pc=; h=From:To:Cc:Subject:Date:From; b=YpcL4MRZktgvT49RWd588wlTmY3OOUsB0u/1UUQO/BHX1gBKTL/iHiVuunO9P+cND 33lvAabYY7gW/2wE1m/J6T4HHOKnHQFzW7SVvHodjGy0/0T4pMAjFe9QcB7EvoSIaK Yuhe7PMZDg3xVVrubZXIlbIVg1pAquVpHfcT9anVviz8wsNzLGkk+EHxIewVeBdELy rxGiMaNNIVm3BgMxyF+85sSQsorirEsUyCVMD+5uPYMq1WWLe2dwFsUCE3gMjzW2V7 EXh0J6R0R/qIaKLpvOloHuoBuVGpr8h5t7t0kuqyvwel1n/+I0z6Yx/qiGDGoVRM+2 mnle54vmUvWlw== From: Philip Langdale To: ffmpeg-devel@ffmpeg.org Date: Tue, 6 Sep 2022 12:58:18 -0700 Message-Id: <20220906195822.83664-1-philipl@overt.org> MIME-Version: 1.0 Subject: [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 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: 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 -- 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".