]> git.sesse.net Git - vlc/commitdiff
* vlc_config.h: increased AOUT_PTS_TOLERANCE to 40ms, it avoids a lot of
authorLaurent Aimar <fenrir@videolan.org>
Tue, 29 Apr 2003 20:29:19 +0000 (20:29 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 29 Apr 2003 20:29:19 +0000 (20:29 +0000)
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

index 5e2395ce90ee992d444babe4b1023d992e410956..693d4b3bb9f57a46d15d15cbeced20929935afab 100644 (file)
 
 /* 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