[FFmpeg-cvslog] fate/checkasm/sw_gbrp: don't randomly set internal values

James Almer git at videolan.org
Fri Sep 6 04:20:35 EEST 2024


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sun Sep  1 21:05:02 2024 -0300| [2a6f84718b172cd0858316281cbbd967f35767f0] | committer: James Almer

fate/checkasm/sw_gbrp: don't randomly set internal values

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>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2a6f84718b172cd0858316281cbbd967f35767f0
---

 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++) {



More information about the ffmpeg-cvslog mailing list