]> git.sesse.net Git - vlc/blob - include/video_decoder.h
giclage de ces putains de .old et .new qu'� chaque commit je me plante
[vlc] / include / video_decoder.h
1 /*****************************************************************************
2  * video_decoder.h : video decoder thread
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  *****************************************************************************/
16
17 /*****************************************************************************
18  * vdec_thread_t: video decoder thread descriptor
19  *****************************************************************************
20  * ??
21  *****************************************************************************/
22 typedef struct vdec_thread_s
23 {
24     /* Thread properties and locks */
25     boolean_t           b_die;                                 /* `die' flag */
26     boolean_t           b_run;                                 /* `run' flag */
27     boolean_t           b_error;                             /* `error' flag */
28     boolean_t           b_active;                           /* `active' flag */
29     vlc_thread_t        thread_id;                /* id for thread functions */
30
31     /* Thread configuration */
32     /* ?? */
33  /*??*/
34 //    int *pi_status;
35
36 #ifdef OLD_DECODER
37     /* Input properties */
38     decoder_fifo_t      fifo;                              /* PES input fifo */
39
40     /* The bit stream structure handles the PES stream at the bit level */
41     bit_stream_t        bit_stream;
42
43     /* Output properties */
44     vout_thread_t *     p_vout;                       /* video output thread */
45     int                 i_stream;                         /* video stream id */
46 #else
47     /* idct iformations */
48     dctelem_t              p_pre_idct[64*64];
49
50     /* Input properties */
51     struct vpar_thread_s *    p_vpar;                 /* video_parser thread */
52
53     /* Lookup tables */
54 //#ifdef MPEG2_COMPLIANT
55     u8              pi_crop_buf[VDEC_CROPRANGE];
56     u8 *            pi_crop;
57 //#endif
58 #endif
59         
60 #ifdef STATS
61     /* Statistics */
62     count_t         c_loops;                              /* number of loops */
63     count_t         c_idle_loops;                    /* number of idle loops */
64 #ifdef OLD_DECODER
65     count_t         c_pictures;                   /* number of pictures read */
66     count_t         c_i_pictures;               /* number of I pictures read */
67     count_t         c_p_pictures;               /* number of P pictures read */
68     count_t         c_b_pictures;               /* number of B pictures read */    
69 #endif
70     count_t         c_decoded_pictures;        /* number of pictures decoded */
71     count_t         c_decoded_i_pictures;    /* number of I pictures decoded */
72     count_t         c_decoded_p_pictures;    /* number of P pictures decoded */
73     count_t         c_decoded_b_pictures;    /* number of B pictures decoded */
74 #endif
75 } vdec_thread_t;
76
77 /*****************************************************************************
78  * Function pointers
79  *****************************************************************************/
80 #ifndef OLD_DECODER
81 typedef void (*f_addb_t)( vdec_thread_t *, dctelem_t*, yuv_data_t*, int );
82 #endif
83
84 /*****************************************************************************
85  * Prototypes
86  *****************************************************************************/
87 #ifndef OLD_DECODER
88 struct vpar_thread_s;
89 #endif
90
91 /* Thread management functions */
92 #ifdef OLD_DECODER
93 p_vdec_thread_t  vdec_CreateThread       ( /* video_cfg_t *p_cfg, */ input_thread_t *p_input /*,
94                                           vout_thread_t *p_vout, int *pi_status */ );
95 void             vdec_DestroyThread      ( vdec_thread_t *p_vdec /*, int *pi_status */ );
96 #else
97 vdec_thread_t * vdec_CreateThread       ( struct vpar_thread_s *p_vpar /*, int *pi_status */ );
98 void vdec_DestroyThread      ( vdec_thread_t *p_vdec /*, int *pi_status */ );
99 void vdec_AddBlock( vdec_thread_t *, dctelem_t*, yuv_data_t*, int );
100 void vdec_CopyBlock( vdec_thread_t *, dctelem_t*, yuv_data_t*, int );
101 void vdec_DummyBlock( vdec_thread_t *, dctelem_t*, yuv_data_t*, int );
102 #endif