Commit 05dfa21d authored by Rostislav Pehlivanov's avatar Rostislav Pehlivanov

opus_pvq: make max_den a float

Prevents int->float conversions on every loop.
Performance gain on synthetic benchmarks: 13%.
Suggested by kamedo2.
Signed-off-by: 's avatarRostislav Pehlivanov <atomnuker@gmail.com>
parent d81b3406
......@@ -381,8 +381,9 @@ static float ppp_pvq_search_c(float *X, int *y, int K, int N)
}
while (K) {
int max_idx = 0, max_den = 1, phase = FFSIGN(K);
int max_idx = 0, phase = FFSIGN(K);
float max_num = 0.0f;
float max_den = 1.0f;
y_norm += 1.0f;
for (i = 0; i < N; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment