1 /*****************************************************************************
2 * vlc_picture_pool.h: picture pool definitions
3 *****************************************************************************
4 * Copyright (C) 2009 VLC authors and VideoLAN
6 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 *****************************************************************************/
23 #ifndef VLC_PICTURE_POOL_H
24 #define VLC_PICTURE_POOL_H 1
28 * This file defines picture pool structures and functions in vlc
31 #include <vlc_picture.h>
36 typedef struct picture_pool_t picture_pool_t
;
39 * Creates a pool of preallocated pictures. Free pictures can be allocated from
40 * the pool, and are returned to the pool when they are no longer referenced.
42 * This avoids allocating and deallocationg pictures repeatedly, and ensures
43 * that memory consumption remains within limits.
45 * To obtain a picture from the pool, use picture_pool_Get(). To increase and
46 * decrease the reference count, use picture_Hold() and picture_Release()
49 * @param count number of pictures in the array
50 * @param tab array of pictures
52 * @return a pointer to the new pool on success, or NULL on error
53 * (pictures are <b>not</b> released on error)
55 VLC_API picture_pool_t
* picture_pool_New(unsigned count
,
56 picture_t
*const *tab
) VLC_USED
;
59 * Allocates pictures from the heap and creates a picture pool with them.
60 * This is a convenience wrapper for picture_NewFromFormat() and
63 * @param fmt video format of pictures to allocate from the heap
64 * @param count number of pictures to allocate
66 * @return a pointer to the new pool on success, NULL on error
68 VLC_API picture_pool_t
* picture_pool_NewFromFormat(const video_format_t
*fmt
,
69 unsigned count
) VLC_USED
;
72 * Releases a pool created by picture_pool_New()
73 * or picture_pool_NewFromFormat().
75 * @note If there are no pending references to the pooled pictures, and the
76 * picture_resource_t.pf_destroy callback was not NULL, it will be invoked.
77 * Otherwise the default callback will be used.
79 * @warning If there are pending references (a.k.a. late pictures), the
80 * pictures will remain valid until the all pending references are dropped by
83 VLC_API
void picture_pool_Release( picture_pool_t
* );
86 * Obtains a picture from a pool if any is immediately available.
88 * The picture must be released with picture_Release().
90 * @return a picture, or NULL if all pictures in the pool are allocated
92 * @note This function is thread-safe.
94 VLC_API picture_t
* picture_pool_Get( picture_pool_t
* ) VLC_USED
;
97 * Obtains a picture from a pool.
99 * The picture must be released with picture_Release().
101 * @return a picture or NULL on memory error
103 * @note This function is thread-safe.
105 VLC_API picture_t
*picture_pool_Wait(picture_pool_t
*) VLC_USED
;
108 * Cancel the picture pool.
110 * It won't return any pictures via picture_pool_Get or picture_pool_Wait if
111 * canceled is true. This function will also unblock picture_pool_Wait.
113 void picture_pool_Cancel( picture_pool_t
*, bool canceled
);
116 * Reserves pictures from a pool and creates a new pool with those.
118 * When the new pool is released, pictures are returned to the master pool.
119 * If the master pool was already released, pictures will be destroyed.
121 * @param count number of picture to reserve
123 * @return the new pool, or NULL if there were not enough pictures available
126 * @note This function is thread-safe (but it might return NULL if other
127 * threads have already allocated too many pictures).
129 VLC_API picture_pool_t
* picture_pool_Reserve(picture_pool_t
*, unsigned count
)
133 * @return the total number of pictures in the given pool
134 * @note This function is thread-safe.
136 unsigned picture_pool_GetSize(const picture_pool_t
*);
139 #endif /* VLC_PICTURE_POOL_H */