[MPlayer-cvslog] r25101 - trunk/libaf/af_scaletempo.c

reimar subversion at mplayerhq.hu
Sun Nov 18 18:44:11 CET 2007


Author: reimar
Date: Sun Nov 18 18:44:11 2007
New Revision: 25101

Log:
Use "long" instead of "int" for innermost loop variable.
About 12% faster on x86_64


Modified:
   trunk/libaf/af_scaletempo.c

Modified: trunk/libaf/af_scaletempo.c
==============================================================================
--- trunk/libaf/af_scaletempo.c	(original)
+++ trunk/libaf/af_scaletempo.c	Sun Nov 18 18:44:11 2007
@@ -155,7 +155,8 @@ static int best_overlap_offset_s16(af_sc
   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;



More information about the MPlayer-cvslog mailing list