From 1a9232196599aa1b75ca128cad540d1280de69e3 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Tue, 29 Apr 2003 20:29:19 +0000 Subject: [PATCH] * vlc_config.h: increased AOUT_PTS_TOLERANCE to 40ms, it avoids a lot of resampling with some files while keeping good synchronisation. Anybody has an idea of the maximum desynchronisation between audio and video that still be imperceptible ? --- 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 5e2395ce90..693d4b3bb9 100644 --- a/include/vlc_config.h +++ b/include/vlc_config.h @@ -158,7 +158,7 @@ /* Max acceptable delay between the coded PTS and the actual presentation * time, without resampling */ -#define AOUT_PTS_TOLERANCE (mtime_t)(.02*CLOCK_FREQ) +#define AOUT_PTS_TOLERANCE (mtime_t)(.04*CLOCK_FREQ) /* Max acceptable resampling (in %) */ #define AOUT_MAX_RESAMPLING 10 -- 2.39.2