2010-11-02 17:56:29 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2010 Wim Taymans <wim.taymans@gmail.com>
|
|
|
|
*
|
|
|
|
* gstbufferpool.h: Header for GstBufferPool object
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_BUFFER_POOL_H__
|
|
|
|
#define __GST_BUFFER_POOL_H__
|
|
|
|
|
|
|
|
#include <gst/gstminiobject.h>
|
|
|
|
#include <gst/gstatomicqueue.h>
|
|
|
|
#include <gst/gstpoll.h>
|
|
|
|
#include <gst/gstclock.h>
|
|
|
|
#include <gst/gstpad.h>
|
|
|
|
#include <gst/gstbuffer.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-02-17 15:46:51 +00:00
|
|
|
typedef struct _GstBufferPoolPrivate GstBufferPoolPrivate;
|
2010-11-02 17:56:29 +00:00
|
|
|
typedef struct _GstBufferPoolClass GstBufferPoolClass;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_BUFFER_POOL_TRACE_NAME:
|
|
|
|
*
|
|
|
|
* The name used for tracing memory allocations.
|
|
|
|
*/
|
|
|
|
#define GST_BUFFER_POOL_TRACE_NAME "GstBufferPool"
|
|
|
|
|
|
|
|
#define GST_TYPE_BUFFER_POOL (gst_buffer_pool_get_type())
|
|
|
|
#define GST_IS_BUFFER_POOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_BUFFER_POOL))
|
|
|
|
#define GST_IS_BUFFER_POOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_BUFFER_POOL))
|
|
|
|
#define GST_BUFFER_POOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_BUFFER_POOL, GstBufferPoolClass))
|
|
|
|
#define GST_BUFFER_POOL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_BUFFER_POOL, GstBufferPool))
|
|
|
|
#define GST_BUFFER_POOL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_BUFFER_POOL, GstBufferPoolClass))
|
|
|
|
#define GST_BUFFER_POOL_CAST(obj) ((GstBufferPool *)(obj))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstBufferPoolFlags:
|
|
|
|
* @GST_BUFFER_POOL_FLAG_NONE: no flags
|
|
|
|
* @GST_BUFFER_POOL_FLAG_KEY_UNIT: buffer is keyframe
|
|
|
|
* @GST_BUFFER_POOL_FLAG_WAIT: wait for buffer
|
|
|
|
* @GST_BUFFER_POOL_FLAG_DISCONT: buffer is discont
|
|
|
|
*
|
|
|
|
* Additional flags to control the allocation of a buffer
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
GST_BUFFER_POOL_FLAG_NONE = 0,
|
|
|
|
GST_BUFFER_POOL_FLAG_KEY_UNIT = (1 << 0),
|
|
|
|
GST_BUFFER_POOL_FLAG_WAIT = (1 << 1),
|
|
|
|
GST_BUFFER_POOL_FLAG_DISCONT = (1 << 2),
|
|
|
|
GST_BUFFER_POOL_FLAG_LAST = (1 << 16),
|
|
|
|
} GstBufferPoolFlags;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstBufferPoolParams:
|
|
|
|
* @format: the format of @start and @stop
|
|
|
|
* @start: the start position
|
|
|
|
* @stop: the stop position
|
|
|
|
* @flags: additional flags
|
|
|
|
*
|
|
|
|
* Parameters passed to the gst_buffer_pool_acquire_buffer() function to control the
|
|
|
|
* allocation of the buffer.
|
|
|
|
*/
|
|
|
|
typedef struct _GstBufferPoolParams {
|
|
|
|
GstFormat format;
|
|
|
|
gint64 start;
|
|
|
|
gint64 stop;
|
|
|
|
GstBufferPoolFlags flags;
|
|
|
|
} GstBufferPoolParams;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstBufferPool:
|
|
|
|
* @mini_object: the parent structure
|
|
|
|
*
|
|
|
|
* The structure of a #GstBufferPool. Use the associated macros to access the public
|
|
|
|
* variables.
|
|
|
|
*/
|
|
|
|
struct _GstBufferPool {
|
|
|
|
GstObject object;
|
|
|
|
|
|
|
|
/*< private >*/
|
2011-02-18 11:50:21 +00:00
|
|
|
gboolean active;
|
2011-02-21 11:18:41 +00:00
|
|
|
gboolean flushing;
|
2011-02-21 16:33:38 +00:00
|
|
|
gboolean started;
|
2011-02-18 15:15:30 +00:00
|
|
|
gint outstanding;
|
2010-11-02 17:56:29 +00:00
|
|
|
GstAtomicQueue *queue;
|
|
|
|
GstPoll *poll;
|
|
|
|
|
2011-02-18 15:15:30 +00:00
|
|
|
gboolean configured;
|
2011-02-17 15:46:51 +00:00
|
|
|
GstStructure *config;
|
|
|
|
|
|
|
|
GstBufferPoolPrivate *priv;
|
2010-11-02 17:56:29 +00:00
|
|
|
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstBufferPoolClass {
|
|
|
|
GstObjectClass object_class;
|
|
|
|
|
|
|
|
/* vmethods */
|
2011-02-17 15:46:51 +00:00
|
|
|
gboolean (*set_config) (GstBufferPool *pool, GstStructure *config);
|
2010-11-02 17:56:29 +00:00
|
|
|
|
2011-02-21 16:33:38 +00:00
|
|
|
gboolean (*start) (GstBufferPool *pool);
|
|
|
|
gboolean (*stop) (GstBufferPool *pool);
|
|
|
|
|
2010-11-02 17:56:29 +00:00
|
|
|
GstFlowReturn (*acquire_buffer) (GstBufferPool *pool, GstBuffer **buffer,
|
|
|
|
GstBufferPoolParams *params);
|
|
|
|
GstFlowReturn (*alloc_buffer) (GstBufferPool *pool, GstBuffer **buffer,
|
|
|
|
GstBufferPoolParams *params);
|
|
|
|
void (*release_buffer) (GstBufferPool *pool, GstBuffer *buffer);
|
|
|
|
void (*free_buffer) (GstBufferPool *pool, GstBuffer *buffer);
|
|
|
|
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_buffer_pool_get_type (void);
|
|
|
|
|
|
|
|
/* allocation */
|
2011-02-17 15:46:51 +00:00
|
|
|
GstBufferPool * gst_buffer_pool_new (void);
|
2010-11-02 17:56:29 +00:00
|
|
|
|
|
|
|
/* state management */
|
2011-02-18 15:15:30 +00:00
|
|
|
gboolean gst_buffer_pool_set_active (GstBufferPool *pool, gboolean active);
|
2011-02-17 15:46:51 +00:00
|
|
|
|
|
|
|
gboolean gst_buffer_pool_set_config (GstBufferPool *pool, GstStructure *config);
|
2011-02-21 11:18:41 +00:00
|
|
|
GstStructure * gst_buffer_pool_get_config (GstBufferPool *pool);
|
2010-11-02 17:56:29 +00:00
|
|
|
|
2011-02-17 15:46:51 +00:00
|
|
|
/* helpers for configuring the config structure */
|
2011-03-03 15:31:49 +00:00
|
|
|
void gst_buffer_pool_config_set (GstStructure *config, const GstCaps *caps,
|
|
|
|
guint size, guint min_buffers, guint max_buffers,
|
2011-02-17 15:46:51 +00:00
|
|
|
guint prefix, guint postfix, guint align);
|
2011-03-03 15:31:49 +00:00
|
|
|
gboolean gst_buffer_pool_config_get (GstStructure *config, const GstCaps **caps,
|
|
|
|
guint *size, guint *min_buffers, guint *max_buffers,
|
2011-02-17 15:46:51 +00:00
|
|
|
guint *prefix, guint *postfix, guint *align);
|
2010-11-02 17:56:29 +00:00
|
|
|
|
|
|
|
/* buffer management */
|
2011-02-17 15:46:51 +00:00
|
|
|
GstFlowReturn gst_buffer_pool_acquire_buffer (GstBufferPool *pool, GstBuffer **buffer,
|
|
|
|
GstBufferPoolParams *params);
|
|
|
|
void gst_buffer_pool_release_buffer (GstBufferPool *pool, GstBuffer *buffer);
|
2010-11-02 17:56:29 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_BUFFER_POOL_H__ */
|