Commit e8b65bdc authored by Rémi Duraffort's avatar Rémi Duraffort

Fix compilation: too short delay.

parent 0fbf5615
...@@ -550,7 +550,7 @@ vcdplayer_pbc_nav ( access_t * p_access, uint8_t *wait_time ) ...@@ -550,7 +550,7 @@ vcdplayer_pbc_nav ( access_t * p_access, uint8_t *wait_time )
return READ_BLOCK; return READ_BLOCK;
} else if (p_vcdplayer->i_still) { } else if (p_vcdplayer->i_still) {
/* Hack: Just go back and do still again */ /* Hack: Just go back and do still again */
msleep(1000); msleep(10000);
return READ_STILL_FRAME; return READ_STILL_FRAME;
} }
} }
......
...@@ -176,7 +176,7 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, ...@@ -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 /* Wait a tad so the meta has been fetched
* FIXME that's awfully wrong */ * FIXME that's awfully wrong */
msleep( 1000*4 ); msleep( 10000 );
/* Playing something ... */ /* Playing something ... */
input_item_t *p_input_item = input_GetItem( p_input ); input_item_t *p_input_item = input_GetItem( p_input );
......
...@@ -318,7 +318,7 @@ static void* Thread( vlc_object_t *p_this ) ...@@ -318,7 +318,7 @@ static void* Thread( vlc_object_t *p_this )
vlc_mutex_unlock( &p_thread->lock ); vlc_mutex_unlock( &p_thread->lock );
/* TODO: use a fps limiter */ /* TODO: use a fps limiter */
msleep( 1000 ); msleep( 10000 );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment