mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
checkasm: use declare_func_float() in sbrdsp sum_square test
The function returns a float. This fixes the test in x86_32 targets. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
bcbe9e4447
commit
3d3243577c
@ -52,7 +52,7 @@ static void test_sum_square(void)
|
||||
INTFLOAT res1;
|
||||
LOCAL_ALIGNED_16(INTFLOAT, src, [256], [2]);
|
||||
|
||||
declare_func(INTFLOAT, INTFLOAT (*x)[2], int n);
|
||||
declare_func_float(INTFLOAT, INTFLOAT (*x)[2], int n);
|
||||
|
||||
randomize((INTFLOAT *)src, 256 * 2);
|
||||
res0 = call_ref(src, 256);
|
||||
|
Loading…
x
Reference in New Issue
Block a user