1 /*****************************************************************************
2 * vlc_picture.h: picture definitions
3 *****************************************************************************
4 * Copyright (C) 1999 - 2009 VLC authors and VideoLAN
6 * Authors: Vincent Seguin <seguin@via.ecp.fr>
7 * Samuel Hocevar <sam@via.ecp.fr>
8 * Olivier Aubert <oaubert 47 videolan d07 org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
26 #define VLC_PICTURE_H 1
29 #include <vlc_atomic.h>
33 * This file defines picture structures and functions in vlc
38 /** Description of a planar graphic field */
39 typedef struct plane_t
41 uint8_t *p_pixels
; /**< Start of the plane's data */
43 /* Variables used for fast memcpy operations */
44 int i_lines
; /**< Number of lines, including margins */
45 int i_pitch
; /**< Number of bytes in a line, including margins */
47 /** Size of a macropixel, defaults to 1 */
50 /* Variables used for pictures with margins */
51 int i_visible_lines
; /**< How many visible lines are there? */
52 int i_visible_pitch
; /**< How many visible pixels are there? */
57 * Maximum number of plane for a picture
59 #define PICTURE_PLANE_MAX (VOUT_MAX_PLANES)
61 typedef struct picture_context_t
63 void (*destroy
)(struct picture_context_t
*);
64 struct picture_context_t
*(*copy
)(struct picture_context_t
*);
65 struct vlc_video_context
*vctx
;
68 typedef struct picture_buffer_t
76 typedef struct vlc_decoder_device vlc_decoder_device
;
77 typedef struct vlc_video_context vlc_video_context
;
79 struct vlc_video_context_operations
81 void (*destroy
)(void *priv
);
84 /** Decoder device type */
85 enum vlc_video_context_type
87 VLC_VIDEO_CONTEXT_NONE
,
88 VLC_VIDEO_CONTEXT_VAAPI
,
89 VLC_VIDEO_CONTEXT_VDPAU
,
90 VLC_VIDEO_CONTEXT_DXVA2
, /**< private: d3d9_video_context_t* */
91 VLC_VIDEO_CONTEXT_D3D11VA
, /**< private: d3d11_video_context_t* */
92 VLC_VIDEO_CONTEXT_AWINDOW
, /**< private: android_video_context_t* */
93 VLC_VIDEO_CONTEXT_NVDEC
,
94 VLC_VIDEO_CONTEXT_CVPX
,
95 VLC_VIDEO_CONTEXT_MMAL
,
98 VLC_API vlc_video_context
* vlc_video_context_Create(vlc_decoder_device
*,
99 enum vlc_video_context_type private_type
,
101 const struct vlc_video_context_operations
*);
102 VLC_API
void vlc_video_context_Release(vlc_video_context
*);
104 VLC_API
enum vlc_video_context_type
vlc_video_context_GetType(const vlc_video_context
*);
105 VLC_API
void *vlc_video_context_GetPrivate(vlc_video_context
*, enum vlc_video_context_type
);
106 VLC_API vlc_video_context
*vlc_video_context_Hold(vlc_video_context
*);
109 * Get the decoder device used by the device context.
111 * This will increment the refcount of the decoder device.
113 VLC_API vlc_decoder_device
*vlc_video_context_HoldDevice(vlc_video_context
*);
122 * The properties of the picture
124 video_frame_format_t format
;
126 plane_t p
[PICTURE_PLANE_MAX
]; /**< description of the planes */
127 int i_planes
; /**< number of allocated planes */
129 /** \name Picture management properties
130 * These properties can be modified using the video output thread API,
131 * but should never be written directly */
133 vlc_tick_t date
; /**< display date */
138 /** \name Picture dynamic properties
139 * Those properties can be changed by the decoder
142 bool b_progressive
; /**< is it a progressive frame? */
143 bool b_top_field_first
; /**< which field is first */
144 bool b_multiview_left_eye
; /**< left eye or right eye in multiview */
145 unsigned int i_nb_fields
; /**< number of displayed fields */
146 picture_context_t
*context
; /**< video format-specific data pointer */
149 /** Private data - the video output plugin might want to put stuff here to
150 * keep track of the picture */
153 /** Next picture in a FIFO a pictures */
154 struct picture_t
*p_next
;
156 vlc_atomic_rc_t refs
;
159 static inline vlc_video_context
* picture_GetVideoContext(picture_t
*pic
)
161 return pic
->context
? pic
->context
->vctx
: NULL
;
165 * Check whether a picture has other pictures linked
167 static inline bool picture_HasChainedPics(const picture_t
*pic
)
169 return pic
->p_next
!= NULL
;
173 * picture chaining helpers
176 typedef struct vlc_pic_chain
{
179 } vlc_picture_chain_t
;
182 * Initializes or reset a picture chain
184 * \warning do not call this if the chain still holds pictures, it will leak them.
186 static inline void vlc_picture_chain_Init(vlc_picture_chain_t
*chain
)
189 // chain->tail = NULL not needed
193 * Check whether a picture chain holds pictures or not.
195 * \return true if it is empty.
197 static inline bool vlc_picture_chain_IsEmpty(const vlc_picture_chain_t
*chain
)
199 return chain
->front
== NULL
;
203 * Check whether a picture chain has more than one picture.
205 static inline bool vlc_picture_chain_HasNext(const vlc_picture_chain_t
*chain
)
207 return !vlc_picture_chain_IsEmpty(chain
) && chain
->front
!= chain
->tail
;
211 * Pop the front of a picture chain.
213 * The next picture in the chain becomes the front of the picture chain.
215 * \return the front of the picture chain (the picture itself)
217 static inline picture_t
* vlc_picture_chain_PopFront(vlc_picture_chain_t
*chain
)
219 picture_t
*front
= chain
->front
;
222 chain
->front
= front
->p_next
;
223 // unlink the front picture from the rest of the chain
224 front
->p_next
= NULL
;
230 * Peek the front of a picture chain.
232 * The picture chain is unchanged.
234 * \return the front of the picture chain (the picture itself)
236 static inline picture_t
* vlc_picture_chain_PeekFront(vlc_picture_chain_t
*chain
)
242 * Append a picture to a picture chain.
244 * \param chain the picture chain pointer
245 * \param tail the known tail of the picture chain
246 * \param pic the picture to append to the chain
248 * \return the new tail of the picture chain
250 static inline void vlc_picture_chain_Append(vlc_picture_chain_t
*chain
,
253 if (chain
->front
== NULL
)
256 chain
->tail
->p_next
= pic
;
257 // make sure the picture doesn't have chained pics
258 vlc_assert( !picture_HasChainedPics( pic
) );
259 pic
->p_next
= NULL
; // we're appending a picture, not a chain
264 * Append a picture chain to a picture chain.
266 static inline void vlc_picture_chain_AppendChain(picture_t
*chain
, picture_t
*tail
)
268 chain
->p_next
= tail
;
272 * Copy the picture chain in another picture chain and clear the original
275 * \param in picture chain to copy and clear
276 * \param out picture chain to copy into
278 static inline void vlc_picture_chain_GetAndClear(vlc_picture_chain_t
*in
,
279 vlc_picture_chain_t
*out
)
282 vlc_picture_chain_Init(in
);
286 * Reset a picture chain.
288 * \return the picture chain that was contained in the picture
290 static inline vlc_picture_chain_t
picture_GetAndResetChain(picture_t
*pic
)
292 vlc_picture_chain_t chain
= { pic
->p_next
, pic
->p_next
};
293 while ( chain
.tail
&& chain
.tail
->p_next
) // find the proper tail
294 chain
.tail
= chain
.tail
->p_next
;
301 * This function will create a new picture.
302 * The picture created will implement a default release management compatible
303 * with picture_Hold and picture_Release. This default management will release
304 * p_sys, gc.p_sys fields if non NULL.
306 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
;
309 * This function will create a new picture using the given format.
311 * When possible, it is preferred to use this function over picture_New
312 * as more information about the format is kept.
314 VLC_API picture_t
* picture_NewFromFormat( const video_format_t
*p_fmt
) VLC_USED
;
317 * Resource for a picture.
322 void (*pf_destroy
)(picture_t
*);
325 * XXX all fields MUST be set to the right value.
329 uint8_t *p_pixels
; /**< Start of the plane's data */
330 int i_lines
; /**< Number of lines, including margins */
331 int i_pitch
; /**< Number of bytes in a line, including margins */
332 } p
[PICTURE_PLANE_MAX
];
334 } picture_resource_t
;
337 * This function will create a new picture using the provided resource.
339 VLC_API picture_t
* picture_NewFromResource( const video_format_t
*, const picture_resource_t
* ) VLC_USED
;
342 * Destroys a picture without references.
344 * This function destroys a picture with zero references left.
345 * Never call this function directly. Use picture_Release() instead.
347 VLC_API
void picture_Destroy(picture_t
*picture
);
350 * Increments the picture reference count.
354 static inline picture_t
*picture_Hold(picture_t
*picture
)
356 vlc_atomic_rc_inc(&picture
->refs
);
361 * Decrements the picture reference count.
363 * If the reference count reaches zero, the picture is destroyed. If it was
364 * allocated from a pool, the underlying picture buffer will be returned to the
365 * pool. Otherwise, the picture buffer will be freed.
367 static inline void picture_Release(picture_t
*picture
)
369 if (vlc_atomic_rc_dec(&picture
->refs
))
370 picture_Destroy(picture
);
374 * This function will copy all picture dynamic properties.
376 VLC_API
void picture_CopyProperties( picture_t
*p_dst
, const picture_t
*p_src
);
379 * This function will reset a picture information (properties and quantizers).
380 * It is sometimes useful for reusing pictures (like from a pool).
382 VLC_API
void picture_Reset( picture_t
* );
385 * This function will copy the picture pixels.
386 * You can safely copy between pictures that do not have the same size,
387 * only the compatible(smaller) part will be copied.
389 VLC_API
void picture_CopyPixels( picture_t
*p_dst
, const picture_t
*p_src
);
390 VLC_API
void plane_CopyPixels( plane_t
*p_dst
, const plane_t
*p_src
);
393 * This function will copy both picture dynamic properties and pixels.
394 * You have to notice that sometime a simple picture_Hold may do what
395 * you want without the copy overhead.
396 * Provided for convenience.
398 * \param p_dst pointer to the destination picture.
399 * \param p_src pointer to the source picture.
401 VLC_API
void picture_Copy( picture_t
*p_dst
, const picture_t
*p_src
);
404 * Perform a shallow picture copy
406 * This function makes a shallow copy of an existing picture. The same planes
407 * and resources will be used, and the cloned picture reference count will be
410 * \return A clone picture on success, NULL on error.
412 VLC_API picture_t
*picture_Clone(picture_t
*pic
);
415 * This function will export a picture to an encoded bitstream.
417 * pp_image will contain the encoded bitstream in psz_format format.
419 * p_fmt can be NULL otherwise it will be set with the format used for the
420 * picture before encoding.
422 * i_override_width/height allow to override the width and/or the height of the
423 * picture to be encoded:
424 * - if strictly lower than 0, the original dimension will be used.
425 * - if equal to 0, it will be deduced from the other dimension which must be
427 * - if strictly higher than 0, it will either override the dimension if b_crop
428 * is false, or crop the picture to the provided size if b_crop is true.
429 * If at most one of them is > 0 then the picture aspect ratio will be kept.
431 VLC_API
int picture_Export( vlc_object_t
*p_obj
, block_t
**pp_image
, video_format_t
*p_fmt
,
432 picture_t
*p_picture
, vlc_fourcc_t i_format
, int i_override_width
,
433 int i_override_height
, bool b_crop
);
436 * This function will setup all fields of a picture_t without allocating any
438 * XXX The memory must already be initialized.
439 * It does not need to be released.
441 * It will return VLC_EGENERIC if the core does not understand the requested
444 * It can be useful to get the properties of planes.
446 VLC_API
int picture_Setup( picture_t
*, const video_format_t
* );
449 /*****************************************************************************
450 * Shortcuts to access image components
451 *****************************************************************************/
463 #define Y_PIXELS p[Y_PLANE].p_pixels
464 #define Y_PITCH p[Y_PLANE].i_pitch
465 #define U_PIXELS p[U_PLANE].p_pixels
466 #define U_PITCH p[U_PLANE].i_pitch
467 #define V_PIXELS p[V_PLANE].p_pixels
468 #define V_PITCH p[V_PLANE].i_pitch
469 #define A_PIXELS p[A_PLANE].p_pixels
470 #define A_PITCH p[A_PLANE].i_pitch
473 * Swap UV planes of a Tri Planars picture.
475 * It just swap the planes information without doing any copy.
477 static inline void picture_SwapUV(picture_t
*picture
)
479 vlc_assert(picture
->i_planes
== 3);
481 plane_t tmp_plane
= picture
->p
[U_PLANE
];
482 picture
->p
[U_PLANE
] = picture
->p
[V_PLANE
];
483 picture
->p
[V_PLANE
] = tmp_plane
;
488 #endif /* VLC_PICTURE_H */