mirror of https://github.com/mpv-player/mpv
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:
parent
0bc7ce3b04
commit
66c4759992
|
@ -155,7 +155,8 @@ static int best_overlap_offset_s16(af_scaletempo_t* s)
|
||||||
int16_t *po, *search_start;
|
int16_t *po, *search_start;
|
||||||
int32_t best_corr = INT_MIN;
|
int32_t best_corr = INT_MIN;
|
||||||
int best_off = 0;
|
int best_off = 0;
|
||||||
int i, off;
|
int off;
|
||||||
|
long i;
|
||||||
|
|
||||||
pw = s->table_window;
|
pw = s->table_window;
|
||||||
po = s->buf_overlap;
|
po = s->buf_overlap;
|
||||||
|
|
Loading…
Reference in New Issue