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 4C1E34ABCB for ; Tue, 14 May 2024 19:48:30 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 76DDF68D735; Tue, 14 May 2024 22:48:28 +0300 (EEST) Received: from iq.passwd.hu (iq.passwd.hu [217.27.212.140]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id EE18168D3D0 for ; Tue, 14 May 2024 22:48:21 +0300 (EEST) Received: from localhost (localhost [127.0.0.1]) by iq.passwd.hu (Postfix) with ESMTP id C1183EA6CE for ; Tue, 14 May 2024 21:48:21 +0200 (CEST) X-Virus-Scanned: amavisd-new at passwd.hu Received: from iq.passwd.hu ([127.0.0.1]) by localhost (iq.passwd.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 46lbK7qxHmTi for ; Tue, 14 May 2024 21:48:19 +0200 (CEST) Received: from iq (iq [217.27.212.140]) by iq.passwd.hu (Postfix) with ESMTPS id 36059EA61F for ; Tue, 14 May 2024 21:48:19 +0200 (CEST) Date: Tue, 14 May 2024 21:48:19 +0200 (CEST) From: Marton Balint To: FFmpeg development discussions and patches In-Reply-To: Message-ID: References: MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH 09/10] tests/checkasm/vf_blend: Add missing function parameter 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-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On Mon, 13 May 2024, Andreas Rheinhardt wrote: > Forgotten in 5b8faaad6c71bbb90951ca1642391e11cf6f5f91. > > Signed-off-by: Andreas Rheinhardt > --- > tests/checkasm/vf_blend.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/tests/checkasm/vf_blend.c b/tests/checkasm/vf_blend.c > index b5a96ee4bc..5ebfc11fed 100644 > --- a/tests/checkasm/vf_blend.c > +++ b/tests/checkasm/vf_blend.c > @@ -68,7 +68,7 @@ > const uint8_t *bottom, ptrdiff_t bottom_linesize, \ > uint8_t *dst, ptrdiff_t dst_linesize, \ > ptrdiff_t width, ptrdiff_t height, \ > - struct FilterParams *param, double *values); \ > + struct FilterParams *param, double *values, int starty); \ You are going to need to adjust the parameters after the vf_blend patch I just pushed. Thanks, Marton > w = WIDTH / depth; \ > \ > for (i = 0; i < BUF_UNITS - 1; i++) { \ > @@ -76,14 +76,14 @@ > int dst_offset = i * SIZE_PER_UNIT; /* dst must be aligned */ \ > randomize_buffers(); \ > call_ref(top1 + src_offset, w, bot1 + src_offset, w, \ > - dst1 + dst_offset, w, w, HEIGHT, ¶m, NULL); \ > + dst1 + dst_offset, w, w, HEIGHT, ¶m, NULL, 0); \ > call_new(top2 + src_offset, w, bot2 + src_offset, w, \ > - dst2 + dst_offset, w, w, HEIGHT, ¶m, NULL); \ > + dst2 + dst_offset, w, w, HEIGHT, ¶m, NULL, 0); \ > if (memcmp(top1, top2, BUF_SIZE) || memcmp(bot1, bot2, BUF_SIZE) || memcmp(dst1, dst2, BUF_SIZE)) \ > fail(); \ > } \ > bench_new(top2, w / 4, bot2, w / 4, dst2, w / 4, \ > - w / 4, HEIGHT / 4, ¶m, NULL); \ > + w / 4, HEIGHT / 4, ¶m, NULL, 0); \ > } while (0) > > void checkasm_check_blend(void) > -- > 2.40.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". > _______________________________________________ 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".