checkasm/opusdsp: declare opus_deemphasis as a function returning a float

Fixes ticket #8175

Signed-off-by: James Almer <jamrial@gmail.com>
pull/323/head
James Almer 5 years ago
parent 53d31e91c5
commit 1d86e4b3eb
  1. 2
      tests/checkasm/opusdsp.c

@ -67,7 +67,7 @@ static void test_deemphasis(void)
LOCAL_ALIGNED(16, float, dst1, [FFALIGN(MAX_SIZE, 4)]);
float coeff0 = (float)rnd() / (UINT_MAX >> 5) - 16.0f, coeff1 = coeff0;
declare_func(float, float *out, float *in, float coeff, int len);
declare_func_float(float, float *out, float *in, float coeff, int len);
randomize_float(src, MAX_SIZE);

Loading…
Cancel
Save