ffmpeg | branch: master | James Almer <jamr...@gmail.com> | Tue Nov 21 11:14:33 2017 -0300| [bea8eeaa2c0c97f76bdedc02a1a01296b5bcaa28] | committer: James Almer
checkasm/utvideodsp: zero initialize the entire buffer Signed-off-by: James Almer <jamr...@gmail.com> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bea8eeaa2c0c97f76bdedc02a1a01296b5bcaa28 --- 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); \ _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog