]> git.sesse.net Git - vlc/blob - include/video.h
34052ed628b80a4e2c659355daf7c3f857c6b922
[vlc] / include / video.h
1 /*****************************************************************************
2  * video.h: common video definitions
3  * This header is required by all modules which have to handle pictures. It
4  * includes all common video types and constants.
5  *****************************************************************************
6  * Copyright (C) 1999, 2000 VideoLAN
7  * $Id: video.h,v 1.54 2002/07/15 19:33:02 fenrir Exp $
8  *
9  * Authors: Vincent Seguin <seguin@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * plane_t: description of a planar graphic field
28  *****************************************************************************/
29 typedef struct plane_s
30 {
31     u8 *p_pixels;                               /* Start of the plane's data */
32
33     /* Variables used for fast memcpy operations */
34     int i_lines;                                          /* Number of lines */
35     int i_pitch;             /* Number of bytes in a line, including margins */
36
37     /* Size of a macropixel, defaults to 1 */
38     int i_pixel_bytes;
39
40     /* Is there a margin ? defaults to no */
41     vlc_bool_t b_margin;
42
43     /* Variables used for pictures with margins */
44     int i_visible_bytes;                 /* How many real pixels are there ? */
45     vlc_bool_t b_hidden;          /* Are we allowed to write to the margin ? */
46
47 } plane_t;
48
49 /*****************************************************************************
50  * picture_t: video picture
51  *****************************************************************************
52  * Any picture destined to be displayed by a video output thread should be
53  * stored in this structure from it's creation to it's effective display.
54  * Picture type and flags should only be modified by the output thread. Note
55  * that an empty picture MUST have its flags set to 0.
56  *****************************************************************************/
57 struct picture_s
58 {
59     /* Picture data - data can always be freely modified, but p_data may
60      * NEVER be modified. A direct buffer can be handled as the plugin
61      * wishes, it can even swap p_pixels buffers. */
62     u8             *p_data;
63     void           *p_data_orig;                  /* pointer before memalign */
64     plane_t         p[ VOUT_MAX_PLANES ];       /* description of the planes */
65     int             i_planes;                  /* number of allocated planes */
66
67     /* Type and flags - should NOT be modified except by the vout thread */
68     int             i_status;                               /* picture flags */
69     int             i_type;                  /* is picture a direct buffer ? */
70     int             i_matrix_coefficients;     /* in YUV type, encoding type */
71
72     /* Picture management properties - these properties can be modified using
73      * the video output thread API, but should never be written directly */
74     int             i_refcount;                    /* link reference counter */
75     mtime_t         date;                                    /* display date */
76     vlc_bool_t      b_force;
77
78     /* Picture dynamic properties - those properties can be changed by the
79      * decoder */
80     vlc_bool_t      b_progressive;            /* is it a progressive frame ? */
81     vlc_bool_t      b_repeat_first_field;                         /* RFF bit */
82     vlc_bool_t      b_top_field_first;               /* which field is first */
83
84     /* The picture heap we are attached to */
85     picture_heap_t* p_heap;
86
87     /* Private data - the video output plugin might want to put stuff here to
88      * keep track of the picture */
89     picture_sys_t * p_sys;
90 };
91
92 /*****************************************************************************
93  * picture_heap_t: video picture heap, either render (to store pictures used
94  * by the decoder) or output (to store pictures displayed by the vout plugin)
95  *****************************************************************************/
96 struct picture_heap_s
97 {
98     int i_pictures;                                     /* current heap size */
99
100     /* Picture static properties - those properties are fixed at initialization
101      * and should NOT be modified */
102     int i_width;                                            /* picture width */
103     int i_height;                                          /* picture height */
104     u32 i_chroma;                                          /* picture chroma */
105     int i_aspect;                                            /* aspect ratio */
106
107     /* Real pictures */
108     picture_t*      pp_picture[VOUT_MAX_PICTURES];               /* pictures */
109
110     /* Stuff used for truecolor RGB planes */
111     int i_rmask, i_rrshift, i_lrshift;
112     int i_gmask, i_rgshift, i_lgshift;
113     int i_bmask, i_rbshift, i_lbshift;
114
115     /* Stuff used for palettized RGB planes */
116     void (* pf_setpalette) ( vout_thread_t *, u16 *, u16 *, u16 * );
117 };
118
119 /* RGB2PIXEL: assemble RGB components to a pixel value, returns a u32 */
120 #define RGB2PIXEL( p_vout, i_r, i_g, i_b )                                    \
121     (((((u32)i_r) >> p_vout->output.i_rrshift) << p_vout->output.i_lrshift) | \
122      ((((u32)i_g) >> p_vout->output.i_rgshift) << p_vout->output.i_lgshift) | \
123      ((((u32)i_b) >> p_vout->output.i_rbshift) << p_vout->output.i_lbshift))
124
125 /*****************************************************************************
126  * Flags used to describe the status of a picture
127  *****************************************************************************/
128
129 /* Picture type */
130 #define EMPTY_PICTURE           0                            /* empty buffer */
131 #define MEMORY_PICTURE          100                 /* heap-allocated buffer */
132 #define DIRECT_PICTURE          200                         /* direct buffer */
133
134 /* Picture status */
135 #define FREE_PICTURE            0                  /* free and not allocated */
136 #define RESERVED_PICTURE        1                  /* allocated and reserved */
137 #define RESERVED_DATED_PICTURE  2              /* waiting for DisplayPicture */
138 #define RESERVED_DISP_PICTURE   3               /* waiting for a DatePicture */
139 #define READY_PICTURE           4                       /* ready for display */
140 #define DISPLAYED_PICTURE       5            /* been displayed but is linked */
141 #define DESTROYED_PICTURE       6              /* allocated but no more used */
142
143 /*****************************************************************************
144  * Codes used to describe picture format - see http://www.webartz.com/fourcc/
145  *****************************************************************************/
146 #define VLC_FOURCC( a, b, c, d ) \
147     ( ((u32)a) | ( ((u32)b) << 8 ) | ( ((u32)c) << 16 ) | ( ((u32)d) << 24 ) )
148
149 #define VLC_TWOCC( a, b ) \
150     ( (u16)(a) | ( (u16)(b) << 8 ) )
151
152 /* AVI stuff */
153 #define FOURCC_RIFF         VLC_FOURCC('R','I','F','F')
154 #define FOURCC_LIST         VLC_FOURCC('L','I','S','T')
155 #define FOURCC_JUNK         VLC_FOURCC('J','U','N','K')
156 #define FOURCC_AVI          VLC_FOURCC('A','V','I',' ')
157 #define FOURCC_WAVE         VLC_FOURCC('W','A','V','E')
158
159 #define FOURCC_avih         VLC_FOURCC('a','v','i','h')
160 #define FOURCC_hdrl         VLC_FOURCC('h','d','r','l')
161 #define FOURCC_movi         VLC_FOURCC('m','o','v','i')
162 #define FOURCC_idx1         VLC_FOURCC('i','d','x','1')
163
164 #define FOURCC_strl         VLC_FOURCC('s','t','r','l')
165 #define FOURCC_strh         VLC_FOURCC('s','t','r','h')
166 #define FOURCC_strf         VLC_FOURCC('s','t','r','f')
167 #define FOURCC_strd         VLC_FOURCC('s','t','r','d')
168
169 #define FOURCC_rec          VLC_FOURCC('r','e','c',' ')
170 #define FOURCC_auds         VLC_FOURCC('a','u','d','s')
171 #define FOURCC_vids         VLC_FOURCC('v','i','d','s')
172
173 #define TWOCC_wb            VLC_TWOCC('w','b')
174 #define TWOCC_db            VLC_TWOCC('d','b')
175 #define TWOCC_dc            VLC_TWOCC('d','c')
176 #define TWOCC_pc            VLC_TWOCC('p','c')
177
178 /* MPEG4 codec */
179 #define FOURCC_DIVX         VLC_FOURCC('D','I','V','X')
180 #define FOURCC_divx         VLC_FOURCC('d','i','v','x')
181 #define FOURCC_DIV1         VLC_FOURCC('D','I','V','1')
182 #define FOURCC_div1         VLC_FOURCC('d','i','v','1')
183 #define FOURCC_MP4S         VLC_FOURCC('M','P','4','S')
184 #define FOURCC_mp4s         VLC_FOURCC('m','p','4','s')
185 #define FOURCC_M4S2         VLC_FOURCC('M','4','S','2')
186 #define FOURCC_m4s2         VLC_FOURCC('m','4','s','2')
187 #define FOURCC_xvid         VLC_FOURCC('x','v','i','d')
188 #define FOURCC_XVID         VLC_FOURCC('X','V','I','D')
189 #define FOURCC_XviD         VLC_FOURCC('X','v','i','D')
190 #define FOURCC_DX50         VLC_FOURCC('D','X','5','0')
191 #define FOURCC_mp4v         VLC_FOURCC('m','p','4','v')
192 #define FOURCC_4            VLC_FOURCC( 4,  0,  0,  0 )
193  
194 /* MSMPEG4 v2 */
195 #define FOURCC_MPG4         VLC_FOURCC('M','P','G','4')
196 #define FOURCC_mpg4         VLC_FOURCC('m','p','g','4')
197 #define FOURCC_DIV2         VLC_FOURCC('D','I','V','2')
198 #define FOURCC_div2         VLC_FOURCC('d','i','v','2')
199 #define FOURCC_MP42         VLC_FOURCC('M','P','4','2')
200 #define FOURCC_mp42         VLC_FOURCC('m','p','4','2')
201
202 /* MSMPEG4 v3 / M$ mpeg4 v3 */
203 #define FOURCC_MPG3         VLC_FOURCC('M','P','G','3')
204 #define FOURCC_mpg3         VLC_FOURCC('m','p','g','3')
205 #define FOURCC_div3         VLC_FOURCC('d','i','v','3')
206 #define FOURCC_MP43         VLC_FOURCC('M','P','4','3')
207 #define FOURCC_mp43         VLC_FOURCC('m','p','4','3')
208
209 /* DivX 3.20 */
210 #define FOURCC_DIV3         VLC_FOURCC('D','I','V','3')
211 #define FOURCC_DIV4         VLC_FOURCC('D','I','V','4')
212 #define FOURCC_div4         VLC_FOURCC('d','i','v','4')
213 #define FOURCC_DIV5         VLC_FOURCC('D','I','V','5')
214 #define FOURCC_div5         VLC_FOURCC('d','i','v','5')
215 #define FOURCC_DIV6         VLC_FOURCC('D','I','V','6')
216 #define FOURCC_div6         VLC_FOURCC('d','i','v','6')
217
218 /* AngelPotion stuff */
219 #define FOURCC_AP41         VLC_FOURCC('A','P','4','1')
220
221 /* ?? */
222 #define FOURCC_3IV1         VLC_FOURCC('3','I','V','1')
223 /* H263 and H263i */
224 #define FOURCC_H263         VLC_FOURCC('H','2','6','3')
225 #define FOURCC_h263         VLC_FOURCC('h','2','6','3')
226 #define FOURCC_U263         VLC_FOURCC('U','2','6','3')
227 #define FOURCC_I263         VLC_FOURCC('I','2','6','3')
228 #define FOURCC_i263         VLC_FOURCC('i','2','6','3')
229
230
231 /* Packed RGB for 8bpp */
232 #define FOURCC_BI_RGB       VLC_FOURCC( 0 , 0 , 0 , 0 )
233 #define FOURCC_RGB2         VLC_FOURCC('R','G','B','2')
234
235 /* Packed RGB for 16, 24, 32bpp */
236 #define FOURCC_BI_BITFIELDS VLC_FOURCC( 0 , 0 , 0 , 3 )
237
238 /* Packed RGB 15bpp, 0x1f, 0x7e0, 0xf800 */
239 #define FOURCC_RV15         VLC_FOURCC('R','V','1','5')
240
241 /* Packed RGB 16bpp, 0x1f, 0x3e0, 0x7c00 */
242 #define FOURCC_RV16         VLC_FOURCC('R','V','1','6')
243
244 /* Packed RGB 24bpp, 0xff, 0xff00, 0xff0000 */
245 #define FOURCC_RV24         VLC_FOURCC('R','V','2','4')
246
247 /* Packed RGB 32bpp, 0xff, 0xff00, 0xff0000 */
248 #define FOURCC_RV32         VLC_FOURCC('R','V','3','2')
249
250 /* Planar YUV 4:2:0, Y:U:V */
251 #define FOURCC_I420         VLC_FOURCC('I','4','2','0')
252 #define FOURCC_IYUV         VLC_FOURCC('I','Y','U','V')
253
254 /* Planar YUV 4:2:0, Y:V:U */
255 #define FOURCC_YV12         VLC_FOURCC('Y','V','1','2')
256
257 /* Packed YUV 4:2:2, U:Y:V:Y, interlaced */
258 #define FOURCC_IUYV         VLC_FOURCC('I','U','Y','V')
259
260 /* Packed YUV 4:2:2, U:Y:V:Y */
261 #define FOURCC_UYVY         VLC_FOURCC('U','Y','V','Y')
262 #define FOURCC_UYNV         VLC_FOURCC('U','Y','N','V')
263 #define FOURCC_Y422         VLC_FOURCC('Y','4','2','2')
264
265 /* Packed YUV 4:2:2, U:Y:V:Y, reverted */
266 #define FOURCC_cyuv         VLC_FOURCC('c','y','u','v')
267
268 /* Packed YUV 4:2:2, Y:U:Y:V */
269 #define FOURCC_YUY2         VLC_FOURCC('Y','U','Y','2')
270 #define FOURCC_YUNV         VLC_FOURCC('Y','U','N','V')
271
272 /* Packed YUV 4:2:2, Y:V:Y:U */
273 #define FOURCC_YVYU         VLC_FOURCC('Y','V','Y','U')
274
275 /* Packed YUV 2:1:1, Y:U:Y:V */
276 #define FOURCC_Y211         VLC_FOURCC('Y','2','1','1')
277
278 /* Custom formats which we use but which don't exist in the fourcc database */
279
280 /* Planar Y, packed UV, from Matrox */
281 #define FOURCC_YMGA         VLC_FOURCC('Y','M','G','A')
282
283 /* Planar 4:2:2, Y:U:V */
284 #define FOURCC_I422         VLC_FOURCC('I','4','2','2')
285
286 /* Planar 4:4:4, Y:U:V */
287 #define FOURCC_I444         VLC_FOURCC('I','4','4','4')
288
289 /*****************************************************************************
290  * Shortcuts to access image components
291  *****************************************************************************/
292
293 /* Plane indices */
294 #define Y_PLANE      0
295 #define U_PLANE      1
296 #define V_PLANE      2
297
298 /* Shortcuts */
299 #define Y_PIXELS     p[Y_PLANE].p_pixels
300 #define Y_PITCH      p[Y_PLANE].i_pitch
301 #define U_PIXELS     p[U_PLANE].p_pixels
302 #define U_PITCH      p[U_PLANE].i_pitch
303 #define V_PIXELS     p[V_PLANE].p_pixels
304 #define V_PITCH      p[V_PLANE].i_pitch
305
306 /*****************************************************************************
307  * subpicture_t: video subtitle
308  *****************************************************************************
309  * Any subtitle destined to be displayed by a video output thread should
310  * be stored in this structure from it's creation to it's effective display.
311  * Subtitle type and flags should only be modified by the output thread. Note
312  * that an empty subtitle MUST have its flags set to 0.
313  *****************************************************************************/
314 struct subpicture_s
315 {
316     /* Type and flags - should NOT be modified except by the vout thread */
317     int             i_type;                                          /* type */
318     int             i_status;                                       /* flags */
319     int             i_size;                                     /* data size */
320     subpicture_t *  p_next;                 /* next subtitle to be displayed */
321
322     /* Date properties */
323     mtime_t         i_start;                    /* beginning of display date */
324     mtime_t         i_stop;                           /* end of display date */
325     vlc_bool_t      b_ephemer;             /* does the subtitle have a TTL ? */
326
327     /* Display properties - these properties are only indicative and may be
328      * changed by the video output thread, or simply ignored depending of the
329      * subtitle type. */
330     int             i_x;                   /* offset from alignment position */
331     int             i_y;                   /* offset from alignment position */
332     int             i_width;                                /* picture width */
333     int             i_height;                              /* picture height */
334
335 #if 0
336     /* Additionnal properties depending of the subpicture type */
337     union
338     {
339         /* Text subpictures properties - text is stored in data area, in ASCIIZ
340          * format */
341         struct
342         {
343             vout_font_t *       p_font;            /* font, NULL for default */
344             int                 i_style;                       /* text style */
345             u32                 i_char_color;             /* character color */
346             u32                 i_border_color;              /* border color */
347             u32                 i_bg_color;              /* background color */
348         } text;
349     } type;
350 #endif
351
352     /* The subpicture rendering routine */
353     void ( *pf_render ) ( vout_thread_t *, picture_t *, const subpicture_t * );
354
355     /* Private data - the subtitle plugin might want to put stuff here to
356      * keep track of the subpicture */
357     subpicture_sys_t *p_sys;                              /* subpicture data */
358     void             *p_sys_orig;                 /* pointer before memalign */
359 };
360
361 /* Subpicture type */
362 #define EMPTY_SUBPICTURE       0     /* subtitle slot is empty and available */
363 #define MEMORY_SUBPICTURE      100            /* subpicture stored in memory */
364
365 /* Subpicture status */
366 #define FREE_SUBPICTURE        0                   /* free and not allocated */
367 #define RESERVED_SUBPICTURE    1                   /* allocated and reserved */
368 #define READY_SUBPICTURE       2                        /* ready for display */
369 #define DESTROYED_SUBPICTURE   3           /* allocated but not used anymore */
370