]> git.sesse.net Git - vlc/blob - include/video_parser.h
. fix� une erreur de syntaxe dans video_fb.c
[vlc] / include / video_parser.h
1 /*****************************************************************************
2  * video_parser.h : video parser 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  *  "video_fifo.h"
16  *  "vpar_headers.h"
17  *****************************************************************************/
18
19 /*****************************************************************************
20  * video_fifo_t
21  *****************************************************************************
22  * This rotative FIFO contains undecoded macroblocks that are to be decoded
23  *****************************************************************************/
24 struct vpar_thread_s;
25
26 typedef struct video_fifo_s
27 {
28 #ifdef VDEC_SMP
29     vlc_mutex_t         lock;                              /* fifo data lock */
30     vlc_cond_t          wait;              /* fifo data conditional variable */
31
32     /* buffer is an array of undec_picture_t pointers */
33     macroblock_t *      buffer[VFIFO_SIZE + 1];
34     int                 i_start;
35     int                 i_end;
36 #else
37     macroblock_t        buffer;
38 #endif
39
40     struct vpar_thread_s *      p_vpar;
41 } video_fifo_t;
42
43 /*****************************************************************************
44  * video_buffer_t
45  *****************************************************************************
46  * This structure enables the parser to maintain a list of free
47  * macroblock_t structures
48  *****************************************************************************/
49 #ifdef VDEC_SMP
50 typedef struct video_buffer_s
51 {
52     vlc_mutex_t         lock;                            /* buffer data lock */
53
54     macroblock_t        p_macroblocks[VFIFO_SIZE + 1];
55     macroblock_t *      pp_mb_free[VFIFO_SIZE+1];          /* this is a LIFO */
56     int                 i_index;
57 } video_buffer_t;
58 #endif
59
60 /*****************************************************************************
61  * vpar_thread_t: video parser thread descriptor
62  *****************************************************************************
63  * ??
64  *****************************************************************************/
65 typedef struct vpar_thread_s
66 {
67     /* Thread properties and locks */
68     boolean_t           b_die;                                 /* `die' flag */
69     boolean_t           b_run;                                 /* `run' flag */
70     boolean_t           b_error;                             /* `error' flag */
71     boolean_t           b_active;                           /* `active' flag */
72     vlc_thread_t        thread_id;                /* id for thread functions */
73
74     /* Thread configuration */
75     /* ?? */
76  /*??*/
77 //    int *pi_status;
78
79
80     /* Input properties */
81     decoder_fifo_t      fifo;                              /* PES input fifo */
82
83     /* The bit stream structure handles the PES stream at the bit level */
84     bit_stream_t        bit_stream;
85
86     /* Output properties */
87     vout_thread_t *     p_vout;                       /* video output thread */
88
89     /* Decoder properties */
90     struct vdec_thread_s *      pp_vdec[NB_VDEC];
91     video_fifo_t                vfifo;
92 #ifdef VDEC_SMP
93     video_buffer_t              vbuffer;
94 #endif
95
96     /* Parser properties */
97     sequence_t              sequence;
98     picture_parsing_t       picture;
99     macroblock_parsing_t    mb;
100     video_synchro_t         synchro;
101
102     /* Lookup tables */
103 #ifdef MPEG2_COMPLIANT
104     s16                     pi_crop_buf[8192];
105     s16 *                   pi_crop;
106 #endif
107     lookup_t                pl_mb_addr_inc[2048];    /* for macroblock
108                                                         address increment */
109     /* tables for macroblock types 0=P 1=B */
110     lookup_t                ppl_mb_type[2][64];
111     /* table for coded_block_pattern */
112     lookup_t *              pl_coded_pattern;
113     /* variable length codes for the structure dct_dc_size for intra blocks */
114     lookup_t *              pppl_dct_dc_size[2][2];
115     /* Structure to store the tables B14 & B15 (ISO/CEI 13818-2 B.4) */
116      dct_lookup_t           ppl_dct_coef[2][16384];
117
118
119
120 #ifdef STATS
121     /* Statistics */
122     count_t         c_loops;                              /* number of loops */
123     count_t         c_idle_loops;                    /* number of idle loops */
124     count_t         c_sequences;                      /* number of sequences */
125     count_t         c_pictures;                   /* number of pictures read */
126     count_t         c_i_pictures;               /* number of I pictures read */
127     count_t         c_p_pictures;               /* number of P pictures read */
128     count_t         c_b_pictures;               /* number of B pictures read */
129     count_t         c_decoded_pictures;        /* number of pictures decoded */
130     count_t         c_decoded_i_pictures;    /* number of I pictures decoded */
131     count_t         c_decoded_p_pictures;    /* number of P pictures decoded */
132     count_t         c_decoded_b_pictures;    /* number of B pictures decoded */
133 #endif
134 } vpar_thread_t;
135
136 /*****************************************************************************
137  * Prototypes
138  *****************************************************************************/
139
140 /* Thread management functions */
141 vpar_thread_t * vpar_CreateThread       ( /* video_cfg_t *p_cfg, */ input_thread_t *p_input /*,
142                                           vout_thread_t *p_vout, int *pi_status */ );
143 void            vpar_DestroyThread      ( vpar_thread_t *p_vpar /*, int *pi_status */ );
144
145 /* Time management functions */
146 /* ?? */
147
148 /* Dynamic thread settings */
149 /* ?? */
150
151
152 /*****************************************************************************
153  * NextStartCode : Find the next start code
154  *****************************************************************************/
155 static __inline__ void NextStartCode( vpar_thread_t * p_vpar )
156 {
157     /* Re-align the buffer on an 8-bit boundary */
158     RealignBits( &p_vpar->bit_stream );
159
160     while( ShowBits( &p_vpar->bit_stream, 24 ) != 0x01L && !p_vpar->b_die )
161     {
162         RemoveBits( &p_vpar->bit_stream, 8 );
163     }
164 }
165
166 /*****************************************************************************
167  * LoadQuantizerScale
168  *****************************************************************************
169  * Quantizer scale factor (ISO/IEC 13818-2 7.4.2.2)
170  *****************************************************************************/
171 static __inline__ void LoadQuantizerScale( struct vpar_thread_s * p_vpar )
172 {
173     /* Quantization coefficient table */
174     static u8   ppi_quantizer_scale[3][32] =
175     {
176         /* MPEG-2 */
177         {
178             /* q_scale_type */
179             /* linear */
180             0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,
181             32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62
182         },
183         {
184             /* non-linear */
185             0, 1, 2, 3, 4, 5, 6, 7, 8, 10,12,14,16,18,20, 22,
186             24,28,32,36,40,44,48,52,56,64,72,80,88,96,104,112
187         },
188         /* MPEG-1 */
189         {
190             0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,
191             16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
192         }
193     };
194
195     p_vpar->mb.i_quantizer_scale = ppi_quantizer_scale
196            [(!p_vpar->sequence.b_mpeg2 << 1) | p_vpar->picture.b_q_scale_type]
197            [GetBits( &p_vpar->bit_stream, 5 )];
198 }
199