From 20e6195c54106203e79cb0aa148561b4d469b115 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Fri, 10 Nov 2023 21:17:43 +0200 Subject: [PATCH] checkasm: test the noise case of sbrdsp.hf_apply_noise The tested functions treat s_m[i] == 0 as a special case. Other than that, the functions are slightly complicated vector additions. This actually makes the zero case happen pseudorandomly. --- tests/checkasm/sbrdsp.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/checkasm/sbrdsp.c b/tests/checkasm/sbrdsp.c index 5cc3b33215..d6c10853af 100644 --- a/tests/checkasm/sbrdsp.c +++ b/tests/checkasm/sbrdsp.c @@ -233,7 +233,10 @@ static void test_hf_apply_noise(const SBRDSPContext *sbrdsp) int kx, int m_max); randomize((INTFLOAT *)ref, 128 * 2); - randomize((INTFLOAT *)s_m, 128); + + for (int i = 0; i < 128; i++) + s_m[i] = (rnd() & 1) ? ((INTFLOAT)rnd() / UINT_MAX) : (INTFLOAT)0; + randomize((INTFLOAT *)q_filt, 128); for (i = 0; i < 4; i++) {