[FFmpeg-cvslog] checkasm/opusdsp: declare opus_deemphasis as a function returning a float
James Almer
git at videolan.org
Wed Sep 18 17:42:44 EEST 2019
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Wed Sep 18 11:23:36 2019 -0300| [1d86e4b3ebb4905c1e08b7a8db203e19cbce10e3] | committer: James Almer
checkasm/opusdsp: declare opus_deemphasis as a function returning a float
Fixes ticket #8175
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1d86e4b3ebb4905c1e08b7a8db203e19cbce10e3
---
tests/checkasm/opusdsp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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);
More information about the ffmpeg-cvslog
mailing list