2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gstbuffer.h: Header for GstBuffer object
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* 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_H__
|
|
|
|
#define __GST_BUFFER_H__
|
|
|
|
|
2001-12-15 18:15:13 +00:00
|
|
|
/*
|
|
|
|
* Define this to add file:line info to each GstBuffer showing
|
|
|
|
* the location in the source code where the buffer was created.
|
|
|
|
*
|
|
|
|
* #define GST_BUFFER_WHERE
|
|
|
|
*
|
|
|
|
* Then in gdb, you can `call gst_buffer_print_live()' to get a list
|
|
|
|
* of allocated GstBuffers and also the file:line where they were
|
|
|
|
* allocated.
|
|
|
|
*/
|
2001-10-17 10:21:27 +00:00
|
|
|
|
|
|
|
#include <gst/gstdata.h>
|
2000-12-28 22:12:02 +00:00
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2000-12-28 22:12:02 +00:00
|
|
|
#include "config.h"
|
2000-12-15 01:57:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ATOMIC_H
|
|
|
|
#include <asm/atomic.h>
|
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
extern GType _gst_buffer_type;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#define GST_TYPE_BUFFER (_gst_buffer_type)
|
|
|
|
#define GST_BUFFER(buf) ((GstBuffer *)(buf))
|
|
|
|
#define GST_IS_BUFFER(buf) (GST_DATA_TYPE(buf) == GST_TYPE_BUFFER)
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#define GST_BUFFER_FLAGS(buf) (GST_BUFFER(buf)->flags)
|
|
|
|
#define GST_BUFFER_FLAG_IS_SET(buf,flag) (GST_BUFFER_FLAGS(buf) & (1<<(flag)))
|
|
|
|
#define GST_BUFFER_FLAG_SET(buf,flag) G_STMT_START{ (GST_BUFFER_FLAGS(buf) |= (1<<(flag))); }G_STMT_END
|
|
|
|
#define GST_BUFFER_FLAG_UNSET(buf,flag) G_STMT_START{ (GST_BUFFER_FLAGS(buf) &= ~(1<<(flag))); }G_STMT_END
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define GST_BUFFER_DATA(buf) (GST_BUFFER(buf)->data)
|
|
|
|
#define GST_BUFFER_SIZE(buf) (GST_BUFFER(buf)->size)
|
|
|
|
#define GST_BUFFER_OFFSET(buf) (GST_BUFFER(buf)->offset)
|
|
|
|
#define GST_BUFFER_MAXSIZE(buf) (GST_BUFFER(buf)->maxsize)
|
|
|
|
#define GST_BUFFER_TIMESTAMP(buf) (GST_BUFFER(buf)->timestamp)
|
2001-04-22 04:38:36 +00:00
|
|
|
#define GST_BUFFER_MAXAGE(buf) (GST_BUFFER(buf)->maxage)
|
2001-04-16 21:45:02 +00:00
|
|
|
#define GST_BUFFER_BUFFERPOOL(buf) (GST_BUFFER(buf)->pool)
|
2001-04-22 04:38:36 +00:00
|
|
|
#define GST_BUFFER_PARENT(buf) (GST_BUFFER(buf)->parent)
|
2001-04-16 21:45:02 +00:00
|
|
|
#define GST_BUFFER_POOL_PRIVATE(buf) (GST_BUFFER(buf)->pool_private)
|
2001-08-22 20:52:34 +00:00
|
|
|
#define GST_BUFFER_COPY_FUNC(buf) (GST_BUFFER(buf)->copy)
|
|
|
|
#define GST_BUFFER_FREE_FUNC(buf) (GST_BUFFER(buf)->free)
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define GST_BUFFER_LOCK(buf) (g_mutex_lock(GST_BUFFER(buf)->lock))
|
|
|
|
#define GST_BUFFER_TRYLOCK(buf) (g_mutex_trylock(GST_BUFFER(buf)->lock))
|
|
|
|
#define GST_BUFFER_UNLOCK(buf) (g_mutex_unlock(GST_BUFFER(buf)->lock))
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
2000-12-17 04:54:57 +00:00
|
|
|
GST_BUFFER_READONLY,
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
GST_BUFFER_ORIGINAL,
|
|
|
|
GST_BUFFER_DONTFREE,
|
2001-08-22 20:52:34 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
} GstBufferFlags;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GstBuffer GstBuffer;
|
|
|
|
|
2001-04-24 19:20:15 +00:00
|
|
|
|
2001-09-14 22:16:47 +00:00
|
|
|
typedef void (*GstBufferFreeFunc) (GstBuffer *buf);
|
|
|
|
typedef GstBuffer *(*GstBufferCopyFunc) (GstBuffer *srcbuf);
|
2001-04-24 19:20:15 +00:00
|
|
|
|
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include <gst/gstbufferpool.h>
|
2000-08-14 10:55:35 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
struct _GstBuffer {
|
2001-10-17 10:21:27 +00:00
|
|
|
GstData data_type;
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* locking */
|
2001-10-17 10:21:27 +00:00
|
|
|
GMutex *lock;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* refcounting */
|
|
|
|
#ifdef HAVE_ATOMIC_H
|
2001-10-17 10:21:27 +00:00
|
|
|
atomic_t refcount;
|
2000-05-21 21:58:20 +00:00
|
|
|
#define GST_BUFFER_REFCOUNT(buf) (atomic_read(&(GST_BUFFER((buf))->refcount)))
|
2000-01-30 09:03:00 +00:00
|
|
|
#else
|
2001-10-17 10:21:27 +00:00
|
|
|
int refcount;
|
2000-05-21 21:58:20 +00:00
|
|
|
#define GST_BUFFER_REFCOUNT(buf) (GST_BUFFER(buf)->refcount)
|
2000-01-30 09:03:00 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* flags */
|
2001-10-17 10:21:27 +00:00
|
|
|
guint16 flags;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* pointer to data, its size, and offset in original source if known */
|
2001-10-17 10:21:27 +00:00
|
|
|
guchar *data;
|
|
|
|
guint32 size;
|
|
|
|
guint32 maxsize;
|
|
|
|
guint32 offset;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* timestamp */
|
2001-10-17 10:21:27 +00:00
|
|
|
gint64 timestamp;
|
|
|
|
gint64 maxage;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* subbuffer support, who's my parent? */
|
2001-10-17 10:21:27 +00:00
|
|
|
GstBuffer *parent;
|
2000-08-14 10:55:35 +00:00
|
|
|
|
|
|
|
/* this is a pointer to the buffer pool (if any) */
|
2001-10-17 10:21:27 +00:00
|
|
|
GstBufferPool *pool;
|
|
|
|
gpointer pool_private;
|
2001-04-24 19:20:15 +00:00
|
|
|
|
|
|
|
/* utility function pointers */
|
2001-10-21 18:00:31 +00:00
|
|
|
GstBufferFreeFunc free; /* free the data associated with the buffer */
|
|
|
|
GstBufferCopyFunc copy; /* copy the data from one buffer to another */
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2000-03-13 22:13:11 +00:00
|
|
|
/* initialisation */
|
2000-11-04 18:54:07 +00:00
|
|
|
void _gst_buffer_initialize (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
/* creating a new buffer from scratch */
|
2000-11-04 18:54:07 +00:00
|
|
|
GstBuffer* gst_buffer_new (void);
|
2001-10-17 10:21:27 +00:00
|
|
|
GstBuffer* gst_buffer_new_from_pool (GstBufferPool *pool, guint32 offset, guint32 size);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* creating a subbuffer */
|
2000-11-04 18:54:07 +00:00
|
|
|
GstBuffer* gst_buffer_create_sub (GstBuffer *parent, guint32 offset, guint32 size);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* refcounting */
|
2000-11-04 18:54:07 +00:00
|
|
|
void gst_buffer_ref (GstBuffer *buffer);
|
2001-10-21 18:00:31 +00:00
|
|
|
void gst_buffer_ref_by_count (GstBuffer *buffer, gint count);
|
2000-11-04 18:54:07 +00:00
|
|
|
void gst_buffer_unref (GstBuffer *buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* destroying the buffer */
|
2000-11-04 18:54:07 +00:00
|
|
|
void gst_buffer_destroy (GstBuffer *buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-04-22 01:30:19 +00:00
|
|
|
/* copy buffer */
|
|
|
|
GstBuffer* gst_buffer_copy (GstBuffer *buffer);
|
|
|
|
|
2001-08-22 20:52:34 +00:00
|
|
|
/* merge, span, or append two buffers, intelligently */
|
2001-08-11 08:25:05 +00:00
|
|
|
GstBuffer* gst_buffer_merge (GstBuffer *buf1, GstBuffer *buf2);
|
|
|
|
GstBuffer* gst_buffer_span (GstBuffer *buf1,guint32 offset,GstBuffer *buf2,guint32 len);
|
2001-10-21 18:00:31 +00:00
|
|
|
GstBuffer* gst_buffer_append (GstBuffer *buffer, GstBuffer *append);
|
2001-08-11 08:25:05 +00:00
|
|
|
|
2001-09-10 19:46:01 +00:00
|
|
|
gboolean gst_buffer_is_span_fast (GstBuffer *buf1, GstBuffer *buf2);
|
|
|
|
|
2001-12-22 21:18:17 +00:00
|
|
|
void gst_buffer_print_stats (void);
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GST_BUFFER_H__ */
|