[FFmpeg-cvslog] checkasm/lpc: use fixed length to bench apply_welch_window
James Almer
git at videolan.org
Fri May 31 23:07:15 EEST 2024
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri May 31 17:06:08 2024 -0300| [0a949aacaedb7c3a503028c4c1a1067162483073] | committer: James Almer
checkasm/lpc: use fixed length to bench apply_welch_window
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0a949aacaedb7c3a503028c4c1a1067162483073
---
tests/checkasm/lpc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/checkasm/lpc.c b/tests/checkasm/lpc.c
index cdd1b02698..514a2cdb3c 100644
--- a/tests/checkasm/lpc.c
+++ b/tests/checkasm/lpc.c
@@ -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)
More information about the ffmpeg-cvslog
mailing list