From bea8eeaa2c0c97f76bdedc02a1a01296b5bcaa28 Mon Sep 17 00:00:00 2001 From: James Almer Date: Tue, 21 Nov 2017 11:14:33 -0300 Subject: [PATCH] checkasm/utvideodsp: zero initialize the entire buffer Signed-off-by: James Almer --- tests/checkasm/utvideodsp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/checkasm/utvideodsp.c b/tests/checkasm/utvideodsp.c index e811f523e5..618706a6e3 100644 --- a/tests/checkasm/utvideodsp.c +++ b/tests/checkasm/utvideodsp.c @@ -63,9 +63,9 @@ LOCAL_ALIGNED_32(type, src_b1, [BUFFER_SIZE]); \ declare_func(void, type *src_r, type *src_g, type *src_b, \ ptrdiff_t linesize_r, ptrdiff_t linesize_g, \ ptrdiff_t linesize_b, int width, int height); \ -memset(src_r0, 0, BUFFER_SIZE); \ -memset(src_g0, 0, BUFFER_SIZE); \ -memset(src_b0, 0, BUFFER_SIZE); \ +memset(src_r0, 0, BUFFER_SIZE * sizeof(type)); \ +memset(src_g0, 0, BUFFER_SIZE * sizeof(type)); \ +memset(src_b0, 0, BUFFER_SIZE * sizeof(type)); \ randomize_plane(src_r0, type); \ randomize_plane(src_g0, type); \ randomize_plane(src_b0, type); \