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 6CD094869D for ; Wed, 14 Feb 2024 22:07:09 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 162C768D228; Thu, 15 Feb 2024 00:06:44 +0200 (EET) Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 260CC68D218 for ; Thu, 15 Feb 2024 00:06:35 +0200 (EET) Received: by mail.gandi.net (Postfix) with ESMTPSA id 88050C0002 for ; Wed, 14 Feb 2024 22:06:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1707948394; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:in-reply-to:in-reply-to:references:references; bh=NVtwuTe7UaZLsaWlRQMLthnQTVIsSg6STm9pNBZFXNg=; b=Y1hu1j9qlHJMJfUf0WcioCSoobbGlRAnE+ie+HanyrBznNwvCs9EnYO/sTndr37ZUkBWaO 3eoJBe6QaZ8OQUlWL8OlUONfx0IYgMh1T9zc3ZowBVo77fmwJN+H0IIXFAhAwzr0YWlObJ G+hEpJPNOmWux+f2JL7U59yoWEWCPAHepXxcOEi4rAUFBEe/bN0LeJ3txfvzLP54KMawIP JYv98GBkS9NOucUnUGTNtbnODbxadJCz9FUrp5pYzmGDFxZMI0DDYfJOcNNJofaK4HqHT1 RhCLKoXv4+Ks384wd0igHsa1jWPSZiFV//NGwLlpdhn1DunOcOufQV42b1VMQA== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Wed, 14 Feb 2024 23:06:28 +0100 Message-Id: <20240214220631.9641-4-michael@niedermayer.cc> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20240214220631.9641-1-michael@niedermayer.cc> References: <20240214220631.9641-1-michael@niedermayer.cc> X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 4/7] swscale/tests/swscale: Test a wider range of flag combinations 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 MIME-Version: 1.0 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: Signed-off-by: Michael Niedermayer --- libswscale/tests/swscale.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libswscale/tests/swscale.c b/libswscale/tests/swscale.c index facdbbae481..07d0af4377e 100644 --- a/libswscale/tests/swscale.c +++ b/libswscale/tests/swscale.c @@ -296,8 +296,10 @@ static void selfTest(const uint8_t * const ref[4], int refStride[4], enum AVPixelFormat srcFormat_in, enum AVPixelFormat dstFormat_in) { - const int flags[] = { SWS_FAST_BILINEAR, SWS_BILINEAR, SWS_BICUBIC, - SWS_X, SWS_POINT, SWS_AREA, 0 }; + const int flags[] = { SWS_FAST_BILINEAR, + SWS_BILINEAR, SWS_BICUBIC, + SWS_X|SWS_BITEXACT , SWS_POINT , SWS_AREA|SWS_ACCURATE_RND, + SWS_BICUBIC|SWS_FULL_CHR_H_INT|SWS_FULL_CHR_H_INP, 0}; const int srcW = w; const int srcH = h; const int dstW[] = { srcW - srcW / 3, srcW, srcW + srcW / 3, 0 }; -- 2.17.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".