VLC  2.1.0-git
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vlc_picture.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * vlc_picture.h: picture definitions
3  *****************************************************************************
4  * Copyright (C) 1999 - 2009 VLC authors and VideoLAN
5  * $Id: c99f54d7212b39689a8027c64cc92b40442cf080 $
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  * Samuel Hocevar <sam@via.ecp.fr>
9  * Olivier Aubert <oaubert 47 videolan d07 org>
10  *
11  * This program is free software; you can redistribute it and/or modify it
12  * under the terms of the GNU Lesser General Public License as published by
13  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * along with this program; if not, write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25 
26 #ifndef VLC_PICTURE_H
27 #define VLC_PICTURE_H 1
28 
29 /**
30  * \file
31  * This file defines picture structures and functions in vlc
32  */
33 
34 #include <vlc_es.h>
35 #include <vlc_atomic.h>
36 
37 /** Description of a planar graphic field */
38 typedef struct plane_t
39 {
40  uint8_t *p_pixels; /**< Start of the plane's data */
41 
42  /* Variables used for fast memcpy operations */
43  int i_lines; /**< Number of lines, including margins */
44  int i_pitch; /**< Number of bytes in a line, including margins */
45 
46  /** Size of a macropixel, defaults to 1 */
47  int i_pixel_pitch;
48 
49  /* Variables used for pictures with margins */
50  int i_visible_lines; /**< How many visible lines are there ? */
51  int i_visible_pitch; /**< How many visible pixels are there ? */
52 
53 } plane_t;
54 
55 /**
56  * Maximum number of plane for a picture
57  */
58 #define PICTURE_PLANE_MAX (VOUT_MAX_PLANES)
59 
60 
61 /**
62  * A private definition to help overloading picture release
63  */
64 typedef struct picture_gc_sys_t picture_gc_sys_t;
65 
66 /**
67  * Video picture
68  */
69 struct picture_t
70 {
71  /**
72  * The properties of the picture
73  */
75 
76  plane_t p[PICTURE_PLANE_MAX]; /**< description of the planes */
77  int i_planes; /**< number of allocated planes */
78 
79  /** \name Picture management properties
80  * These properties can be modified using the video output thread API,
81  * but should never be written directly */
82  /**@{*/
83  mtime_t date; /**< display date */
84  bool b_force;
85  /**@}*/
86 
87  /** \name Picture dynamic properties
88  * Those properties can be changed by the decoder
89  * @{
90  */
91  bool b_progressive; /**< is it a progressive frame ? */
92  bool b_top_field_first; /**< which field is first */
93  unsigned int i_nb_fields; /**< # of displayed fields */
94  /**@}*/
95 
96  /** Private data - the video output plugin might want to put stuff here to
97  * keep track of the picture */
99 
100  /** This way the picture_Release can be overloaded */
101  struct
102  {
104  void (*pf_destroy)( picture_t * );
106  } gc;
107 
108  /** Next picture in a FIFO a pictures */
109  struct picture_t *p_next;
110 };
111 
112 /**
113  * This function will create a new picture.
114  * The picture created will implement a default release management compatible
115  * with picture_Hold and picture_Release. This default management will release
116  * p_sys, gc.p_sys fields if non NULL.
117  */
118 VLC_API picture_t * picture_New( vlc_fourcc_t i_chroma, int i_width, int i_height, int i_sar_num, int i_sar_den ) VLC_USED;
119 
120 /**
121  * This function will create a new picture using the given format.
122  *
123  * When possible, it is preferred to use this function over picture_New
124  * as more information about the format is kept.
125  */
127 
128 /**
129  * Resource for a picture.
130  */
131 typedef struct
132 {
135  /* Plane resources
136  * XXX all fields MUST be set to the right value.
137  */
138  struct
139  {
140  uint8_t *p_pixels; /**< Start of the plane's data */
141  int i_lines; /**< Number of lines, including margins */
142  int i_pitch; /**< Number of bytes in a line, including margins */
144 
146 
147 /**
148  * This function will create a new picture using the provided resource.
149  *
150  * If the resource is NULL then a plain picture_NewFromFormat is returned.
151  */
153 
154 /**
155  * This function will increase the picture reference count.
156  * It will not have any effect on picture obtained from vout
157  *
158  * It returns the given picture for convenience.
159  */
160 VLC_API picture_t *picture_Hold( picture_t *p_picture );
161 
162 /**
163  * This function will release a picture.
164  * It will not have any effect on picture obtained from vout
165  */
166 VLC_API void picture_Release( picture_t *p_picture );
167 
168 /**
169  * This function will return true if you are not the only owner of the
170  * picture.
171  *
172  * It is only valid if it is created using picture_New.
173  */
174 VLC_API bool picture_IsReferenced( picture_t *p_picture );
175 
176 /**
177  * This function will copy all picture dynamic properties.
178  */
179 VLC_API void picture_CopyProperties( picture_t *p_dst, const picture_t *p_src );
180 
181 /**
182  * This function will reset a picture information (properties and quantizers).
183  * It is sometimes useful for reusing pictures (like from a pool).
184  */
186 
187 /**
188  * This function will copy the picture pixels.
189  * You can safely copy between pictures that do not have the same size,
190  * only the compatible(smaller) part will be copied.
191  */
192 VLC_API void picture_CopyPixels( picture_t *p_dst, const picture_t *p_src );
193 VLC_API void plane_CopyPixels( plane_t *p_dst, const plane_t *p_src );
194 
195 /**
196  * This function will copy both picture dynamic properties and pixels.
197  * You have to notice that sometime a simple picture_Hold may do what
198  * you want without the copy overhead.
199  * Provided for convenience.
200  *
201  * \param p_dst pointer to the destination picture.
202  * \param p_src pointer to the source picture.
203  */
204 VLC_API void picture_Copy( picture_t *p_dst, const picture_t *p_src );
205 
206 /**
207  * This function will export a picture to an encoded bitstream.
208  *
209  * pp_image will contain the encoded bitstream in psz_format format.
210  *
211  * p_fmt can be NULL otherwise it will be set with the format used for the
212  * picture before encoding.
213  *
214  * i_override_width/height allow to override the width and/or the height of the
215  * picture to be encoded:
216  * - if strictly lower than 0, the original dimension will be used.
217  * - if equal to 0, it will be deduced from the other dimension which must be
218  * different to 0.
219  * - if strictly higher than 0, it will override the dimension.
220  * If at most one of them is > 0 then the picture aspect ratio will be kept.
221  */
222 VLC_API int picture_Export( vlc_object_t *p_obj, block_t **pp_image, video_format_t *p_fmt, picture_t *p_picture, vlc_fourcc_t i_format, int i_override_width, int i_override_height );
223 
224 /**
225  * This function will setup all fields of a picture_t without allocating any
226  * memory.
227  * XXX The memory must already be initialized.
228  * It does not need to be released.
229  *
230  * It will return VLC_EGENERIC if the core does not understand the requested
231  * format.
232  *
233  * It can be useful to get the properties of planes.
234  */
235 VLC_API int picture_Setup( picture_t *, vlc_fourcc_t i_chroma, int i_width, int i_height, int i_sar_num, int i_sar_den );
236 
237 
238 /**
239  * This function will blend a given subpicture onto a picture.
240  *
241  * The subpicture and all its region must:
242  * - be absolute.
243  * - not be ephemere.
244  * - not have the fade flag.
245  * - contains only picture (no text rendering).
246  */
247 VLC_API void picture_BlendSubpicture( picture_t *, filter_t *p_blend, subpicture_t * );
248 
249 
250 /*****************************************************************************
251  * Shortcuts to access image components
252  *****************************************************************************/
253 
254 /* Plane indices */
255 enum
256 {
257  Y_PLANE = 0,
258  U_PLANE = 1,
259  V_PLANE = 2,
260  A_PLANE = 3,
261 };
262 
263 /* Shortcuts */
264 #define Y_PIXELS p[Y_PLANE].p_pixels
265 #define Y_PITCH p[Y_PLANE].i_pitch
266 #define U_PIXELS p[U_PLANE].p_pixels
267 #define U_PITCH p[U_PLANE].i_pitch
268 #define V_PIXELS p[V_PLANE].p_pixels
269 #define V_PITCH p[V_PLANE].i_pitch
270 #define A_PIXELS p[A_PLANE].p_pixels
271 #define A_PITCH p[A_PLANE].i_pitch
273 /**@}*/
274 
275 #endif /* VLC_PICTURE_H */