From 6bbab18df4f2adb530fed7a9f2ffef11ad3cf654 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Tue, 24 Nov 2009 23:53:34 +0200 Subject: [PATCH] Make INPUT_FSTAT_NB_READS a power of two to ease division Some instruction sets can't divide (e.g. ARM), but pretty much all of them can shift bits. --- include/vlc_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vlc_config.h b/include/vlc_config.h index ae6e7a19aa..4f27caf681 100644 --- a/include/vlc_config.h +++ b/include/vlc_config.h @@ -74,7 +74,7 @@ /* Number of read() calls needed until we check the file size through * fstat() */ -#define INPUT_FSTAT_NB_READS 10 +#define INPUT_FSTAT_NB_READS 16 /* * General limitations -- 2.39.5