[pulseaudio-discuss] [PATCH 06/13] tests: Add ARM NEON test code to cpu-mix-test
Peter Meerwald
pmeerw at pmeerw.net
Thu Apr 24 09:50:58 PDT 2014
Signed-off-by: Peter Meerwald <pmeerw at pmeerw.net>
---
src/tests/cpu-mix-test.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/tests/cpu-mix-test.c b/src/tests/cpu-mix-test.c
index 80cde11..68077d1 100644
--- a/src/tests/cpu-mix-test.c
+++ b/src/tests/cpu-mix-test.c
@@ -181,8 +181,14 @@ START_TEST (mix_neon_test) {
pa_mix_func_init_neon(flags);
neon_func = pa_get_mix_func(PA_SAMPLE_S16NE);
- pa_log_debug("Checking NEON mix");
+ pa_log_debug("Checking NEON mix (s16, stereo)");
run_mix_test(neon_func, orig_func, 7, 2, true, true);
+
+ pa_log_debug("Checking NEON mix (s16, 4-channel)");
+ run_mix_test(neon_func, orig_func, 7, 4, true, true);
+
+ pa_log_debug("Checking NEON mix (s16, mono)");
+ run_mix_test(neon_func, orig_func, 7, 1, true, true);
}
END_TEST
#endif /* defined (__arm__) && defined (__linux__) && defined (HAVE_NEON) */
--
1.7.9.5
More information about the pulseaudio-discuss
mailing list