]> git.sesse.net Git - vlc/blob - include/vpar_blocks.h
* Makefile : ajout du nouveau d�codeur (comment�) ;
[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  * macroblock_t : information on a macroblock
20  *****************************************************************************/
21 typedef struct macroblock_s
22 {
23     picture_t *             p_picture;
24     int                     i_mb_x, i_mb_y;
25     int                     i_structure;
26     int                     i_l_x, i_l_y;    /* position of macroblock (lum) */
27     int                     i_c_x, i_c_y; /* position of macroblock (chroma) */
28     int                     i_chroma_nb_blocks;  /* nb of bks for a chr comp */
29
30     /* IDCT information */
31     elem_t                  ppi_blocks[12][64];                    /* blocks */
32     f_idct_t                pf_idct[12];             /* sparse IDCT or not ? */
33     int                     pi_sparse_pos[12];
34
35     /* Motion compensation information */
36     f_motion_t              pf_motion;    /* function to use for motion comp */
37     f_chroma_motion_t       pf_chroma_motion;
38     picture_t *             p_backw_top;
39     picture_t *             p_backw_bot;
40     picture_t *             p_forw_top;
41     picture_t *             p_forw_bot;
42     int                     i_field_select_backw_top, i_field_select_backw_bot;
43     int                     i_field_select_forw_top, i_field_select_forw_bot;
44     int                     pi_motion_vectors_backw_top[2];
45     int                     pi_motion_vectors_backw_bot[2];
46     int                     pi_motion_vectors_forw_top[2];
47     int                     pi_motion_vectors_forw_bot[2];
48
49     /* AddBlock information */
50     f_addb_t                pf_addb[12];
51     data_t *                p_data[12];    /* positions of blocks in picture */
52     int                     i_lum_incr, i_chroma_incr;
53 } macroblock_t;
54
55 /*****************************************************************************
56  * macroblock_parsing_t : parser context descriptor #3
57  *****************************************************************************/
58 typedef struct
59 {
60     int                     i_mb_type, i_motion_type, i_mv_count, i_mv_format;
61     int                     i_coded_block_pattern;
62     boolean_t               b_dct_type;
63 } macroblock_parsing_t;
64
65 /*****************************************************************************
66  * Standard codes
67  *****************************************************************************/
68 /* Macroblock types */
69 #define MB_INTRA                        1
70 #define MB_PATTERN                      2
71 #define MB_MOTION_BACKWARD              4
72 #define MB_MOTION_FORWARD               8
73 #define MB_QUANT                        16
74
75 /* Motion types */
76 #define MOTION_FIELD                    1
77 #define MOTION_FRAME                    2
78 #define MOTION_16X8                     2
79 #define MOTION_DMV                      3