]> git.sesse.net Git - vlc/blob - include/video_sys.h
D�but du changement de chaine.
[vlc] / include / video_sys.h
1 /*******************************************************************************
2  * video_sys.h: system dependant video output display method API
3  * (c)1999 VideoLAN
4  *******************************************************************************/
5
6 /*******************************************************************************
7  * Prototypes
8  *******************************************************************************/
9 int          vout_SysCreate     ( p_vout_thread_t p_vout, char *psz_display, int i_root_window );
10 int          vout_SysInit       ( p_vout_thread_t p_vout );
11 void         vout_SysEnd        ( p_vout_thread_t p_vout );
12 void         vout_SysDestroy    ( p_vout_thread_t p_vout );
13 int          vout_SysManage     ( p_vout_thread_t p_vout );
14 void         vout_SysDisplay    ( p_vout_thread_t p_vout );
15 void *       vout_SysGetPicture ( p_vout_thread_t p_vout );
16 void         vout_SysPrint      ( p_vout_thread_t p_vout, int i_x, int i_y, 
17                                   int i_halign, int i_valign,  
18                                   unsigned char *psz_text );
19
20
21