]> git.sesse.net Git - vlc/blob - include/vpar_blocks.h
Un bon morceau du parseur.
[vlc] / include / vpar_blocks.h
1 /*****************************************************************************
2  * vpar_blocks.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  * quant_matrix_t : Quantization Matrix
20  *****************************************************************************
21  * ??
22  *****************************************************************************/
23 typedef struct quant_matrix_s
24 {
25     int         pi_matrix[64];
26     boolean_t   b_allocated;
27                           /* Has the matrix been allocated by vpar_headers ? */
28 } quant_matrix_t;
29
30 extern int *    pi_default_intra_quant;
31 extern int *    pi_default_nonintra_quant;