Move disc defaults to libvlc-module.c, fix Windows VCD and CD long text
[vlc/asuraparaju-public.git] / include / vlc_picture_pool.h
blobd22dbed8e9a6fc05bc5cd8400ade70e258fea03b
1 /*****************************************************************************
2 * vlc_picture_pool.h: picture pool definitions
3 *****************************************************************************
4 * Copyright (C) 2009 the VideoLAN team
5 * $Id$
7 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef VLC_PICTURE_POOL_H
25 #define VLC_PICTURE_POOL_H 1
27 /**
28 * \file
29 * This file defines picture pool structures and functions in vlc
32 #include <vlc_picture.h>
34 /**
35 * Picture pool handle
37 * XXX it is not thread safe, all pool manipulations and picture_Release
38 * must be properly locked if needed.
40 typedef struct picture_pool_t picture_pool_t;
42 /**
43 * Picture pool configuration
45 typedef struct {
46 int picture_count;
47 picture_t **picture;
49 int (*lock)(picture_t *);
50 void (*unlock)(picture_t *);
51 } picture_pool_configuration_t;
53 /**
54 * It creates a picture_pool_t wrapping the given configuration.
56 * It avoids useless picture creations/destructions.
57 * The given picture must not have a reference count greater than 1.
58 * The pool takes ownership of the picture and MUST not be used directly.
59 * When deleted, the pool will release the pictures using picture_Release.
60 * If defined, picture_pool_configuration_t::lock will be called before
61 * a picture is used, and picture_pool_configuration_t::unlock will be called
62 * as soon as a picture is unused. They are allowed to modify picture_t::p and
63 * access picture_t::p_sys.
65 VLC_EXPORT( picture_pool_t *, picture_pool_NewExtended, ( const picture_pool_configuration_t * ) LIBVLC_USED );
67 /**
68 * It creates a picture_pool_t wrapping the given arrays of picture.
70 * It is provided as convenience.
72 VLC_EXPORT( picture_pool_t *, picture_pool_New, ( int picture_count, picture_t *picture[] ) LIBVLC_USED );
74 /**
75 * It creates a picture_pool_t creating images using the given format.
77 * Provided for convenience.
79 VLC_EXPORT( picture_pool_t *, picture_pool_NewFromFormat, ( const video_format_t *, int picture_count ) LIBVLC_USED );
81 /**
82 * It destroys a pool created by picture_pool_New.
84 * All pictures must already be released to the pool. The pool will then
85 * released them.
87 VLC_EXPORT( void, picture_pool_Delete, ( picture_pool_t * ) );
89 /**
90 * It retreives a picture_t from a pool.
92 * The picture must be release by using picture_Release.
94 VLC_EXPORT( picture_t *, picture_pool_Get, ( picture_pool_t * ) LIBVLC_USED );
96 /**
97 * It forces the next picture_pool_Get to return a picture even if no
98 * pictures are free.
100 * If b_reset is true, all pictures will be marked as free.
102 * It does it by releasing itself the oldest used picture if none is
103 * available.
104 * XXX it should be used with great care, the only reason you may need
105 * it is to workaround a bug.
107 VLC_EXPORT( void, picture_pool_NonEmpty, ( picture_pool_t *, bool reset ) );
110 * It reserves picture_count pictures from the given pool and returns
111 * a new pool with thoses pictures.
113 * The master pool must be full.
114 * The returned pool must be deleted before the master pool.
115 * When deleted, all pictures return to the master pool.
117 VLC_EXPORT( picture_pool_t *, picture_pool_Reserve, (picture_pool_t *, int picture_count) LIBVLC_USED );
120 * It returns the size of the given pool.
122 VLC_EXPORT( int, picture_pool_GetSize, (picture_pool_t *) );
125 #endif /* VLC_PICTURE_POOL_H */