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.c: Buffer operations
|
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.
|
|
|
|
*/
|
|
|
|
|
Changes made to the DEBUG system. New header file gstdebug.h holds the stuff to keep it out of gst.h's hair. DEBUG ...
Original commit message from CVS:
Changes made to the DEBUG system. New header file gstdebug.h holds the
stuff to keep it out of gst.h's hair. DEBUG prints out the process id,
cothread id, source filename and line number. Two new macros DEBUG_ENTER
and DEBUG_LEAVE are used to show the entry and exit of a given function.
This eventually might be used to construct call trace graphs, even taking
cothreads into account. This would be quite useful in visualizing the
scheduling mechanism.
Minor changes to various debug messages.
Also sitting in gstdebug.h is a prototypical DEBUG_ENTER that's capable of
performing DEBUG_LEAVE automatically. It does this by utilizing a
little-known GCC extension that allows one to call a function with the
same parameters as the current function. The macro uses this to basically
call itself. A boolean is used to ensure that when it calls itself it
actually runs the body of the function. In the meantime it prints stuff
out before and after the real function, as well as constructing a
debugging string. This can be used eventually to provide call-wide data
on the DEBUG lines, instead of having to replicate data on each call to
DEBUG. More research is needed into how this would most cleanly be fit
into some other chunk of code, like GStreamer (I think of this DEBUG trick
as a separate project, sorta).
Unfortunately, the aforementioned DEBUG trick interacts quite poorly with
cothreads. Almost any time it's used in a function that has anything
remotely to do with a cothread context (as in, it runs in one), a segfault
results from the __builtin_apply call, which is the heart of the whole
thing. If someone who really knows assembly could analyze the resulting
code to see what's really going on, we might find a way to fix either the
macro or the cothreads (I'm thinking that there's something we missed in
constructing the cothreads themselves) so this works in all cases.
In the meantime, please insert both DEBUG_ENTER and DEBUG_LEAVE in your
functions. Be sure to put DEBUG_ENTER after your variable declarations
and before any functional code, not to put the function name in any DEBUG
strings (it's already there, trust me), and put a DEBUG_LEAVE if you care
enough.
Changes are going to happen in the way DEBUGs and other printouts occur,
so stay tuned.
2000-12-04 09:35:08 +00:00
|
|
|
/* this file makes too much noise for most debugging sessions */
|
|
|
|
#define GST_DEBUG_FORCE_DISABLE
|
2000-12-28 22:12:02 +00:00
|
|
|
#include "gst_private.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include "gstbuffer.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-12-28 22:12:02 +00:00
|
|
|
|
2001-03-20 18:29:00 +00:00
|
|
|
static GMemChunk *_gst_buffer_chunk;
|
|
|
|
static GMutex *_gst_buffer_chunk_lock;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
void
|
|
|
|
_gst_buffer_initialize (void)
|
|
|
|
{
|
2001-04-24 19:20:15 +00:00
|
|
|
buffersize = sizeof(GstBuffer);
|
|
|
|
|
|
|
|
// round up to the nearest 32 bytes for cache-line and other efficiencies
|
|
|
|
buffersize = ((buffersize-1 / 32) + 1) * 32;
|
|
|
|
|
|
|
|
_gst_buffer_chunk = g_mem_chunk_new ("GstBuffer", buffersize,
|
|
|
|
buffersize * 32, G_ALLOC_AND_FREE);
|
2001-01-06 18:08:04 +00:00
|
|
|
|
2001-03-20 18:29:00 +00:00
|
|
|
_gst_buffer_chunk_lock = g_mutex_new ();
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_buffer_new:
|
|
|
|
*
|
|
|
|
* Create a new buffer.
|
|
|
|
*
|
|
|
|
* Returns: new buffer
|
|
|
|
*/
|
2000-11-11 15:13:50 +00:00
|
|
|
GstBuffer*
|
|
|
|
gst_buffer_new(void)
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GstBuffer *buffer;
|
|
|
|
|
2001-03-20 18:29:00 +00:00
|
|
|
g_mutex_lock (_gst_buffer_chunk_lock);
|
2000-11-11 15:13:50 +00:00
|
|
|
buffer = g_mem_chunk_alloc (_gst_buffer_chunk);
|
2001-03-20 18:29:00 +00:00
|
|
|
g_mutex_unlock (_gst_buffer_chunk_lock);
|
2001-01-01 03:14:40 +00:00
|
|
|
GST_INFO (GST_CAT_BUFFER,"creating new buffer %p",buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
buffer->lock = g_mutex_new ();
|
2000-01-30 09:03:00 +00:00
|
|
|
#ifdef HAVE_ATOMIC_H
|
2000-11-11 15:13:50 +00:00
|
|
|
atomic_set (&buffer->refcount, 1);
|
2000-01-30 09:03:00 +00:00
|
|
|
#else
|
|
|
|
buffer->refcount = 1;
|
|
|
|
#endif
|
|
|
|
buffer->flags = 0;
|
|
|
|
buffer->data = NULL;
|
|
|
|
buffer->size = 0;
|
|
|
|
buffer->maxsize = 0;
|
|
|
|
buffer->offset = 0;
|
|
|
|
buffer->timestamp = 0;
|
2001-04-24 19:20:15 +00:00
|
|
|
// buffer->metas = NULL;
|
2000-01-30 09:03:00 +00:00
|
|
|
buffer->parent = NULL;
|
2000-08-14 10:55:35 +00:00
|
|
|
buffer->pool = NULL;
|
2001-04-24 19:20:15 +00:00
|
|
|
buffer->free = NULL;
|
|
|
|
buffer->copy = NULL;
|
2000-11-11 15:13:50 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2000-09-14 20:31:03 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_new_from_pool:
|
|
|
|
* @pool: the buffer pool to use
|
|
|
|
*
|
|
|
|
* Create a new buffer using the specified bufferpool.
|
|
|
|
*
|
|
|
|
* Returns: new buffer
|
|
|
|
*/
|
2000-11-11 15:13:50 +00:00
|
|
|
GstBuffer*
|
|
|
|
gst_buffer_new_from_pool (GstBufferPool *pool)
|
2000-08-14 10:55:35 +00:00
|
|
|
{
|
2000-11-11 15:13:50 +00:00
|
|
|
return gst_buffer_pool_new_buffer (pool);
|
2000-08-14 10:55:35 +00:00
|
|
|
}
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_create_sub:
|
|
|
|
* @parent: parent buffer
|
|
|
|
* @offset: offset into parent buffer
|
|
|
|
* @size: size of new subbuffer
|
|
|
|
*
|
|
|
|
* Creates a sub-buffer from the parent at a given offset.
|
|
|
|
*
|
|
|
|
* Returns: new buffer
|
|
|
|
*/
|
2000-11-11 15:13:50 +00:00
|
|
|
GstBuffer*
|
|
|
|
gst_buffer_create_sub (GstBuffer *parent,
|
|
|
|
guint32 offset,
|
|
|
|
guint32 size)
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GstBuffer *buffer;
|
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
g_return_val_if_fail (parent != NULL, NULL);
|
|
|
|
g_return_val_if_fail (size > 0, NULL);
|
|
|
|
g_return_val_if_fail ((offset+size) <= parent->size, NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-03-20 18:29:00 +00:00
|
|
|
g_mutex_lock (_gst_buffer_chunk_lock);
|
2000-11-11 15:13:50 +00:00
|
|
|
buffer = g_mem_chunk_alloc (_gst_buffer_chunk);
|
2001-03-20 18:29:00 +00:00
|
|
|
g_mutex_unlock (_gst_buffer_chunk_lock);
|
2001-01-01 03:14:40 +00:00
|
|
|
GST_INFO (GST_CAT_BUFFER,"creating new subbuffer %p from parent %p", buffer, parent);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
buffer->lock = g_mutex_new ();
|
2000-01-30 09:03:00 +00:00
|
|
|
#ifdef HAVE_ATOMIC_H
|
2000-11-11 15:13:50 +00:00
|
|
|
atomic_set (&buffer->refcount, 1);
|
2000-01-30 09:03:00 +00:00
|
|
|
#else
|
|
|
|
buffer->refcount = 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// copy flags and type from parent, for lack of better
|
|
|
|
buffer->flags = parent->flags;
|
|
|
|
|
|
|
|
// set the data pointer, size, offset, and maxsize
|
|
|
|
buffer->data = parent->data + offset;
|
|
|
|
buffer->size = size;
|
2000-08-14 10:55:35 +00:00
|
|
|
buffer->offset = parent->offset + offset;
|
2000-01-30 09:03:00 +00:00
|
|
|
buffer->maxsize = parent->size - offset;
|
|
|
|
|
|
|
|
// again, for lack of better, copy parent's timestamp
|
|
|
|
buffer->timestamp = parent->timestamp;
|
2001-04-24 19:20:15 +00:00
|
|
|
buffer->maxage = parent->maxage;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
// no metas, this is sane I think
|
2001-04-24 19:20:15 +00:00
|
|
|
// buffer->metas = NULL;
|
|
|
|
|
|
|
|
// if the parent buffer is a subbuffer itself, use its parent, a real buffer
|
|
|
|
if (parent->parent != NULL)
|
|
|
|
parent = parent->parent;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
// set parentage and reference the parent
|
|
|
|
buffer->parent = parent;
|
2000-11-11 15:13:50 +00:00
|
|
|
gst_buffer_ref (parent);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-08-14 10:55:35 +00:00
|
|
|
buffer->pool = NULL;
|
2000-01-30 09:03:00 +00:00
|
|
|
// return the new subbuffer
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2000-08-14 10:55:35 +00:00
|
|
|
/**
|
2000-09-14 20:31:03 +00:00
|
|
|
* gst_buffer_append:
|
2000-08-14 10:55:35 +00:00
|
|
|
* @buffer: a buffer
|
|
|
|
* @append: the buffer to append
|
|
|
|
*
|
2000-09-14 20:31:03 +00:00
|
|
|
* Creates a new buffer by appending the data of append to the
|
|
|
|
* existing data of buffer.
|
2000-08-14 10:55:35 +00:00
|
|
|
*
|
|
|
|
* Returns: new buffer
|
|
|
|
*/
|
2000-11-11 15:13:50 +00:00
|
|
|
GstBuffer*
|
|
|
|
gst_buffer_append (GstBuffer *buffer,
|
|
|
|
GstBuffer *append)
|
|
|
|
{
|
2000-08-14 10:55:35 +00:00
|
|
|
guint size;
|
|
|
|
GstBuffer *newbuf;
|
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
g_return_val_if_fail (buffer != NULL, NULL);
|
|
|
|
g_return_val_if_fail (append != NULL, NULL);
|
|
|
|
g_return_val_if_fail (buffer->pool == NULL, NULL);
|
2000-08-14 10:55:35 +00:00
|
|
|
|
2001-01-01 03:14:40 +00:00
|
|
|
GST_INFO (GST_CAT_BUFFER,"appending buffers %p and %p",buffer,append);
|
2000-12-30 02:41:15 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
GST_BUFFER_LOCK (buffer);
|
2000-08-14 10:55:35 +00:00
|
|
|
// the buffer is not used by anyone else
|
2000-12-29 19:45:45 +00:00
|
|
|
if (GST_BUFFER_REFCOUNT (buffer) == 1 && buffer->parent == NULL
|
|
|
|
&& !GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_DONTFREE)) {
|
2000-08-14 10:55:35 +00:00
|
|
|
// save the old size
|
|
|
|
size = buffer->size;
|
|
|
|
buffer->size += append->size;
|
2000-11-11 15:13:50 +00:00
|
|
|
buffer->data = g_realloc (buffer->data, buffer->size);
|
2000-08-14 10:55:35 +00:00
|
|
|
memcpy(buffer->data + size, append->data, append->size);
|
2000-11-11 15:13:50 +00:00
|
|
|
GST_BUFFER_UNLOCK (buffer);
|
2000-08-14 10:55:35 +00:00
|
|
|
}
|
|
|
|
// the buffer is used, create a new one
|
|
|
|
else {
|
2000-11-11 15:13:50 +00:00
|
|
|
newbuf = gst_buffer_new ();
|
2000-08-14 10:55:35 +00:00
|
|
|
newbuf->size = buffer->size+append->size;
|
2000-11-11 15:13:50 +00:00
|
|
|
newbuf->data = g_malloc (newbuf->size);
|
|
|
|
memcpy (newbuf->data, buffer->data, buffer->size);
|
|
|
|
memcpy (newbuf->data+buffer->size, append->data, append->size);
|
|
|
|
GST_BUFFER_UNLOCK (buffer);
|
|
|
|
gst_buffer_unref (buffer);
|
2000-08-14 10:55:35 +00:00
|
|
|
buffer = newbuf;
|
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_destroy:
|
|
|
|
* @buffer: the GstBuffer to destroy
|
|
|
|
*
|
|
|
|
* destroy the buffer
|
|
|
|
*/
|
2000-11-11 15:13:50 +00:00
|
|
|
void gst_buffer_destroy (GstBuffer *buffer)
|
|
|
|
{
|
2001-04-24 19:20:15 +00:00
|
|
|
// GSList *metas;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
g_return_if_fail (buffer != NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-01 03:14:40 +00:00
|
|
|
GST_INFO (GST_CAT_BUFFER,"freeing %sbuffer %p", (buffer->parent?"sub":""),buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
// free the data only if there is some, DONTFREE isn't set, and not sub
|
2000-11-11 15:13:50 +00:00
|
|
|
if (GST_BUFFER_DATA (buffer) &&
|
|
|
|
!GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_DONTFREE) &&
|
2000-01-30 09:03:00 +00:00
|
|
|
(buffer->parent == NULL)) {
|
2001-04-24 19:20:15 +00:00
|
|
|
// if there's a free function, use it
|
|
|
|
if (buffer->free != NULL) {
|
|
|
|
(buffer->free)(buffer);
|
|
|
|
} else {
|
|
|
|
g_free (GST_BUFFER_DATA (buffer));
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-04-24 19:20:15 +00:00
|
|
|
/* DEPRACATED!!!
|
2000-01-30 09:03:00 +00:00
|
|
|
// unreference any metadata attached to this buffer
|
|
|
|
metas = buffer->metas;
|
|
|
|
while (metas) {
|
2000-11-11 15:13:50 +00:00
|
|
|
gst_meta_unref ((GstMeta *)(metas->data));
|
|
|
|
metas = g_slist_next (metas);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2000-11-11 15:13:50 +00:00
|
|
|
g_slist_free (buffer->metas);
|
2001-04-24 19:20:15 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
// unreference the parent if there is one
|
|
|
|
if (buffer->parent != NULL)
|
2000-11-11 15:13:50 +00:00
|
|
|
gst_buffer_unref (buffer->parent);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
g_mutex_free (buffer->lock);
|
2000-03-20 20:25:03 +00:00
|
|
|
//g_print("freed mutex\n");
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
// remove it entirely from memory
|
2001-03-20 18:29:00 +00:00
|
|
|
g_mutex_lock (_gst_buffer_chunk_lock);
|
2000-11-11 15:13:50 +00:00
|
|
|
g_mem_chunk_free (_gst_buffer_chunk,buffer);
|
2001-03-20 18:29:00 +00:00
|
|
|
g_mutex_unlock (_gst_buffer_chunk_lock);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_ref:
|
|
|
|
* @buffer: the GstBuffer to reference
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Increment the refcount of this buffer.
|
2000-03-27 19:53:43 +00:00
|
|
|
*/
|
2000-11-11 15:13:50 +00:00
|
|
|
void
|
|
|
|
gst_buffer_ref (GstBuffer *buffer)
|
|
|
|
{
|
|
|
|
g_return_if_fail (buffer != NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-01 03:14:40 +00:00
|
|
|
GST_DEBUG (0,"referencing buffer %p\n", buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_ATOMIC_H
|
2000-02-16 23:27:45 +00:00
|
|
|
//g_return_if_fail(atomic_read(&(buffer->refcount)) > 0);
|
2000-12-15 01:57:34 +00:00
|
|
|
atomic_inc (&(buffer->refcount));
|
2000-01-30 09:03:00 +00:00
|
|
|
#else
|
2000-11-11 15:13:50 +00:00
|
|
|
g_return_if_fail (buffer->refcount > 0);
|
|
|
|
GST_BUFFER_LOCK (buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
buffer->refcount++;
|
2000-11-11 15:13:50 +00:00
|
|
|
GST_BUFFER_UNLOCK (buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_ref_by_count:
|
|
|
|
* @buffer: the GstBuffer to reference
|
|
|
|
* @count: a number
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Increment the refcount of this buffer by the given number.
|
2000-03-27 19:53:43 +00:00
|
|
|
*/
|
2000-11-11 15:13:50 +00:00
|
|
|
void
|
|
|
|
gst_buffer_ref_by_count (GstBuffer *buffer, int count)
|
|
|
|
{
|
|
|
|
g_return_if_fail (buffer != NULL);
|
|
|
|
g_return_if_fail (count > 0);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_ATOMIC_H
|
2000-11-11 15:13:50 +00:00
|
|
|
g_return_if_fail (atomic_read (&(buffer->refcount)) > 0);
|
2000-12-15 01:57:34 +00:00
|
|
|
atomic_add (count, &(buffer->refcount));
|
2000-01-30 09:03:00 +00:00
|
|
|
#else
|
2000-11-11 15:13:50 +00:00
|
|
|
g_return_if_fail (buffer->refcount > 0);
|
|
|
|
GST_BUFFER_LOCK (buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
buffer->refcount += count;
|
2000-11-11 15:13:50 +00:00
|
|
|
GST_BUFFER_UNLOCK (buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_unref:
|
|
|
|
* @buffer: the GstBuffer to unref
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Decrement the refcount of this buffer. If the refcount is
|
2000-03-27 19:53:43 +00:00
|
|
|
* zero, the buffer will be destroyed.
|
|
|
|
*/
|
2000-11-11 15:13:50 +00:00
|
|
|
void
|
|
|
|
gst_buffer_unref (GstBuffer *buffer)
|
|
|
|
{
|
|
|
|
gint zero;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
g_return_if_fail (buffer != NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-01 03:14:40 +00:00
|
|
|
GST_DEBUG (0,"unreferencing buffer %p\n", buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_ATOMIC_H
|
2000-11-11 15:13:50 +00:00
|
|
|
g_return_if_fail (atomic_read (&(buffer->refcount)) > 0);
|
2000-12-15 01:57:34 +00:00
|
|
|
zero = atomic_dec_and_test (&(buffer->refcount));
|
2000-01-30 09:03:00 +00:00
|
|
|
#else
|
2000-11-11 15:13:50 +00:00
|
|
|
g_return_if_fail (buffer->refcount > 0);
|
|
|
|
GST_BUFFER_LOCK (buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
buffer->refcount--;
|
|
|
|
zero = (buffer->refcount == 0);
|
2000-11-11 15:13:50 +00:00
|
|
|
GST_BUFFER_UNLOCK (buffer);
|
2000-01-30 09:03:00 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* if we ended up with the refcount at zero, destroy the buffer */
|
2000-08-14 10:55:35 +00:00
|
|
|
if (zero) {
|
|
|
|
// if it came from a pool, give it back
|
|
|
|
if (buffer->pool != NULL) {
|
2000-11-11 15:13:50 +00:00
|
|
|
gst_buffer_pool_destroy_buffer (buffer->pool, buffer);
|
2000-08-14 10:55:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
2000-11-11 15:13:50 +00:00
|
|
|
gst_buffer_destroy (buffer);
|
2000-08-14 10:55:35 +00:00
|
|
|
}
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_add_meta:
|
|
|
|
* @buffer: the GstBuffer to add the metadata to
|
|
|
|
* @meta: the metadata to add to this buffer
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Add the meta data to the buffer.
|
2001-04-24 19:20:15 +00:00
|
|
|
* DEPRACATED!!!
|
2000-03-27 19:53:43 +00:00
|
|
|
*/
|
2001-04-24 19:20:15 +00:00
|
|
|
/* DEPRACATED!!!
|
2000-11-11 15:13:50 +00:00
|
|
|
void
|
|
|
|
gst_buffer_add_meta (GstBuffer *buffer, GstMeta *meta)
|
|
|
|
{
|
|
|
|
g_return_if_fail (buffer != NULL);
|
|
|
|
g_return_if_fail (meta != NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
gst_meta_ref (meta);
|
|
|
|
buffer->metas = g_slist_append (buffer->metas,meta);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-04-24 19:20:15 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_get_metas:
|
|
|
|
* @buffer: the GstBuffer to get the metadata from
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Get the metadatas from the buffer.
|
2001-04-24 19:20:15 +00:00
|
|
|
* DEPRACATED!!!
|
2000-03-27 19:53:43 +00:00
|
|
|
*
|
|
|
|
* Returns: a GSList of metadata
|
|
|
|
*/
|
2001-04-24 19:20:15 +00:00
|
|
|
/* DEPRACATED!!!
|
2000-11-11 15:13:50 +00:00
|
|
|
GSList*
|
|
|
|
gst_buffer_get_metas (GstBuffer *buffer)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (buffer != NULL, NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
return buffer->metas;
|
|
|
|
}
|
2001-04-24 19:20:15 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_get_first_meta:
|
|
|
|
* @buffer: the GstBuffer to get the metadata from
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Get the first metadata from the buffer.
|
2001-04-24 19:20:15 +00:00
|
|
|
* DEPRACATED!!!
|
2000-03-27 19:53:43 +00:00
|
|
|
*
|
|
|
|
* Returns: the first metadata from the buffer
|
|
|
|
*/
|
2001-04-24 19:20:15 +00:00
|
|
|
/* DEPRACATED!!!
|
2000-11-11 15:13:50 +00:00
|
|
|
GstMeta*
|
|
|
|
gst_buffer_get_first_meta (GstBuffer *buffer)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (buffer != NULL, NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
if (buffer->metas == NULL)
|
|
|
|
return NULL;
|
2000-11-11 15:13:50 +00:00
|
|
|
return GST_META (buffer->metas->data);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-04-24 19:20:15 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_remove_meta:
|
|
|
|
* @buffer: the GstBuffer to remove the metadata from
|
|
|
|
* @meta: the metadata to remove
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Remove the given metadata from the buffer.
|
2001-04-24 19:20:15 +00:00
|
|
|
* DEPRACATED!!!
|
2000-03-27 19:53:43 +00:00
|
|
|
*/
|
2001-04-24 19:20:15 +00:00
|
|
|
/* DEPRACATED!!!
|
2000-11-11 15:13:50 +00:00
|
|
|
void
|
|
|
|
gst_buffer_remove_meta (GstBuffer *buffer, GstMeta *meta)
|
|
|
|
{
|
|
|
|
g_return_if_fail (buffer != NULL);
|
|
|
|
g_return_if_fail (meta != NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
buffer->metas = g_slist_remove (buffer->metas, meta);
|
|
|
|
gst_meta_unref (meta);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-04-24 19:20:15 +00:00
|
|
|
*/
|
2001-04-22 01:30:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2001-04-22 01:41:40 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_copy:
|
|
|
|
* @buffer: the orignal GstBuffer to make a copy of
|
|
|
|
*
|
|
|
|
* Make a full copy of the give buffer, data and all.
|
|
|
|
*
|
|
|
|
* Returns: new buffer
|
|
|
|
*/
|
2001-04-22 01:30:19 +00:00
|
|
|
GstBuffer *
|
2001-04-22 01:41:40 +00:00
|
|
|
gst_buffer_copy (GstBuffer *buffer)
|
2001-04-22 01:30:19 +00:00
|
|
|
{
|
|
|
|
GstBuffer *newbuf;
|
|
|
|
|
2001-04-24 19:20:15 +00:00
|
|
|
// allocate a new buffer
|
2001-04-22 01:30:19 +00:00
|
|
|
newbuf = gst_buffer_new();
|
2001-04-24 19:20:15 +00:00
|
|
|
|
|
|
|
// if a copy function exists, use it, else copy the bytes
|
|
|
|
if (buffer->copy != NULL) {
|
|
|
|
(buffer->copy)(buffer,newbuf);
|
|
|
|
} else {
|
|
|
|
// copy the absolute size
|
|
|
|
newbuf->size = buffer->size;
|
|
|
|
// allocate space for the copy
|
|
|
|
newbuf->data = (guchar *)g_malloc (buffer->data);
|
|
|
|
// copy the data straight across
|
|
|
|
memcpy(newbuf,buffer->data,buffer->size);
|
|
|
|
// the new maxsize is the same as the size, since we just malloc'd it
|
|
|
|
newbuf->maxsize = newbuf->size;
|
|
|
|
}
|
|
|
|
newbuf->offset = buffer->offset;
|
|
|
|
newbuf->timestamp = buffer->timestamp;
|
|
|
|
newbuf->maxage = buffer->maxage;
|
2001-04-22 01:41:40 +00:00
|
|
|
|
|
|
|
// since we just created a new buffer, so we have no ties to old stuff
|
2001-04-24 19:20:15 +00:00
|
|
|
newbuf->parent = NULL;
|
|
|
|
newbuf->pool = NULL;
|
2001-04-22 01:30:19 +00:00
|
|
|
|
|
|
|
return newbuf;
|
|
|
|
}
|