gstfunnel: avoid access of freed pad
[platform/upstream/gstreamer.git] / gst / gstbufferpool.h
1 /* GStreamer
2  * Copyright (C) 2010 Wim Taymans <wim.taymans@gmail.com>
3  *
4  * gstbufferpool.h: Header for GstBufferPool object
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22
23 #ifndef __GST_BUFFER_POOL_H__
24 #define __GST_BUFFER_POOL_H__
25
26 #include <gst/gstminiobject.h>
27 #include <gst/gstpad.h>
28 #include <gst/gstbuffer.h>
29
30 G_BEGIN_DECLS
31
32 typedef struct _GstBufferPoolPrivate GstBufferPoolPrivate;
33 typedef struct _GstBufferPoolClass GstBufferPoolClass;
34
35 #define GST_TYPE_BUFFER_POOL                 (gst_buffer_pool_get_type())
36 #define GST_IS_BUFFER_POOL(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_BUFFER_POOL))
37 #define GST_IS_BUFFER_POOL_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_BUFFER_POOL))
38 #define GST_BUFFER_POOL_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_BUFFER_POOL, GstBufferPoolClass))
39 #define GST_BUFFER_POOL(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_BUFFER_POOL, GstBufferPool))
40 #define GST_BUFFER_POOL_CLASS(klass)         (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_BUFFER_POOL, GstBufferPoolClass))
41 #define GST_BUFFER_POOL_CAST(obj)            ((GstBufferPool *)(obj))
42
43 /**
44  * GstBufferPoolAcquireFlags:
45  * @GST_BUFFER_POOL_ACQUIRE_FLAG_NONE: no flags
46  * @GST_BUFFER_POOL_ACQUIRE_FLAG_KEY_UNIT: buffer is keyframe
47  * @GST_BUFFER_POOL_ACQUIRE_FLAG_DONTWAIT: don't wait for buffer. This makes the
48  * acquire_buffer method return GST_FLOW_EOS.
49  * @GST_BUFFER_POOL_ACQUIRE_FLAG_DISCONT: buffer is discont
50  * @GST_BUFFER_POOL_ACQUIRE_FLAG_LAST: last flag, subclasses can use private flags
51  *    starting from this value.
52  *
53  * Additional flags to control the allocation of a buffer
54  */
55 typedef enum {
56   GST_BUFFER_POOL_ACQUIRE_FLAG_NONE     = 0,
57   GST_BUFFER_POOL_ACQUIRE_FLAG_KEY_UNIT = (1 << 0),
58   GST_BUFFER_POOL_ACQUIRE_FLAG_DONTWAIT = (1 << 1),
59   GST_BUFFER_POOL_ACQUIRE_FLAG_DISCONT  = (1 << 2),
60   GST_BUFFER_POOL_ACQUIRE_FLAG_LAST     = (1 << 16),
61 } GstBufferPoolAcquireFlags;
62
63 /**
64  * GstBufferPoolAcquireParams:
65  * @format: the format of @start and @stop
66  * @start: the start position
67  * @stop: the stop position
68  * @flags: additional flags
69  *
70  * Parameters passed to the gst_buffer_pool_acquire_buffer() function to control the
71  * allocation of the buffer.
72  *
73  * The default implementation ignores the @start and @stop members but other
74  * implementations can use this extra information to decide what buffer to
75  * return.
76  */
77 typedef struct _GstBufferPoolAcquireParams {
78   GstFormat                 format;
79   gint64                    start;
80   gint64                    stop;
81   GstBufferPoolAcquireFlags flags;
82
83   /*< private >*/
84   gpointer _gst_reserved[GST_PADDING];
85 } GstBufferPoolAcquireParams;
86
87 /**
88  * GST_BUFFER_POOL_IS_FLUSHING:
89  * @pool: a GstBufferPool
90  *
91  * Check if the bufferpool is flushing. Subclasses might want to check the
92  * state of the pool in the acquire function.
93  */
94 #define GST_BUFFER_POOL_IS_FLUSHING(pool)  (g_atomic_int_get (&pool->flushing))
95
96 /**
97  * GstBufferPool:
98  * @object: the parent structure
99  *
100  * The structure of a #GstBufferPool. Use the associated macros to access the public
101  * variables.
102  */
103 struct _GstBufferPool {
104   GstObject            object;
105
106   /*< protected >*/
107   gint                 flushing;
108
109   /*< private >*/
110   GstBufferPoolPrivate *priv;
111
112   gpointer _gst_reserved[GST_PADDING];
113 };
114
115 /**
116  * GstBufferPoolClass:
117  * @object_class:  Object parent class
118  * @get_options: get a list of options supported by this pool
119  * @set_config: apply the bufferpool configuration. The default configuration
120  *              will parse the default config parameters
121  * @start: start the bufferpool. The default implementation will preallocate
122  *         min-buffers buffers and put them in the queue
123  * @stop: stop the bufferpool. the default implementation will free the
124  *        preallocated buffers. This function is called when all the buffers are
125  *        returned to the pool.
126  * @acquire_buffer: get a new buffer from the pool. The default implementation
127  *        will take a buffer from the queue and optionally wait for a buffer to
128  *        be released when there are no buffers available.
129  * @alloc_buffer: allocate a buffer. the default implementation allocates
130  *        buffers from the configured memory allocator and with the configured
131  *        parameters. All metadata that is present on the allocated buffer will
132  *        be marked as #GST_META_FLAG_POOLED and #GST_META_FLAG_LOCKED and will
133  *        not be removed from the buffer in @reset_buffer.
134  * @reset_buffer: reset the buffer to its state when it was freshly allocated.
135  *        The default implementation will clear the flags, timestamps and
136  *        will remove the metadata without the #GST_META_FLAG_POOLED flag (even
137  *        the metadata with #GST_META_FLAG_LOCKED).
138  * @release_buffer: release a buffer back in the pool. The default
139  *        implementation will put the buffer back in the queue and notify any
140  *        blocking acquire_buffer calls.
141  * @free_buffer: free a buffer. The default implementation unrefs the buffer.
142  *
143  * The GstBufferPool class.
144  */
145 struct _GstBufferPoolClass {
146   GstObjectClass    object_class;
147
148   /* vmethods */
149   const gchar ** (*get_options)    (GstBufferPool *pool);
150   gboolean       (*set_config)     (GstBufferPool *pool, GstStructure *config);
151
152   gboolean       (*start)          (GstBufferPool *pool);
153   gboolean       (*stop)           (GstBufferPool *pool);
154
155   GstFlowReturn  (*acquire_buffer) (GstBufferPool *pool, GstBuffer **buffer,
156                                     GstBufferPoolAcquireParams *params);
157   GstFlowReturn  (*alloc_buffer)   (GstBufferPool *pool, GstBuffer **buffer,
158                                     GstBufferPoolAcquireParams *params);
159   void           (*reset_buffer)   (GstBufferPool *pool, GstBuffer *buffer);
160   void           (*release_buffer) (GstBufferPool *pool, GstBuffer *buffer);
161   void           (*free_buffer)    (GstBufferPool *pool, GstBuffer *buffer);
162
163   /*< private >*/
164   gpointer _gst_reserved[GST_PADDING];
165 };
166
167 GType       gst_buffer_pool_get_type (void);
168
169 /* allocation */
170 GstBufferPool *  gst_buffer_pool_new  (void);
171
172 /* state management */
173 gboolean         gst_buffer_pool_set_active      (GstBufferPool *pool, gboolean active);
174 gboolean         gst_buffer_pool_is_active       (GstBufferPool *pool);
175
176 gboolean         gst_buffer_pool_set_config      (GstBufferPool *pool, GstStructure *config);
177 GstStructure *   gst_buffer_pool_get_config      (GstBufferPool *pool);
178
179 const gchar **   gst_buffer_pool_get_options     (GstBufferPool *pool);
180 gboolean         gst_buffer_pool_has_option      (GstBufferPool *pool, const gchar *option);
181
182
183 /* helpers for configuring the config structure */
184 void             gst_buffer_pool_config_set_params    (GstStructure *config, GstCaps *caps,
185                                                        guint size, guint min_buffers, guint max_buffers);
186 gboolean         gst_buffer_pool_config_get_params    (GstStructure *config, GstCaps **caps,
187                                                        guint *size, guint *min_buffers, guint *max_buffers);
188 void             gst_buffer_pool_config_set_allocator (GstStructure *config, GstAllocator *allocator,
189                                                        const GstAllocationParams *params);
190 gboolean         gst_buffer_pool_config_get_allocator (GstStructure *config, GstAllocator **allocator,
191                                                        GstAllocationParams *params);
192
193 /* options */
194 guint            gst_buffer_pool_config_n_options   (GstStructure *config);
195 void             gst_buffer_pool_config_add_option  (GstStructure *config, const gchar *option);
196 const gchar *    gst_buffer_pool_config_get_option  (GstStructure *config, guint index);
197 gboolean         gst_buffer_pool_config_has_option  (GstStructure *config, const gchar *option);
198
199 /* buffer management */
200 GstFlowReturn    gst_buffer_pool_acquire_buffer  (GstBufferPool *pool, GstBuffer **buffer,
201                                                   GstBufferPoolAcquireParams *params);
202 void             gst_buffer_pool_release_buffer  (GstBufferPool *pool, GstBuffer *buffer);
203
204 G_END_DECLS
205
206 #endif /* __GST_BUFFER_POOL_H__ */