]> git.sesse.net Git - vlc/blob - include/video_output.h
. prototypes de fonctions pour le 8bpp
[vlc] / include / video_output.h
1 /*******************************************************************************
2  * video_output.h : video output thread
3  * (c)1999 VideoLAN
4  *******************************************************************************
5  * This module describes the programming interface for video output threads.
6  * It includes functions allowing to open a new thread, send pictures to a
7  * thread, and destroy a previously oppenned video output thread.
8  *******************************************************************************/
9
10 /*******************************************************************************
11  * vout_yuv_convert_t: YUV convertion function
12  *******************************************************************************
13  * This is the prototype common to all convertion functions. The type of p_pic
14  * will change depending of the screen depth treated.
15  * Parameters:
16  *      p_vout                          video output thread
17  *      p_pic                           picture address 
18  *      p_y, p_u, p_v                   Y,U,V samples addresses
19  *      i_width, i_height               Y samples extension
20  *      i_pic_width, i_pic_height       picture extension
21  *      i_pic_line_width                picture total line width
22  *      i_matrix_coefficients           matrix coefficients
23  * Picture width and source dimensions must be multiples of 16.
24  *******************************************************************************/
25 typedef void (vout_yuv_convert_t)( p_vout_thread_t p_vout, void *p_pic,
26                                    yuv_data_t *p_y, yuv_data_t *p_u, yuv_data_t *p_v,
27                                    int i_width, int i_height,
28                                    int i_pic_width, int i_pic_height, int i_pic_line_width,
29                                    int i_matrix_coefficients );
30
31 /*******************************************************************************
32  * vout_yuv_t: pre-calculated YUV convertion tables
33  *******************************************************************************
34  * These tables are used by convertion and scaling functions.
35  *******************************************************************************/
36 typedef struct vout_yuv_s
37 {
38     /* Convertion functions */
39     vout_yuv_convert_t *        p_Convert420;          /* YUV 4:2:0 converter */
40     vout_yuv_convert_t *        p_Convert422;          /* YUV 4:2:2 converter */
41     vout_yuv_convert_t *        p_Convert444;          /* YUV 4:4:4 converter */
42
43     /* Pre-calculated convertion tables */
44     void *              p_base;             /* base for all convertion tables */    
45     union
46     {
47         u8 *            p_gray8;                         /* gray 8 bits table */
48         u16 *           p_gray16;                       /* gray 16 bits table */
49         u32 *           p_gray32;                       /* gray 32 bits table */
50         u8 *            p_rgb8;                           /* RGB 8 bits table */
51         u16 *           p_rgb16;                         /* RGB 16 bits table */
52         u32 *           p_rgb32;                         /* RGB 32 bits table */
53     } yuv;
54
55     /* Temporary convertion buffer and offset array */
56     void *              p_buffer;                        /* convertion buffer */
57     int *               p_offset;                             /* offset array */    
58 } vout_yuv_t;
59
60 /*******************************************************************************
61  * vout_buffer_t: rendering buffer
62  *******************************************************************************
63  * This structure store informations about a buffer. Buffers are not completely
64  * cleared between displays, and modified areas needs to be stored.
65  *******************************************************************************/
66 typedef struct vout_buffer_s
67 {     
68     /* Picture area */
69     int         i_pic_x, i_pic_y;                        /* picture position  */
70     int         i_pic_width, i_pic_height;               /* picture extension */
71     
72     /* Other areas - only vertical extensions of areas are stored */
73     int         i_areas;                                   /* number of areas */
74     int         pi_area_begin[VOUT_MAX_AREAS];           /* beginning of area */
75     int         pi_area_end[VOUT_MAX_AREAS];                   /* end of area */
76     
77     /* Picture data */
78     byte_t *    p_data;                                     /* memory address */
79 } vout_buffer_t;
80
81 /*******************************************************************************
82  * vout_thread_t: video output thread descriptor
83  *******************************************************************************
84  * Any independant video output device, such as an X11 window or a GGI device,
85  * is represented by a video output thread, and described using following 
86  * structure.
87  *******************************************************************************/
88 typedef struct vout_thread_s
89 {
90     /* Thread properties and lock */
91     boolean_t           b_die;                                  /* `die' flag */
92     boolean_t           b_error;                              /* `error' flag */
93     boolean_t           b_active;                            /* `active' flag */
94     vlc_thread_t        thread_id;                /* id for pthread functions */
95     vlc_mutex_t         picture_lock;                    /* picture heap lock */
96     vlc_mutex_t         subpicture_lock;              /* subpicture heap lock */
97     vlc_mutex_t         change_lock;                    /* thread change lock */
98     int *               pi_status;                   /* temporary status flag */
99     p_vout_sys_t        p_sys;                        /* system output method */
100
101     /* Current display properties */    
102     u16                 i_changes;              /* changes made to the thread */
103     int                 i_width;               /* current output method width */
104     int                 i_height;             /* current output method height */
105     int                 i_bytes_per_line;   /* bytes per line (incl. virtual) */
106     int                 i_screen_depth;                     /* bits per pixel */
107     int                 i_bytes_per_pixel;               /* real screen depth */
108     float               f_gamma;                                     /* gamma */
109
110     /* Pictures and rendering properties */
111     boolean_t           b_grayscale;            /* color or grayscale display */
112     boolean_t           b_info;             /* print additionnal informations */
113     boolean_t           b_interface;                      /* render interface */
114     boolean_t           b_scale;                     /* allow picture scaling */
115
116     /* Idle screens management */
117     mtime_t             last_display_date;      /* last non idle display date */
118     mtime_t             last_idle_date;             /* last idle display date */
119
120 #ifdef STATS    
121     /* Statistics - these numbers are not supposed to be accurate, but are a
122      * good indication of the thread status */
123     mtime_t             render_time;              /* last picture render time */
124     count_t             c_fps_samples;                      /* picture counts */
125     mtime_t             p_fps_sample[ VOUT_FPS_SAMPLES ];/* FPS samples dates */
126 #endif
127
128     /* Rendering buffers */
129     int                 i_buffer_index;                       /* buffer index */
130     vout_buffer_t       p_buffer[2];                    /* buffers properties */
131
132     /* Videos heap and translation tables */
133     picture_t           p_picture[VOUT_MAX_PICTURES];             /* pictures */
134     subpicture_t        p_subpicture[VOUT_MAX_PICTURES];       /* subpictures */
135     vout_yuv_t          yuv;                            /* translation tables */
136
137     /* Bitmap fonts */
138     p_vout_font_t       p_default_font;                       /* default font */
139     p_vout_font_t       p_large_font;                           /* large font */
140 } vout_thread_t;
141
142 /* Flags for changes - these flags are set in the i_changes field when another
143  * thread changed a variable */
144 #define VOUT_INFO_CHANGE        0x0001                      /* b_info changed */
145 #define VOUT_GRAYSCALE_CHANGE   0x0002                 /* b_grayscale changed */
146 #define VOUT_INTF_CHANGE        0x0004                 /* b_interface changed */
147 #define VOUT_SCALE_CHANGE       0x0008                     /* b_scale changed */
148 #define VOUT_SIZE_CHANGE        0x0200                        /* size changed */
149 #define VOUT_DEPTH_CHANGE       0x0400                       /* depth changed */
150 #define VOUT_GAMMA_CHANGE       0x0010                       /* gamma changed */
151 #define VOUT_YUV_CHANGE         0x0800                   /* change yuv tables */
152 #define VOUT_NODISPLAY_CHANGE   0xff00     /* changes which forbidden display */
153
154 /*******************************************************************************
155  * Prototypes
156  *******************************************************************************/
157 vout_thread_t * vout_CreateThread       ( char *psz_display, int i_root_window, 
158                                           int i_width, int i_height, int *pi_status );
159 void            vout_DestroyThread      ( vout_thread_t *p_vout, int *pi_status );
160 picture_t *     vout_CreatePicture      ( vout_thread_t *p_vout, int i_type, 
161                                           int i_width, int i_height );
162 void            vout_DestroyPicture     ( vout_thread_t *p_vout, picture_t *p_pic );
163 void            vout_DisplayPicture     ( vout_thread_t *p_vout, picture_t *p_pic );
164 void            vout_DatePicture        ( vout_thread_t *p_vout, picture_t *p_pic, mtime_t date );
165 void            vout_LinkPicture        ( vout_thread_t *p_vout, picture_t *p_pic );
166 void            vout_UnlinkPicture      ( vout_thread_t *p_vout, picture_t *p_pic );
167 subpicture_t *  vout_CreateSubPicture   ( vout_thread_t *p_vout, int i_type, int i_size );
168 void            vout_DestroySubPicture  ( vout_thread_t *p_vout, subpicture_t *p_subpic );
169 void            vout_DisplaySubPicture  ( vout_thread_t *p_vout, subpicture_t *p_subpic );
170
171 void            vout_SetBuffers         ( vout_thread_t *p_vout, void *p_buf1, void *p_buf2 );