Commit db2b7d18 authored by Sam Hocevar's avatar Sam Hocevar

Juste une modif � la con dans video_output pour que le message "waiting

 for stream" s'affiche d�s le lancement du vlc. En m�me temps �a me
 permet de tester que la migration du CVS sur shiva a fonctionn�.
parent 3c7673b9
......@@ -106,7 +106,7 @@ void vout_SysEnd( vout_thread_t *p_vout )
/******************************************************************************
* vout_SysDestroy: destroy FB video thread output method
******************************************************************************
* Terminate an output method created by vout_FBCreateOutputMethod
* Terminate an output method created by vout_CreateOutputMethod
******************************************************************************/
void vout_SysDestroy( vout_thread_t *p_vout )
{
......
......@@ -112,6 +112,7 @@ vout_thread_t * vout_CreateThread ( char *psz_display, int i_root_
/* Initialize idle screen */
p_vout->last_display_date = mdate();
p_vout->last_display_date = 0;
p_vout->last_idle_date = 0;
#ifdef STATS
......@@ -1631,7 +1632,7 @@ static int RenderIdle( vout_thread_t *p_vout )
int i_x = 0, i_y = 0; /* text position */
int i_width, i_height; /* text size */
mtime_t current_date; /* current date */
const char *psz_text = "no stream"; /* text to display */
const char *psz_text = "waiting for stream ..."; /* text to display */
current_date = mdate();
......
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