Browse Source
utilisation: c'est tout con, �a marche comme avant. pour le moment il n'y a pas de v�rification des symboles mais �a viendra. seule restriction, il faut �tre dans le r�pertoire vlc quand on lance le client, parce que le chemin des plugins est relatif, mais �a aussi �a va changer. le Makefile devient pas tr�s beau, il faudra songer � passer � automakepull/2/head
11 changed files with 173 additions and 428 deletions
@ -1,42 +0,0 @@ |
|||
/*****************************************************************************
|
|||
* audio_sys.h : header of the method-dependant functions library |
|||
* (c)1999 VideoLAN |
|||
***************************************************************************** |
|||
* Required headers: |
|||
* - "common.h" ( byte_t ) |
|||
* - "audio_output.h" ( aout_dsp_t ) |
|||
*****************************************************************************/ |
|||
|
|||
/*****************************************************************************
|
|||
* Prototypes |
|||
*****************************************************************************/ |
|||
#ifdef AUDIO_DUMMY |
|||
int aout_DummySysOpen ( aout_thread_t *p_aout ); |
|||
int aout_DummySysReset ( aout_thread_t *p_aout ); |
|||
int aout_DummySysSetFormat ( aout_thread_t *p_aout ); |
|||
int aout_DummySysSetChannels ( aout_thread_t *p_aout ); |
|||
int aout_DummySysSetRate ( aout_thread_t *p_aout ); |
|||
long aout_DummySysGetBufInfo ( aout_thread_t *p_aout, long l_buffer_info ); |
|||
void aout_DummySysPlaySamples ( aout_thread_t *p_aout, byte_t *buffer, int i_size ); |
|||
void aout_DummySysClose ( aout_thread_t *p_aout ); |
|||
#endif |
|||
#ifdef AUDIO_DSP |
|||
int aout_DspSysOpen ( aout_thread_t *p_aout ); |
|||
int aout_DspSysReset ( aout_thread_t *p_aout ); |
|||
int aout_DspSysSetFormat ( aout_thread_t *p_aout ); |
|||
int aout_DspSysSetChannels ( aout_thread_t *p_aout ); |
|||
int aout_DspSysSetRate ( aout_thread_t *p_aout ); |
|||
long aout_DspSysGetBufInfo ( aout_thread_t *p_aout, long l_buffer_info ); |
|||
void aout_DspSysPlaySamples ( aout_thread_t *p_aout, byte_t *buffer, int i_size ); |
|||
void aout_DspSysClose ( aout_thread_t *p_aout ); |
|||
#endif |
|||
#ifdef AUDIO_ESD |
|||
int aout_EsdSysOpen ( aout_thread_t *p_aout ); |
|||
int aout_EsdSysReset ( aout_thread_t *p_aout ); |
|||
int aout_EsdSysSetFormat ( aout_thread_t *p_aout ); |
|||
int aout_EsdSysSetChannels ( aout_thread_t *p_aout ); |
|||
int aout_EsdSysSetRate ( aout_thread_t *p_aout ); |
|||
long aout_EsdSysGetBufInfo ( aout_thread_t *p_aout, long l_buffer_info ); |
|||
void aout_EsdSysPlaySamples ( aout_thread_t *p_aout, byte_t *buffer, int i_size ); |
|||
void aout_EsdSysClose ( aout_thread_t *p_aout ); |
|||
#endif |
|||
@ -1,42 +0,0 @@ |
|||
/*****************************************************************************
|
|||
* intf_sys.h: system dependant interface API |
|||
* (c)1999 VideoLAN |
|||
*****************************************************************************/ |
|||
|
|||
/*****************************************************************************
|
|||
* Prototypes |
|||
*****************************************************************************/ |
|||
int intf_DummySysCreate ( p_intf_thread_t p_intf ); |
|||
void intf_DummySysDestroy ( p_intf_thread_t p_intf ); |
|||
void intf_DummySysManage ( p_intf_thread_t p_intf ); |
|||
#ifdef VIDEO_X11 |
|||
int intf_X11SysCreate ( p_intf_thread_t p_intf ); |
|||
void intf_X11SysDestroy ( p_intf_thread_t p_intf ); |
|||
void intf_X11SysManage ( p_intf_thread_t p_intf ); |
|||
#endif |
|||
#ifdef VIDEO_FB |
|||
int intf_FBSysCreate ( p_intf_thread_t p_intf ); |
|||
void intf_FBSysDestroy ( p_intf_thread_t p_intf ); |
|||
void intf_FBSysManage ( p_intf_thread_t p_intf ); |
|||
#endif |
|||
#ifdef VIDEO_GLIDE |
|||
int intf_GlideSysCreate ( p_intf_thread_t p_intf ); |
|||
void intf_GlideSysDestroy ( p_intf_thread_t p_intf ); |
|||
void intf_GlideSysManage ( p_intf_thread_t p_intf ); |
|||
#endif |
|||
#ifdef VIDEO_DGA |
|||
int intf_DGASysCreate ( p_intf_thread_t p_intf ); |
|||
void intf_DGASysDestroy ( p_intf_thread_t p_intf ); |
|||
void intf_DGASysManage ( p_intf_thread_t p_intf ); |
|||
#endif |
|||
#ifdef VIDEO_GGI |
|||
int intf_GGISysCreate ( p_intf_thread_t p_intf ); |
|||
void intf_GGISysDestroy ( p_intf_thread_t p_intf ); |
|||
void intf_GGISysManage ( p_intf_thread_t p_intf ); |
|||
#endif |
|||
#ifdef VIDEO_BEOS |
|||
int intf_BSysCreate ( p_intf_thread_t p_intf ); |
|||
void intf_BSysDestroy ( p_intf_thread_t p_intf ); |
|||
void intf_BSysManage ( p_intf_thread_t p_intf ); |
|||
#endif |
|||
|
|||
@ -1,65 +0,0 @@ |
|||
/*****************************************************************************
|
|||
* video_sys.h: system dependant video output display method API |
|||
* (c)1999 VideoLAN |
|||
*****************************************************************************/ |
|||
|
|||
/*****************************************************************************
|
|||
* Prototypes |
|||
*****************************************************************************/ |
|||
#ifdef VIDEO_DUMMY |
|||
int vout_DummySysCreate ( p_vout_thread_t p_vout, char *psz_display, int i_root_window ); |
|||
int vout_DummySysInit ( p_vout_thread_t p_vout ); |
|||
void vout_DummySysEnd ( p_vout_thread_t p_vout ); |
|||
void vout_DummySysDestroy ( p_vout_thread_t p_vout ); |
|||
int vout_DummySysManage ( p_vout_thread_t p_vout ); |
|||
void vout_DummySysDisplay ( p_vout_thread_t p_vout ); |
|||
#endif |
|||
#ifdef VIDEO_X11 |
|||
int vout_X11SysCreate ( p_vout_thread_t p_vout, char *psz_display, int i_root_window ); |
|||
int vout_X11SysInit ( p_vout_thread_t p_vout ); |
|||
void vout_X11SysEnd ( p_vout_thread_t p_vout ); |
|||
void vout_X11SysDestroy ( p_vout_thread_t p_vout ); |
|||
int vout_X11SysManage ( p_vout_thread_t p_vout ); |
|||
void vout_X11SysDisplay ( p_vout_thread_t p_vout ); |
|||
#endif |
|||
#ifdef VIDEO_FB |
|||
int vout_FBSysCreate ( p_vout_thread_t p_vout, char *psz_display, int i_root_window ); |
|||
int vout_FBSysInit ( p_vout_thread_t p_vout ); |
|||
void vout_FBSysEnd ( p_vout_thread_t p_vout ); |
|||
void vout_FBSysDestroy ( p_vout_thread_t p_vout ); |
|||
int vout_FBSysManage ( p_vout_thread_t p_vout ); |
|||
void vout_FBSysDisplay ( p_vout_thread_t p_vout ); |
|||
#endif |
|||
#ifdef VIDEO_GLIDE |
|||
int vout_GlideSysCreate ( p_vout_thread_t p_vout, char *psz_display, int i_root_window ); |
|||
int vout_GlideSysInit ( p_vout_thread_t p_vout ); |
|||
void vout_GlideSysEnd ( p_vout_thread_t p_vout ); |
|||
void vout_GlideSysDestroy ( p_vout_thread_t p_vout ); |
|||
int vout_GlideSysManage ( p_vout_thread_t p_vout ); |
|||
void vout_GlideSysDisplay ( p_vout_thread_t p_vout ); |
|||
#endif |
|||
#ifdef VIDEO_DGA |
|||
int vout_DGASysCreate ( p_vout_thread_t p_vout, char *psz_display, int i_root_window ); |
|||
int vout_DGASysInit ( p_vout_thread_t p_vout ); |
|||
void vout_DGASysEnd ( p_vout_thread_t p_vout ); |
|||
void vout_DGASysDestroy ( p_vout_thread_t p_vout ); |
|||
int vout_DGASysManage ( p_vout_thread_t p_vout ); |
|||
void vout_DGASysDisplay ( p_vout_thread_t p_vout ); |
|||
#endif |
|||
#ifdef VIDEO_GGI |
|||
int vout_GGISysCreate ( p_vout_thread_t p_vout, char *psz_display, int i_root_window ); |
|||
int vout_GGISysInit ( p_vout_thread_t p_vout ); |
|||
void vout_GGISysEnd ( p_vout_thread_t p_vout ); |
|||
void vout_GGISysDestroy ( p_vout_thread_t p_vout ); |
|||
int vout_GGISysManage ( p_vout_thread_t p_vout ); |
|||
void vout_GGISysDisplay ( p_vout_thread_t p_vout ); |
|||
#endif |
|||
#ifdef VIDEO_BEOS |
|||
int vout_BSysCreate ( p_vout_thread_t p_vout, char *psz_display, int i_root_window ); |
|||
int vout_BSysInit ( p_vout_thread_t p_vout ); |
|||
void vout_BSysEnd ( p_vout_thread_t p_vout ); |
|||
void vout_BSysDestroy ( p_vout_thread_t p_vout ); |
|||
int vout_BSysManage ( p_vout_thread_t p_vout ); |
|||
void vout_BSysDisplay ( p_vout_thread_t p_vout ); |
|||
#endif |
|||
|
|||
Loading…
Reference in new issue