Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2019-09-18 17:23:36 +0300
committerJames Almer <jamrial@gmail.com>2019-09-18 17:42:06 +0300
commit1d86e4b3ebb4905c1e08b7a8db203e19cbce10e3 (patch)
treed1beca179c94e44b8770e7777d1edf7757712999 /tests/checkasm
parent53d31e91c5302131cf0631c053d04f09b36897ee (diff)
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/checkasm')
-rw-r--r--tests/checkasm/opusdsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/opusdsp.c b/tests/checkasm/opusdsp.c
index 279a92e5c6..828ecf9ce2 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);