You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user