Commit 1d86e4b3 authored by James Almer's avatar James Almer

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

Fixes ticket #8175
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 53d31e91
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment