]> git.sesse.net Git - vlc/blob - include/vpar_synchro.h
Pour la plus grande joie de tous, le client compile correctement. Attention
[vlc] / include / vpar_synchro.h
1 /*****************************************************************************
2  * vpar_synchro.h : video parser blocks management
3  * (c)1999 VideoLAN
4  *****************************************************************************
5  *****************************************************************************
6  * Requires:
7  *  "config.h"
8  *  "common.h"
9  *  "mtime.h"
10  *  "vlc_thread.h"
11  *  "input.h"
12  *  "video.h"
13  *  "video_output.h"
14  *  "decoder_fifo.h"
15  *  "video_fifo.h"
16  *****************************************************************************/
17
18 /*****************************************************************************
19  * video_synchro_t : timers for the video synchro
20  *****************************************************************************/
21 typedef struct video_synchro_s
22 {
23
24 } video_synchro_t;
25
26 /*****************************************************************************
27  * Prototypes
28  *****************************************************************************/
29 boolean_t vpar_SynchroChoose( struct vpar_thread_s * p_vpar, int i_coding_type, 
30                          int i_structure );
31 void vpar_SynchroTrash( struct vpar_thread_s * p_vpar, int i_coding_type,
32                         int i_structure );
33 mtime_t vpar_SynchroDecode( struct vpar_thread_s * p_vpar, int i_coding_type,
34                             int i_structure );
35