From 22065b4331baaae3aa00a55c7aad1ed265b50ce1 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 21 Aug 2020 21:12:32 +0200 Subject: [PATCH] Inform about NEON acceleration --- libs/ardour/globals.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc index 37069c0593..ae33ab32b3 100644 --- a/libs/ardour/globals.cc +++ b/libs/ardour/globals.cc @@ -220,6 +220,8 @@ setup_hardware_optimization (bool try_optimization) #elif defined ARM_NEON_SUPPORT /* Use NEON routines */ do { + info << "Using ARM NEON optimized routines" << endmsg; + compute_peak = arm_neon_compute_peak; find_peaks = arm_neon_find_peaks; apply_gain_to_buffer = arm_neon_apply_gain_to_buffer;