[FFmpeg-devel] [PATCH] fate/checkasm/sw_gbrp: don't randomly set internal values
James Almer
jamrial at gmail.com
Mon Sep 2 03:05:02 EEST 2024
They are set by sws_init_context().
May help with signed integer overflows reported by gcc-usan.
Signed-off-by: James Almer <jamrial at gmail.com>
---
tests/checkasm/sw_gbrp.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/tests/checkasm/sw_gbrp.c b/tests/checkasm/sw_gbrp.c
index b845da32a6..d843730f3e 100644
--- a/tests/checkasm/sw_gbrp.c
+++ b/tests/checkasm/sw_gbrp.c
@@ -135,12 +135,6 @@ static void check_output_yuv2gbrp(void)
fail();
ctx->flags |= SWS_FULL_CHR_H_INT;
- ctx->yuv2rgb_y_offset = rnd();
- ctx->yuv2rgb_y_coeff = rnd();
- ctx->yuv2rgb_v2r_coeff = rnd();
- ctx->yuv2rgb_v2g_coeff = rnd();
- ctx->yuv2rgb_u2g_coeff = rnd();
- ctx->yuv2rgb_u2b_coeff = rnd();
for (fmi = 0; fmi < FF_ARRAY_ELEMS(planar_fmts); fmi++) {
for (fsi = 0; fsi < FILTER_SIZES; fsi++) {
--
2.46.0
More information about the ffmpeg-devel
mailing list