diff options
author | James Almer <jamrial@gmail.com> | 2019-09-18 11:23:36 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-09-18 11:42:06 -0300 |
commit | 1d86e4b3ebb4905c1e08b7a8db203e19cbce10e3 (patch) | |
tree | d1beca179c94e44b8770e7777d1edf7757712999 /tests | |
parent | 53d31e91c5302131cf0631c053d04f09b36897ee (diff) | |
download | ffmpeg-streaming-1d86e4b3ebb4905c1e08b7a8db203e19cbce10e3.zip ffmpeg-streaming-1d86e4b3ebb4905c1e08b7a8db203e19cbce10e3.tar.gz |
checkasm/opusdsp: declare opus_deemphasis as a function returning a float
Fixes ticket #8175
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/checkasm/opusdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/opusdsp.c b/tests/checkasm/opusdsp.c index 279a92e..828ecf9 100644 --- a/tests/checkasm/opusdsp.c +++ b/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); |