From: RĂ©mi Duraffort Date: Tue, 25 Aug 2009 18:23:27 +0000 (+0200) Subject: Fix compilation: too short delay. X-Git-Tag: 1.1.0-ff~3909 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=e8b65bdcadd4a132e3d9636753970571f8c56f7d;p=vlc Fix compilation: too short delay. --- diff --git a/modules/access/vcdx/vcdplayer.c b/modules/access/vcdx/vcdplayer.c index 8efe2aef1b..317e9bdf76 100644 --- a/modules/access/vcdx/vcdplayer.c +++ b/modules/access/vcdx/vcdplayer.c @@ -550,7 +550,7 @@ vcdplayer_pbc_nav ( access_t * p_access, uint8_t *wait_time ) return READ_BLOCK; } else if (p_vcdplayer->i_still) { /* Hack: Just go back and do still again */ - msleep(1000); + msleep(10000); return READ_STILL_FRAME; } } diff --git a/modules/misc/notify/notify.c b/modules/misc/notify/notify.c index 4ed866a969..1bbcc2073e 100644 --- a/modules/misc/notify/notify.c +++ b/modules/misc/notify/notify.c @@ -176,7 +176,7 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, /* Wait a tad so the meta has been fetched * FIXME that's awfully wrong */ - msleep( 1000*4 ); + msleep( 10000 ); /* Playing something ... */ input_item_t *p_input_item = input_GetItem( p_input ); diff --git a/modules/visualization/projectm.cpp b/modules/visualization/projectm.cpp index 21e0c70bf4..2af13a8875 100644 --- a/modules/visualization/projectm.cpp +++ b/modules/visualization/projectm.cpp @@ -318,7 +318,7 @@ static void* Thread( vlc_object_t *p_this ) vlc_mutex_unlock( &p_thread->lock ); /* TODO: use a fps limiter */ - msleep( 1000 ); + msleep( 10000 ); }