You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
920 B
20 lines
920 B
/*******************************************************************************
|
|
* video_sys.h: system dependant video output display method API
|
|
* (c)1999 VideoLAN
|
|
*******************************************************************************/
|
|
|
|
/*******************************************************************************
|
|
* Prototypes
|
|
*******************************************************************************/
|
|
#if defined(VIDEO_X11)
|
|
int vout_SysCreate ( p_vout_thread_t p_vout, char *psz_display, Window root_window );
|
|
#elif defined(VIDEO_FB)
|
|
int vout_SysCreate ( p_vout_thread_t p_vout );
|
|
#endif
|
|
int vout_SysInit ( p_vout_thread_t p_vout );
|
|
void vout_SysEnd ( p_vout_thread_t p_vout );
|
|
void vout_SysDestroy ( p_vout_thread_t p_vout );
|
|
int vout_SysManage ( p_vout_thread_t p_vout );
|
|
void vout_SysDisplay ( p_vout_thread_t p_vout );
|
|
|
|
|
|
|