checkasm/lpc: use fixed length to bench apply_welch_window

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-05-31 17:06:08 -03:00
parent 16132a810d
commit 0a949aacae

View File

@ -55,7 +55,7 @@ static void test_window(int len)
}
}
bench_new(src, len, dst1);
bench_new(src, 4608 + (len & 1), dst1);
}
static void test_compute_autocorr(ptrdiff_t len, int lag)