Use "long" instead of "int" for innermost loop variable.

About 12% faster on x86_64


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25101 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-11-18 17:44:11 +00:00
parent 0bc7ce3b04
commit 66c4759992
1 changed files with 2 additions and 1 deletions

View File

@ -155,7 +155,8 @@ static int best_overlap_offset_s16(af_scaletempo_t* s)
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;