diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2025-04-02 02:03:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2025-04-03 01:58:07 +0200 |
commit | d5ad860cd8e342a4ffd7db5656f81f45ee98a0ca (patch) | |
tree | 6a6496704753dcf15d12d4f7bdb20f80097c6050 /tests/checkasm/checkasm.c | |
parent | 4aeaee1f4e9d3f8b4018c4ced47dbfd32b190e2e (diff) | |
download | ffmpeg-d5ad860cd8e342a4ffd7db5656f81f45ee98a0ca.tar.gz |
tests/checkasm/checkasm.c: Assert that aligned_w/h do not overflow
Reviewed-by: Martin Storsjö <martin@martin.st>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/checkasm/checkasm.c')
-rw-r--r-- | tests/checkasm/checkasm.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c index a5b862fe52..1cfc4feb48 100644 --- a/tests/checkasm/checkasm.c +++ b/tests/checkasm/checkasm.c @@ -58,6 +58,7 @@ #include <stdlib.h> #include <string.h> #include "checkasm.h" +#include "libavutil/avassert.h" #include "libavutil/common.h" #include "libavutil/cpu.h" #include "libavutil/intfloat.h" @@ -1189,10 +1190,12 @@ int checkasm_check_##type(const char *file, int line, \ int align_w, int align_h, \ int padding) \ { \ - int aligned_w = (w + align_w - 1) & ~(align_w - 1); \ - int aligned_h = (h + align_h - 1) & ~(align_h - 1); \ + int64_t aligned_w = (w - 1LL + align_w) & ~(align_w - 1); \ + int64_t aligned_h = (h - 1LL + align_h) & ~(align_h - 1); \ int err = 0; \ int y = 0; \ + av_assert0(aligned_w == (int32_t)aligned_w);\ + av_assert0(aligned_h == (int32_t)aligned_h);\ stride1 /= sizeof(*buf1); \ stride2 /= sizeof(*buf2); \ for (y = 0; y < h; y++) \ |