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

Fixes ticket #8175

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2019-09-18 11:23:36 -03:00
parent 53d31e91c5
commit 1d86e4b3eb
1 changed files with 1 additions and 1 deletions

View File

@ -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);