changeset 25073:21227667b70a

Use "long" instead of "int" for innermost loop variable. About 12% faster on x86_64
author reimar
date Sun, 18 Nov 2007 17:44:11 +0000
parents 6c3f9215d606
children bbdd0202c238
files libaf/af_scaletempo.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libaf/af_scaletempo.c	Sun Nov 18 17:28:27 2007 +0000
+++ b/libaf/af_scaletempo.c	Sun Nov 18 17:44:11 2007 +0000
@@ -155,7 +155,8 @@
   int16_t *po, *search_start;
   int32_t best_corr = INT_MIN;
   int best_off = 0;
-  int i, off;
+  int off;
+  long i;
 
   pw  = s->table_window;
   po  = s->buf_overlap;