From: Gildas Bazin Date: Sat, 4 Jun 2005 11:55:40 +0000 (+0000) Subject: * include/vlc_config.h: VOUT_BOGUS_DELAY was way too low, which triggered continuous... X-Git-Tag: 0.8.4~1555 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0766abde570d775958dd84dd0bbcc620cb58aed3;p=vlc * include/vlc_config.h: VOUT_BOGUS_DELAY was way too low, which triggered continuous trashing of early pictures when seeking in some asf files. --- diff --git a/include/vlc_config.h b/include/vlc_config.h index 4ec6edb3f7..48662b28ba 100644 --- a/include/vlc_config.h +++ b/include/vlc_config.h @@ -189,7 +189,7 @@ /* Pictures which are VOUT_BOGUS_DELAY or more in advance probably have * a bogus PTS and won't be displayed */ -#define VOUT_BOGUS_DELAY ((mtime_t)(DEFAULT_PTS_DELAY * 3)) +#define VOUT_BOGUS_DELAY ((mtime_t)(DEFAULT_PTS_DELAY * 30)) /* Delay (in microseconds) before an idle screen is displayed */ #define VOUT_IDLE_DELAY (5*CLOCK_FREQ)