[FFmpeg-cvslog] checkasm/blockdsp: don't randomize the buffers for fill_block_tab
James Almer
git at videolan.org
Thu May 9 03:15:59 EEST 2024
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Mon May 6 21:27:13 2024 -0300| [febd9271fc2a9e1244a9d6bbeeaa6ec3ec49a0ba] | committer: James Almer
checkasm/blockdsp: don't randomize the buffers for fill_block_tab
It ignores and overwrites the previous values.
Fixes running the test under ubsan.
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=febd9271fc2a9e1244a9d6bbeeaa6ec3ec49a0ba
---
tests/checkasm/blockdsp.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/checkasm/blockdsp.c b/tests/checkasm/blockdsp.c
index 19d69b8687..1f02d02076 100644
--- a/tests/checkasm/blockdsp.c
+++ b/tests/checkasm/blockdsp.c
@@ -71,7 +71,8 @@ static void check_fill(BlockDSPContext *h){
ptrdiff_t line_size, int h);
if (check_func(h->fill_block_tab[t], "blockdsp.%s", tests[t].name)) {
uint8_t value = rnd();
- randomize_buffers(tests[t].size);
+ memset(buf0, 0, sizeof(*buf0) * n * n);
+ memset(buf1, 0, sizeof(*buf1) * n * n);
call_ref(buf0, value, n, n);
call_new(buf1, value, n, n);
if (memcmp(buf0, buf1, sizeof(*buf0) * n * n))
More information about the ffmpeg-cvslog
mailing list