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.
|
|
|
|
*/
|
2005-10-15 16:01:57 +00:00
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstbuffer
|
|
|
|
* @short_description: Data-passing buffer type, supporting sub-buffers.
|
2011-11-08 12:13:55 +00:00
|
|
|
* @see_also: #GstPad, #GstMiniObject, #GstBufferPool
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2006-06-06 08:50:40 +00:00
|
|
|
* Buffers are the basic unit of data transfer in GStreamer. The #GstBuffer
|
2011-03-30 14:47:55 +00:00
|
|
|
* type provides all the state necessary to define the regions of memory as
|
|
|
|
* part of a stream. Region copies are also supported, allowing a smaller
|
|
|
|
* region of a buffer to become its own buffer, with mechanisms in place to
|
|
|
|
* ensure that neither memory space goes away prematurely.
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
|
|
|
* Buffers are usually created with gst_buffer_new(). After a buffer has been
|
2011-11-08 12:13:55 +00:00
|
|
|
* created one will typically allocate memory for it and add it to the buffer.
|
|
|
|
* The following example creates a buffer that can hold a given video frame
|
|
|
|
* with a given width, height and bits per plane.
|
2005-08-23 11:53:58 +00:00
|
|
|
* <example>
|
|
|
|
* <title>Creating a buffer for a video frame</title>
|
|
|
|
* <programlisting>
|
|
|
|
* GstBuffer *buffer;
|
2011-11-08 12:13:55 +00:00
|
|
|
* GstMemory *memory;
|
2005-08-23 11:53:58 +00:00
|
|
|
* gint size, width, height, bpp;
|
|
|
|
* ...
|
|
|
|
* size = width * height * bpp;
|
|
|
|
* buffer = gst_buffer_new ();
|
2011-11-08 12:13:55 +00:00
|
|
|
* memory = gst_allocator_alloc (NULL, size, 0);
|
|
|
|
* gst_buffer_take_memory (buffer, -1, memory);
|
2005-08-23 11:53:58 +00:00
|
|
|
* ...
|
|
|
|
* </programlisting>
|
|
|
|
* </example>
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2011-11-08 12:13:55 +00:00
|
|
|
* Alternatively, use gst_buffer_new_allocate()
|
2005-08-23 11:53:58 +00:00
|
|
|
* to create a buffer with preallocated data of a given size.
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2011-11-08 12:13:55 +00:00
|
|
|
* Buffers can contain a list of #GstMemory objects. You can retrieve how many
|
|
|
|
* memory objects with gst_buffer_n_memory() and you can get a pointer
|
|
|
|
* to memory with gst_buffer_peek_memory()
|
2006-06-06 08:50:40 +00:00
|
|
|
*
|
2011-10-28 10:15:44 +00:00
|
|
|
* A buffer will usually have timestamps, and a duration, but neither of these
|
2006-06-06 08:50:40 +00:00
|
|
|
* are guaranteed (they may be set to #GST_CLOCK_TIME_NONE). Whenever a
|
2011-10-28 10:15:44 +00:00
|
|
|
* meaningful value can be given for these, they should be set. The timestamps
|
2006-06-06 08:50:40 +00:00
|
|
|
* and duration are measured in nanoseconds (they are #GstClockTime values).
|
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* A buffer can also have one or both of a start and an end offset. These are
|
|
|
|
* media-type specific. For video buffers, the start offset will generally be
|
2006-06-06 08:50:40 +00:00
|
|
|
* the frame number. For audio buffers, it will be the number of samples
|
|
|
|
* produced so far. For compressed data, it could be the byte offset in a
|
2005-10-28 17:01:14 +00:00
|
|
|
* source or destination file. Likewise, the end offset will be the offset of
|
|
|
|
* the end of the buffer. These can only be meaningfully interpreted if you
|
|
|
|
* know the media type of the buffer (the #GstCaps set on it). Either or both
|
2005-11-09 18:10:53 +00:00
|
|
|
* can be set to #GST_BUFFER_OFFSET_NONE.
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-08-23 11:53:58 +00:00
|
|
|
* gst_buffer_ref() is used to increase the refcount of a buffer. This must be
|
|
|
|
* done when you want to keep a handle to the buffer after pushing it to the
|
|
|
|
* next element.
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-08-23 11:53:58 +00:00
|
|
|
* To efficiently create a smaller buffer out of an existing one, you can
|
2011-03-30 14:47:55 +00:00
|
|
|
* use gst_buffer_copy_region().
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2011-03-30 14:47:55 +00:00
|
|
|
* If a plug-in wants to modify the buffer data or metadata in-place, it should
|
|
|
|
* first obtain a buffer that is safe to modify by using
|
|
|
|
* gst_buffer_make_writable(). This function is optimized so that a copy will
|
|
|
|
* only be made when it is necessary.
|
2006-01-17 12:14:20 +00:00
|
|
|
*
|
2005-10-15 16:01:57 +00:00
|
|
|
* Several flags of the buffer can be set and unset with the
|
|
|
|
* GST_BUFFER_FLAG_SET() and GST_BUFFER_FLAG_UNSET() macros. Use
|
2005-10-28 17:01:14 +00:00
|
|
|
* GST_BUFFER_FLAG_IS_SET() to test if a certain #GstBufferFlag is set.
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-10-15 16:01:57 +00:00
|
|
|
* Buffers can be efficiently merged into a larger buffer with
|
2011-03-30 14:47:55 +00:00
|
|
|
* gst_buffer_span(), which avoids memory copies when the gst_buffer_is_span_fast()
|
2005-10-15 16:01:57 +00:00
|
|
|
* function returns TRUE.
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-08-23 11:53:58 +00:00
|
|
|
* An element should either unref the buffer or push it out on a src pad
|
|
|
|
* using gst_pad_push() (see #GstPad).
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* Buffers are usually freed by unreffing them with gst_buffer_unref(). When
|
2011-03-30 14:47:55 +00:00
|
|
|
* the refcount drops to 0, any data pointed to by the buffer is unreffed as
|
|
|
|
* well.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2011-11-08 12:13:55 +00:00
|
|
|
* Last reviewed on November 8, 2011 (0.11.2)
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2000-12-28 22:12:02 +00:00
|
|
|
#include "gst_private.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2010-03-04 08:44:52 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include "gstbuffer.h"
|
2011-02-22 11:35:45 +00:00
|
|
|
#include "gstbufferpool.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gstinfo.h"
|
2005-04-24 22:49:45 +00:00
|
|
|
#include "gstutils.h"
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
#include "gstminiobject.h"
|
2010-03-03 09:31:26 +00:00
|
|
|
#include "gstversion.h"
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2010-11-02 12:31:25 +00:00
|
|
|
GType _gst_buffer_type = 0;
|
2006-07-26 10:39:58 +00:00
|
|
|
|
2011-03-29 14:52:21 +00:00
|
|
|
static GstMemory *_gst_buffer_arr_span (GstMemory ** mem[], gsize len[],
|
2011-03-29 17:17:55 +00:00
|
|
|
guint n, gsize offset, gsize size, gboolean writable);
|
2011-03-29 14:52:21 +00:00
|
|
|
|
2011-02-25 12:15:25 +00:00
|
|
|
typedef struct _GstMetaItem GstMetaItem;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-02-25 12:15:25 +00:00
|
|
|
struct _GstMetaItem
|
2009-12-17 11:34:42 +00:00
|
|
|
{
|
2011-02-25 12:15:25 +00:00
|
|
|
GstMetaItem *next;
|
|
|
|
GstMeta meta;
|
2009-12-17 11:34:42 +00:00
|
|
|
};
|
2011-03-29 11:51:25 +00:00
|
|
|
#define ITEM_SIZE(info) ((info)->size + sizeof (GstMetaItem))
|
|
|
|
|
|
|
|
#define GST_BUFFER_MEM_MAX 16
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
#define GST_BUFFER_MEM_LEN(b) (((GstBufferImpl *)(b))->len)
|
|
|
|
#define GST_BUFFER_MEM_ARRAY(b) (((GstBufferImpl *)(b))->mem)
|
|
|
|
#define GST_BUFFER_MEM_PTR(b,i) (((GstBufferImpl *)(b))->mem[i])
|
2011-06-10 14:47:29 +00:00
|
|
|
#define GST_BUFFER_BUFMEM(b) (((GstBufferImpl *)(b))->bufmem)
|
2011-03-29 11:51:25 +00:00
|
|
|
#define GST_BUFFER_META(b) (((GstBufferImpl *)(b))->item)
|
2011-03-29 09:31:30 +00:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GstBuffer buffer;
|
|
|
|
|
2011-03-30 11:04:34 +00:00
|
|
|
/* the memory blocks */
|
2011-03-29 11:51:25 +00:00
|
|
|
guint len;
|
|
|
|
GstMemory *mem[GST_BUFFER_MEM_MAX];
|
|
|
|
|
2011-06-10 14:47:29 +00:00
|
|
|
/* memory of the buffer when allocated from 1 chunk */
|
|
|
|
GstMemory *bufmem;
|
|
|
|
|
2011-03-30 11:04:34 +00:00
|
|
|
/* FIXME, make metadata allocation more efficient by using part of the
|
|
|
|
* GstBufferImpl */
|
2011-03-29 09:31:30 +00:00
|
|
|
GstMetaItem *item;
|
|
|
|
} GstBufferImpl;
|
|
|
|
|
2011-03-29 17:17:55 +00:00
|
|
|
static GstMemory *
|
|
|
|
_span_memory (GstBuffer * buffer, gsize offset, gsize size, gboolean writable)
|
2011-03-29 14:52:21 +00:00
|
|
|
{
|
|
|
|
GstMemory *span, **mem[1];
|
2011-03-29 17:17:55 +00:00
|
|
|
gsize len[1];
|
2011-03-29 14:52:21 +00:00
|
|
|
|
|
|
|
/* not enough room, span buffers */
|
|
|
|
mem[0] = GST_BUFFER_MEM_ARRAY (buffer);
|
|
|
|
len[0] = GST_BUFFER_MEM_LEN (buffer);
|
2011-03-29 15:17:46 +00:00
|
|
|
|
2011-03-29 17:17:55 +00:00
|
|
|
if (size == -1)
|
|
|
|
size = gst_buffer_get_size (buffer);
|
|
|
|
|
|
|
|
span = _gst_buffer_arr_span (mem, len, 1, offset, size, writable);
|
|
|
|
|
|
|
|
return span;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_replace_memory (GstBuffer * buffer, GstMemory * mem)
|
|
|
|
{
|
|
|
|
gsize len, i;
|
2011-03-29 14:52:21 +00:00
|
|
|
|
2011-03-29 17:17:55 +00:00
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
2012-01-20 13:23:57 +00:00
|
|
|
/* unref old buffers */
|
2011-03-29 17:17:55 +00:00
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
gst_memory_unref (GST_BUFFER_MEM_PTR (buffer, i));
|
2011-03-29 14:52:21 +00:00
|
|
|
|
|
|
|
/* replace with single spanned buffer */
|
2011-03-29 17:17:55 +00:00
|
|
|
GST_BUFFER_MEM_PTR (buffer, 0) = mem;
|
2011-03-29 14:52:21 +00:00
|
|
|
GST_BUFFER_MEM_LEN (buffer) = 1;
|
|
|
|
}
|
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
static inline void
|
2011-06-13 14:31:53 +00:00
|
|
|
_memory_add (GstBuffer * buffer, guint idx, GstMemory * mem)
|
2011-03-29 11:51:25 +00:00
|
|
|
{
|
2011-06-13 14:31:53 +00:00
|
|
|
guint i, len = GST_BUFFER_MEM_LEN (buffer);
|
2011-03-29 14:52:21 +00:00
|
|
|
|
|
|
|
if (G_UNLIKELY (len >= GST_BUFFER_MEM_MAX)) {
|
2011-04-11 08:20:10 +00:00
|
|
|
/* too many buffer, span them. */
|
|
|
|
/* FIXME, there is room for improvement here: We could only try to merge
|
|
|
|
* 2 buffers to make some room. If we can't efficiently merge 2 buffers we
|
|
|
|
* could try to only merge the two smallest buffers to avoid memcpy, etc. */
|
2011-03-29 17:17:55 +00:00
|
|
|
_replace_memory (buffer, _span_memory (buffer, 0, -1, FALSE));
|
2011-03-29 14:52:21 +00:00
|
|
|
/* we now have 1 single spanned buffer */
|
|
|
|
len = 1;
|
|
|
|
}
|
2011-06-13 14:31:53 +00:00
|
|
|
|
|
|
|
if (idx == -1)
|
|
|
|
idx = len;
|
|
|
|
|
|
|
|
for (i = len; i > idx; i--) {
|
|
|
|
/* move buffers to insert, FIXME, we need to insert first and then merge */
|
|
|
|
GST_BUFFER_MEM_PTR (buffer, i) = GST_BUFFER_MEM_PTR (buffer, i - 1);
|
|
|
|
}
|
|
|
|
/* and insert the new buffer */
|
|
|
|
GST_BUFFER_MEM_PTR (buffer, idx) = mem;
|
2011-03-29 11:51:25 +00:00
|
|
|
GST_BUFFER_MEM_LEN (buffer) = len + 1;
|
|
|
|
}
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-08-29 15:06:18 +00:00
|
|
|
GST_DEFINE_MINI_OBJECT_TYPE (GstBuffer, gst_buffer);
|
2011-08-29 13:34:30 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
void
|
2011-08-29 11:27:26 +00:00
|
|
|
_priv_gst_buffer_initialize (void)
|
2000-11-11 15:13:50 +00:00
|
|
|
{
|
2011-08-29 13:34:30 +00:00
|
|
|
_gst_buffer_type = gst_buffer_get_type ();
|
2001-12-22 21:18:17 +00:00
|
|
|
}
|
|
|
|
|
2007-03-09 16:30:38 +00:00
|
|
|
/**
|
2011-03-21 12:07:42 +00:00
|
|
|
* gst_buffer_copy_into:
|
2007-03-09 16:30:38 +00:00
|
|
|
* @dest: a destination #GstBuffer
|
|
|
|
* @src: a source #GstBuffer
|
|
|
|
* @flags: flags indicating what metadata fields should be copied.
|
2011-03-21 12:07:42 +00:00
|
|
|
* @offset: offset to copy from
|
2011-08-05 08:59:42 +00:00
|
|
|
* @size: total size to copy. If -1, all data is copied.
|
2007-03-09 16:30:38 +00:00
|
|
|
*
|
2011-03-21 12:07:42 +00:00
|
|
|
* Copies the information from @src into @dest.
|
2007-03-09 16:30:38 +00:00
|
|
|
*
|
2011-03-21 12:07:42 +00:00
|
|
|
* @flags indicate which fields will be copied.
|
2007-03-09 16:30:38 +00:00
|
|
|
*/
|
|
|
|
void
|
2011-03-21 12:07:42 +00:00
|
|
|
gst_buffer_copy_into (GstBuffer * dest, GstBuffer * src,
|
2011-03-24 20:18:52 +00:00
|
|
|
GstBufferCopyFlags flags, gsize offset, gsize size)
|
2007-03-09 16:30:38 +00:00
|
|
|
{
|
2011-02-25 12:15:25 +00:00
|
|
|
GstMetaItem *walk;
|
2011-03-24 20:18:52 +00:00
|
|
|
gsize bufsize;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2007-03-09 16:30:38 +00:00
|
|
|
g_return_if_fail (dest != NULL);
|
|
|
|
g_return_if_fail (src != NULL);
|
|
|
|
|
2009-05-27 14:17:31 +00:00
|
|
|
/* nothing to copy if the buffers are the same */
|
|
|
|
if (G_UNLIKELY (dest == src))
|
|
|
|
return;
|
|
|
|
|
2011-03-29 14:52:21 +00:00
|
|
|
g_return_if_fail (gst_buffer_is_writable (dest));
|
|
|
|
|
2011-03-24 20:18:52 +00:00
|
|
|
bufsize = gst_buffer_get_size (src);
|
2011-03-29 14:52:21 +00:00
|
|
|
g_return_if_fail (bufsize >= offset);
|
2011-03-24 20:18:52 +00:00
|
|
|
if (size == -1)
|
|
|
|
size = bufsize - offset;
|
2011-03-29 09:07:36 +00:00
|
|
|
g_return_if_fail (bufsize >= offset + size);
|
2009-08-06 16:47:32 +00:00
|
|
|
|
2011-03-28 17:19:44 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_BUFFER, "copy %p to %p, offset %" G_GSIZE_FORMAT
|
|
|
|
"-%" G_GSIZE_FORMAT "/%" G_GSIZE_FORMAT, src, dest, offset, size,
|
|
|
|
bufsize);
|
2007-03-09 16:30:38 +00:00
|
|
|
|
|
|
|
if (flags & GST_BUFFER_COPY_FLAGS) {
|
2011-08-25 14:20:21 +00:00
|
|
|
/* copy flags */
|
|
|
|
GST_MINI_OBJECT_FLAGS (dest) = GST_MINI_OBJECT_FLAGS (src);
|
2007-03-09 16:30:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & GST_BUFFER_COPY_TIMESTAMPS) {
|
2011-03-21 12:07:42 +00:00
|
|
|
if (offset == 0) {
|
2011-10-28 10:15:44 +00:00
|
|
|
GST_BUFFER_PTS (dest) = GST_BUFFER_PTS (src);
|
|
|
|
GST_BUFFER_DTS (dest) = GST_BUFFER_DTS (src);
|
2011-03-21 12:07:42 +00:00
|
|
|
GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET (src);
|
2011-03-28 17:19:44 +00:00
|
|
|
if (size == bufsize) {
|
2011-03-21 12:07:42 +00:00
|
|
|
GST_BUFFER_DURATION (dest) = GST_BUFFER_DURATION (src);
|
|
|
|
GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_END (src);
|
|
|
|
}
|
|
|
|
} else {
|
2011-10-28 10:15:44 +00:00
|
|
|
GST_BUFFER_PTS (dest) = GST_CLOCK_TIME_NONE;
|
|
|
|
GST_BUFFER_DTS (dest) = GST_CLOCK_TIME_NONE;
|
2011-03-21 12:07:42 +00:00
|
|
|
GST_BUFFER_DURATION (dest) = GST_CLOCK_TIME_NONE;
|
|
|
|
GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET_NONE;
|
|
|
|
GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_NONE;
|
|
|
|
}
|
2007-03-09 16:30:38 +00:00
|
|
|
}
|
2011-05-05 08:37:19 +00:00
|
|
|
|
2011-03-21 12:07:42 +00:00
|
|
|
if (flags & GST_BUFFER_COPY_MEMORY) {
|
2011-03-29 09:07:36 +00:00
|
|
|
GstMemory *mem;
|
2011-04-07 14:02:43 +00:00
|
|
|
gsize skip, left, len, i, bsize;
|
2011-03-21 12:07:42 +00:00
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
len = GST_BUFFER_MEM_LEN (src);
|
2011-03-29 09:07:36 +00:00
|
|
|
left = size;
|
2011-04-07 14:02:43 +00:00
|
|
|
skip = offset;
|
2011-03-21 12:07:42 +00:00
|
|
|
|
2011-03-30 14:47:55 +00:00
|
|
|
/* copy and make regions of the memory */
|
2011-03-29 09:07:36 +00:00
|
|
|
for (i = 0; i < len && left > 0; i++) {
|
2011-03-29 11:51:25 +00:00
|
|
|
mem = GST_BUFFER_MEM_PTR (src, i);
|
2011-07-11 14:17:57 +00:00
|
|
|
bsize = gst_memory_get_sizes (mem, NULL, NULL);
|
2011-03-29 09:07:36 +00:00
|
|
|
|
2011-04-07 14:02:43 +00:00
|
|
|
if (bsize <= skip) {
|
2011-03-29 09:07:36 +00:00
|
|
|
/* don't copy buffer */
|
2011-04-07 14:02:43 +00:00
|
|
|
skip -= bsize;
|
2011-03-29 09:07:36 +00:00
|
|
|
} else {
|
|
|
|
gsize tocopy;
|
|
|
|
|
2011-04-07 14:02:43 +00:00
|
|
|
tocopy = MIN (bsize - skip, left);
|
|
|
|
if (mem->flags & GST_MEMORY_FLAG_NO_SHARE) {
|
|
|
|
/* no share, always copy then */
|
|
|
|
mem = gst_memory_copy (mem, skip, tocopy);
|
|
|
|
skip = 0;
|
|
|
|
} else if (tocopy < bsize) {
|
2011-03-29 09:07:36 +00:00
|
|
|
/* we need to clip something */
|
2011-04-07 14:02:43 +00:00
|
|
|
mem = gst_memory_share (mem, skip, tocopy);
|
|
|
|
skip = 0;
|
2011-03-24 20:18:52 +00:00
|
|
|
} else {
|
2011-03-29 09:07:36 +00:00
|
|
|
mem = gst_memory_ref (mem);
|
2011-03-24 20:18:52 +00:00
|
|
|
}
|
2011-06-13 14:31:53 +00:00
|
|
|
_memory_add (dest, -1, mem);
|
2011-03-29 09:07:36 +00:00
|
|
|
left -= tocopy;
|
|
|
|
}
|
2011-03-21 12:07:42 +00:00
|
|
|
}
|
2011-03-29 15:17:46 +00:00
|
|
|
if (flags & GST_BUFFER_COPY_MERGE) {
|
2011-03-29 17:17:55 +00:00
|
|
|
_replace_memory (dest, _span_memory (dest, 0, size, FALSE));
|
2011-03-29 15:17:46 +00:00
|
|
|
}
|
2011-03-21 12:07:42 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 14:34:06 +00:00
|
|
|
if (flags & GST_BUFFER_COPY_META) {
|
|
|
|
for (walk = GST_BUFFER_META (src); walk; walk = walk->next) {
|
|
|
|
GstMeta *meta = &walk->meta;
|
|
|
|
const GstMetaInfo *info = meta->info;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-12-01 14:34:06 +00:00
|
|
|
if (info->copy_func)
|
|
|
|
info->copy_func (dest, meta, src, offset, size);
|
|
|
|
}
|
2009-12-17 11:34:42 +00:00
|
|
|
}
|
2007-03-09 16:30:38 +00:00
|
|
|
}
|
|
|
|
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
static GstBuffer *
|
|
|
|
_gst_buffer_copy (GstBuffer * buffer)
|
2000-11-11 15:13:50 +00:00
|
|
|
{
|
2002-07-08 19:22:02 +00:00
|
|
|
GstBuffer *copy;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-11-22 23:15:14 +00:00
|
|
|
g_return_val_if_fail (buffer != NULL, NULL);
|
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
/* create a fresh new buffer */
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
copy = gst_buffer_new ();
|
2003-05-06 21:03:34 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
/* we simply copy everything from our parent */
|
2011-03-24 20:18:52 +00:00
|
|
|
gst_buffer_copy_into (copy, buffer, GST_BUFFER_COPY_ALL, 0, -1);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
return copy;
|
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2011-03-02 10:57:06 +00:00
|
|
|
/* the default dispose function revives the buffer and returns it to the
|
|
|
|
* pool when there is a pool */
|
2011-07-25 10:53:10 +00:00
|
|
|
static gboolean
|
2011-03-02 10:57:06 +00:00
|
|
|
_gst_buffer_dispose (GstBuffer * buffer)
|
|
|
|
{
|
|
|
|
GstBufferPool *pool;
|
|
|
|
|
2011-07-25 10:53:10 +00:00
|
|
|
/* no pool, do free */
|
|
|
|
if ((pool = buffer->pool) == NULL)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* keep the buffer alive */
|
|
|
|
gst_buffer_ref (buffer);
|
|
|
|
/* return the buffer to the pool */
|
|
|
|
GST_CAT_LOG (GST_CAT_BUFFER, "release %p to pool %p", buffer, pool);
|
|
|
|
gst_buffer_pool_release_buffer (pool, buffer);
|
|
|
|
|
|
|
|
return FALSE;
|
2011-03-02 10:57:06 +00:00
|
|
|
}
|
|
|
|
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
static void
|
2009-12-02 20:21:48 +00:00
|
|
|
_gst_buffer_free (GstBuffer * buffer)
|
2004-04-05 18:39:01 +00:00
|
|
|
{
|
2011-02-25 12:15:25 +00:00
|
|
|
GstMetaItem *walk, *next;
|
2011-03-29 11:51:25 +00:00
|
|
|
guint i, len;
|
|
|
|
gsize msize;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2009-12-02 20:21:48 +00:00
|
|
|
g_return_if_fail (buffer != NULL);
|
|
|
|
|
|
|
|
GST_CAT_LOG (GST_CAT_BUFFER, "finalize %p", buffer);
|
2004-04-05 18:39:01 +00:00
|
|
|
|
2009-12-17 11:34:42 +00:00
|
|
|
/* free metadata */
|
2011-03-29 09:31:30 +00:00
|
|
|
for (walk = GST_BUFFER_META (buffer); walk; walk = next) {
|
2011-02-25 12:15:25 +00:00
|
|
|
GstMeta *meta = &walk->meta;
|
|
|
|
const GstMetaInfo *info = meta->info;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
|
|
|
/* call free_func if any */
|
|
|
|
if (info->free_func)
|
|
|
|
info->free_func (meta, buffer);
|
2011-03-21 17:13:55 +00:00
|
|
|
|
2010-11-15 10:49:24 +00:00
|
|
|
next = walk->next;
|
2011-03-21 17:13:55 +00:00
|
|
|
/* and free the slice */
|
|
|
|
g_slice_free1 (ITEM_SIZE (info), walk);
|
2009-12-17 11:34:42 +00:00
|
|
|
}
|
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
/* get the size, when unreffing the memory, we could also unref the buffer
|
|
|
|
* itself */
|
|
|
|
msize = GST_MINI_OBJECT_SIZE (buffer);
|
|
|
|
|
|
|
|
/* free our memory */
|
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
gst_memory_unref (GST_BUFFER_MEM_PTR (buffer, i));
|
2011-03-21 08:51:53 +00:00
|
|
|
|
2011-06-10 11:40:57 +00:00
|
|
|
/* we set msize to 0 when the buffer is part of the memory block */
|
2011-03-29 11:51:25 +00:00
|
|
|
if (msize)
|
|
|
|
g_slice_free1 (msize, buffer);
|
2011-06-10 14:47:29 +00:00
|
|
|
else
|
|
|
|
gst_memory_unref (GST_BUFFER_BUFMEM (buffer));
|
2011-02-23 15:48:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-03-29 09:31:30 +00:00
|
|
|
gst_buffer_init (GstBufferImpl * buffer, gsize size)
|
2011-02-23 15:48:00 +00:00
|
|
|
{
|
|
|
|
gst_mini_object_init (GST_MINI_OBJECT_CAST (buffer), _gst_buffer_type, size);
|
|
|
|
|
2011-03-29 09:31:30 +00:00
|
|
|
buffer->buffer.mini_object.copy =
|
|
|
|
(GstMiniObjectCopyFunction) _gst_buffer_copy;
|
|
|
|
buffer->buffer.mini_object.dispose =
|
2011-03-02 10:57:06 +00:00
|
|
|
(GstMiniObjectDisposeFunction) _gst_buffer_dispose;
|
2011-03-29 09:31:30 +00:00
|
|
|
buffer->buffer.mini_object.free =
|
|
|
|
(GstMiniObjectFreeFunction) _gst_buffer_free;
|
2011-02-23 15:48:00 +00:00
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
GST_BUFFER (buffer)->pool = NULL;
|
2011-10-28 10:15:44 +00:00
|
|
|
GST_BUFFER_PTS (buffer) = GST_CLOCK_TIME_NONE;
|
|
|
|
GST_BUFFER_DTS (buffer) = GST_CLOCK_TIME_NONE;
|
2011-02-23 15:48:00 +00:00
|
|
|
GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
|
|
|
|
GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
|
|
|
|
GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
|
2011-03-21 08:51:53 +00:00
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
GST_BUFFER_MEM_LEN (buffer) = 0;
|
|
|
|
GST_BUFFER_META (buffer) = NULL;
|
2004-04-05 18:39:01 +00:00
|
|
|
}
|
|
|
|
|
2000-08-14 10:55:35 +00:00
|
|
|
/**
|
2002-07-08 19:22:02 +00:00
|
|
|
* gst_buffer_new:
|
2000-08-14 10:55:35 +00:00
|
|
|
*
|
2002-07-08 19:22:02 +00:00
|
|
|
* Creates a newly allocated buffer without any data.
|
2000-08-14 10:55:35 +00:00
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* MT safe.
|
2010-12-07 18:35:04 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer full): the new #GstBuffer.
|
2000-08-14 10:55:35 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstBuffer *
|
2002-07-08 19:22:02 +00:00
|
|
|
gst_buffer_new (void)
|
2000-11-11 15:13:50 +00:00
|
|
|
{
|
2011-03-29 09:31:30 +00:00
|
|
|
GstBufferImpl *newbuf;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
newbuf = g_slice_new (GstBufferImpl);
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_BUFFER, "new %p", newbuf);
|
2000-08-14 10:55:35 +00:00
|
|
|
|
2011-03-29 09:31:30 +00:00
|
|
|
gst_buffer_init (newbuf, sizeof (GstBufferImpl));
|
2009-12-02 20:21:48 +00:00
|
|
|
|
2011-03-29 09:31:30 +00:00
|
|
|
return GST_BUFFER_CAST (newbuf);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
2011-06-10 11:40:57 +00:00
|
|
|
* gst_buffer_new_allocate:
|
2011-11-11 01:47:30 +00:00
|
|
|
* @allocator: (allow-none): the #GstAllocator to use, or NULL to use the
|
|
|
|
* default allocator
|
2011-01-22 14:33:58 +00:00
|
|
|
* @size: the size in bytes of the new buffer's data.
|
2011-06-10 11:40:57 +00:00
|
|
|
* @align: the alignment of the buffer memory
|
|
|
|
*
|
|
|
|
* Tries to create a newly allocated buffer with data of the given size and
|
|
|
|
* alignment from @allocator. If the requested amount of memory can't be
|
|
|
|
* allocated, NULL will be returned. The allocated buffer memory is not cleared.
|
|
|
|
*
|
|
|
|
* When @allocator is NULL, the default memory allocator will be used.
|
2002-07-08 19:22:02 +00:00
|
|
|
*
|
2011-06-10 11:40:57 +00:00
|
|
|
* Allocator buffer memory will be aligned to multiples of (@align + 1) bytes.
|
2007-04-26 10:00:49 +00:00
|
|
|
*
|
2011-03-24 10:49:46 +00:00
|
|
|
* Note that when @size == 0, the buffer will not have memory associated with it.
|
2007-04-26 10:00:49 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): a new #GstBuffer, or NULL if the memory couldn't
|
|
|
|
* be allocated.
|
2007-04-26 10:00:49 +00:00
|
|
|
*/
|
|
|
|
GstBuffer *
|
2011-06-22 09:42:46 +00:00
|
|
|
gst_buffer_new_allocate (const GstAllocator * allocator, gsize size,
|
2011-06-10 11:40:57 +00:00
|
|
|
gsize align)
|
2007-04-26 10:00:49 +00:00
|
|
|
{
|
|
|
|
GstBuffer *newbuf;
|
2011-03-21 08:51:53 +00:00
|
|
|
GstMemory *mem;
|
2011-03-29 11:51:25 +00:00
|
|
|
#if 0
|
|
|
|
guint8 *data;
|
|
|
|
gsize asize;
|
|
|
|
#endif
|
2010-03-04 08:44:52 +00:00
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
#if 1
|
2011-03-23 19:52:27 +00:00
|
|
|
if (size > 0) {
|
2011-06-22 09:42:46 +00:00
|
|
|
mem = gst_allocator_alloc (allocator, size, align);
|
2011-03-23 19:52:27 +00:00
|
|
|
if (G_UNLIKELY (mem == NULL))
|
|
|
|
goto no_memory;
|
|
|
|
} else {
|
|
|
|
mem = NULL;
|
2007-04-26 10:00:49 +00:00
|
|
|
}
|
2011-03-21 12:07:42 +00:00
|
|
|
|
|
|
|
newbuf = gst_buffer_new ();
|
2011-03-23 19:52:27 +00:00
|
|
|
|
|
|
|
if (mem != NULL)
|
2011-06-13 14:31:53 +00:00
|
|
|
_memory_add (newbuf, -1, mem);
|
2007-04-26 10:00:49 +00:00
|
|
|
|
2011-08-10 09:01:58 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_BUFFER,
|
|
|
|
"new buffer %p of size %" G_GSIZE_FORMAT " from allocator %p", newbuf,
|
2011-06-13 10:04:28 +00:00
|
|
|
size, allocator);
|
2011-03-29 11:51:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
asize = sizeof (GstBufferImpl) + size;
|
|
|
|
data = g_slice_alloc (asize);
|
|
|
|
if (G_UNLIKELY (data == NULL))
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
newbuf = GST_BUFFER_CAST (data);
|
|
|
|
|
|
|
|
gst_buffer_init ((GstBufferImpl *) data, asize);
|
|
|
|
if (size > 0) {
|
|
|
|
mem = gst_memory_new_wrapped (0, data + sizeof (GstBufferImpl), NULL,
|
|
|
|
size, 0, size);
|
2011-06-13 14:31:53 +00:00
|
|
|
_memory_add (newbuf, -1, mem);
|
2011-03-29 11:51:25 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if 0
|
2011-06-10 14:47:29 +00:00
|
|
|
/* allocate memory and buffer, it might be interesting to do this but there
|
|
|
|
* are many complications. We need to keep the memory mapped to access the
|
|
|
|
* buffer fields and the memory for the buffer might be just very slow. We
|
|
|
|
* also need to do some more magic to get the alignment right. */
|
2011-03-29 11:51:25 +00:00
|
|
|
asize = sizeof (GstBufferImpl) + size;
|
2011-06-22 09:42:46 +00:00
|
|
|
mem = gst_allocator_alloc (allocator, asize, align);
|
2011-03-29 11:51:25 +00:00
|
|
|
if (G_UNLIKELY (mem == NULL))
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
/* map the data part and init the buffer in it, set the buffer size to 0 so
|
|
|
|
* that a finalize won't free the buffer */
|
|
|
|
data = gst_memory_map (mem, &asize, NULL, GST_MAP_WRITE);
|
|
|
|
gst_buffer_init ((GstBufferImpl *) data, 0);
|
2012-01-19 08:12:05 +00:00
|
|
|
gst_memory_unmap (mem);
|
2011-03-29 11:51:25 +00:00
|
|
|
|
|
|
|
/* strip off the buffer */
|
2011-03-30 14:47:55 +00:00
|
|
|
gst_memory_resize (mem, sizeof (GstBufferImpl), size);
|
2011-03-29 11:51:25 +00:00
|
|
|
|
|
|
|
newbuf = GST_BUFFER_CAST (data);
|
2011-06-10 14:47:29 +00:00
|
|
|
GST_BUFFER_BUFMEM (newbuf) = mem;
|
2011-03-29 11:51:25 +00:00
|
|
|
|
|
|
|
if (size > 0)
|
2011-06-13 14:31:53 +00:00
|
|
|
_memory_add (newbuf, -1, gst_memory_ref (mem));
|
2011-03-29 11:51:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return newbuf;
|
2011-03-23 19:52:27 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_memory:
|
|
|
|
{
|
2011-08-10 09:01:58 +00:00
|
|
|
GST_CAT_WARNING (GST_CAT_BUFFER,
|
|
|
|
"failed to allocate %" G_GSIZE_FORMAT " bytes", size);
|
2011-03-23 19:52:27 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-07-11 12:40:07 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_new_wrapped_full:
|
|
|
|
* @data: data to wrap
|
|
|
|
* @free_func: function to free @data
|
|
|
|
* @offset: offset in @data of valid data
|
|
|
|
* @size: size of valid data in @data starting at @offset
|
|
|
|
*
|
|
|
|
* Creates a new buffer that wraps the given @data. Valid data is set
|
|
|
|
* to start at @offset and up to @size. If no @free_func is provided,
|
|
|
|
* buffer memory is marked READONLY.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a new #GstBuffer
|
|
|
|
*/
|
|
|
|
GstBuffer *
|
|
|
|
gst_buffer_new_wrapped_full (gpointer data, GFreeFunc free_func, gsize offset,
|
|
|
|
gsize size)
|
|
|
|
{
|
|
|
|
GstBuffer *newbuf;
|
|
|
|
|
|
|
|
newbuf = gst_buffer_new ();
|
|
|
|
gst_buffer_take_memory (newbuf, -1,
|
|
|
|
gst_memory_new_wrapped (free_func ? 0 : GST_MEMORY_FLAG_READONLY,
|
|
|
|
data, free_func, offset + size, offset, size));
|
|
|
|
|
|
|
|
return newbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_buffer_new_wrapped:
|
|
|
|
* @data: data to wrap
|
|
|
|
* @size: allocated size of @data
|
|
|
|
*
|
2011-10-04 16:55:09 +00:00
|
|
|
* Creates a new buffer that wraps the given @data. The memory will be freed
|
|
|
|
* with g_free and will be marked writable.
|
2011-07-11 12:40:07 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a new #GstBuffer
|
|
|
|
*/
|
|
|
|
GstBuffer *
|
|
|
|
gst_buffer_new_wrapped (gpointer data, gsize size)
|
|
|
|
{
|
|
|
|
return gst_buffer_new_wrapped_full (data, g_free, 0, size);
|
|
|
|
}
|
|
|
|
|
2011-03-24 10:49:46 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_n_memory:
|
|
|
|
* @buffer: a #GstBuffer.
|
|
|
|
*
|
|
|
|
* Get the amount of memory blocks that this buffer has.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the amount of memory block in this buffer.
|
|
|
|
*/
|
2011-03-21 08:51:53 +00:00
|
|
|
guint
|
|
|
|
gst_buffer_n_memory (GstBuffer * buffer)
|
|
|
|
{
|
2011-03-23 19:52:27 +00:00
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
|
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
return GST_BUFFER_MEM_LEN (buffer);
|
2011-03-21 08:51:53 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 10:49:46 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_take_memory:
|
|
|
|
* @buffer: a #GstBuffer.
|
2011-07-06 14:13:30 +00:00
|
|
|
* @idx: the index to add the memory at, or -1 to append it to the end
|
2011-09-26 18:47:35 +00:00
|
|
|
* @mem: (transfer full): a #GstMemory.
|
2011-03-24 10:49:46 +00:00
|
|
|
*
|
2011-07-06 14:13:30 +00:00
|
|
|
* Add the memory block @mem to @buffer at @idx. This function takes ownership
|
|
|
|
* of @mem and thus doesn't increase its refcount.
|
2011-03-24 10:49:46 +00:00
|
|
|
*/
|
2011-03-21 08:51:53 +00:00
|
|
|
void
|
2011-07-06 14:13:30 +00:00
|
|
|
gst_buffer_take_memory (GstBuffer * buffer, gint idx, GstMemory * mem)
|
2011-03-21 08:51:53 +00:00
|
|
|
{
|
2011-03-23 19:52:27 +00:00
|
|
|
g_return_if_fail (GST_IS_BUFFER (buffer));
|
|
|
|
g_return_if_fail (gst_buffer_is_writable (buffer));
|
|
|
|
g_return_if_fail (mem != NULL);
|
2011-07-06 14:13:30 +00:00
|
|
|
g_return_if_fail (idx == -1 ||
|
|
|
|
(idx >= 0 && idx <= GST_BUFFER_MEM_LEN (buffer)));
|
2011-03-23 19:52:27 +00:00
|
|
|
|
2011-06-13 14:31:53 +00:00
|
|
|
_memory_add (buffer, idx, mem);
|
2011-03-21 08:51:53 +00:00
|
|
|
}
|
|
|
|
|
2011-04-06 16:57:57 +00:00
|
|
|
static GstMemory *
|
|
|
|
_get_memory (GstBuffer * buffer, guint idx, gboolean write)
|
|
|
|
{
|
|
|
|
GstMemory *mem;
|
|
|
|
|
|
|
|
mem = GST_BUFFER_MEM_PTR (buffer, idx);
|
|
|
|
|
2012-01-16 14:57:35 +00:00
|
|
|
if (G_UNLIKELY (write && !gst_memory_is_writable (mem))) {
|
2011-04-06 16:57:57 +00:00
|
|
|
GstMemory *copy;
|
2011-04-07 14:02:43 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_BUFFER,
|
|
|
|
"making writable copy of memory %p in buffer %p", mem, buffer);
|
2011-04-06 16:57:57 +00:00
|
|
|
/* replace with a writable copy */
|
|
|
|
copy = gst_memory_copy (mem, 0, -1);
|
|
|
|
GST_BUFFER_MEM_PTR (buffer, idx) = copy;
|
|
|
|
gst_memory_unref (mem);
|
|
|
|
mem = copy;
|
|
|
|
}
|
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
2011-03-24 10:49:46 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_peek_memory:
|
|
|
|
* @buffer: a #GstBuffer.
|
|
|
|
* @idx: an index
|
2011-09-26 18:47:35 +00:00
|
|
|
* @flags: #GstMapFlags
|
2011-03-24 10:49:46 +00:00
|
|
|
*
|
2011-09-26 18:47:35 +00:00
|
|
|
* Get the memory block in @buffer at @idx for memory access in @flags.
|
|
|
|
* This function does not return a refcount to the memory block. The memory
|
2012-01-16 11:24:20 +00:00
|
|
|
* block stays valid for as long as the caller has a valid reference to @buffer
|
|
|
|
* and as long as no operations that modify the memory blocks are called, such
|
|
|
|
* as gst_buffer_remove_memory_range(), gst_buffer_take_memory() and gst_buffer_resize().
|
2011-09-26 18:47:35 +00:00
|
|
|
*
|
|
|
|
* @buffer should be writable when @flags contains #GST_MAP_WRITE. If the memory
|
|
|
|
* at @idx is not writable, a new writable copy will be installed in @buffer and
|
|
|
|
* returned.
|
2011-03-24 10:49:46 +00:00
|
|
|
*
|
|
|
|
* Returns: a #GstMemory at @idx.
|
|
|
|
*/
|
2011-03-21 08:51:53 +00:00
|
|
|
GstMemory *
|
2011-03-29 17:17:55 +00:00
|
|
|
gst_buffer_peek_memory (GstBuffer * buffer, guint idx, GstMapFlags flags)
|
2011-03-21 08:51:53 +00:00
|
|
|
{
|
|
|
|
GstMemory *mem;
|
2011-03-29 17:17:55 +00:00
|
|
|
gboolean write;
|
|
|
|
|
|
|
|
write = (flags & GST_MAP_WRITE) != 0;
|
2011-03-23 19:52:27 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
|
2011-03-29 11:51:25 +00:00
|
|
|
g_return_val_if_fail (idx < GST_BUFFER_MEM_LEN (buffer), NULL);
|
2011-03-21 08:51:53 +00:00
|
|
|
|
2011-03-29 17:17:55 +00:00
|
|
|
/* check if we can write when asked for write access */
|
|
|
|
if (G_UNLIKELY (write && !gst_buffer_is_writable (buffer)))
|
|
|
|
goto not_writable;
|
|
|
|
|
2011-04-06 16:57:57 +00:00
|
|
|
mem = _get_memory (buffer, idx, write);
|
2011-03-21 08:51:53 +00:00
|
|
|
|
|
|
|
return mem;
|
2011-03-29 17:17:55 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
not_writable:
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (gst_buffer_is_writable (buffer), NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-03-21 08:51:53 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 10:49:46 +00:00
|
|
|
/**
|
2011-03-29 09:07:36 +00:00
|
|
|
* gst_buffer_remove_memory_range:
|
2011-03-24 10:49:46 +00:00
|
|
|
* @buffer: a #GstBuffer.
|
|
|
|
* @idx: an index
|
2011-03-29 09:07:36 +00:00
|
|
|
* @length: a length
|
2011-03-24 10:49:46 +00:00
|
|
|
*
|
2011-03-29 09:07:36 +00:00
|
|
|
* Remove @len memory blocks in @buffer starting from @idx.
|
|
|
|
*
|
|
|
|
* @length can be -1, in which case all memory starting from @idx is removed.
|
2011-03-24 10:49:46 +00:00
|
|
|
*/
|
2011-03-21 08:51:53 +00:00
|
|
|
void
|
2011-03-29 09:07:36 +00:00
|
|
|
gst_buffer_remove_memory_range (GstBuffer * buffer, guint idx, guint length)
|
2011-03-21 08:51:53 +00:00
|
|
|
{
|
2011-03-29 11:51:25 +00:00
|
|
|
guint len, i, end;
|
2011-03-23 19:52:27 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_BUFFER (buffer));
|
|
|
|
g_return_if_fail (gst_buffer_is_writable (buffer));
|
2011-03-29 11:51:25 +00:00
|
|
|
|
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
2011-03-29 09:07:36 +00:00
|
|
|
if (length == -1) {
|
2011-03-29 11:51:25 +00:00
|
|
|
g_return_if_fail (idx < len);
|
|
|
|
length = len - idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
end = idx + length;
|
|
|
|
for (i = idx; i < end; i++)
|
|
|
|
gst_memory_unref (GST_BUFFER_MEM_PTR (buffer, i));
|
|
|
|
|
|
|
|
if (end != len) {
|
|
|
|
g_memmove (&GST_BUFFER_MEM_PTR (buffer, idx),
|
|
|
|
&GST_BUFFER_MEM_PTR (buffer, end), (len - end) * sizeof (gpointer));
|
2011-03-29 09:07:36 +00:00
|
|
|
}
|
2011-03-29 11:51:25 +00:00
|
|
|
GST_BUFFER_MEM_LEN (buffer) = len - length;
|
2011-03-21 08:51:53 +00:00
|
|
|
}
|
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_get_merged_memory:
|
|
|
|
* @buffer: a #GstBuffer.
|
|
|
|
*
|
|
|
|
* Return a #GstMemory object that contains all the memory in @buffer. If there
|
|
|
|
* was only one memory in @buffer, it will be returned directly, otherwise all
|
|
|
|
* memory objects will be merged into one object that will be returned.
|
|
|
|
*
|
|
|
|
* Returns: a #GstMemory with the merged memory in @buffer. This function can
|
|
|
|
* return %NULL if there is no memory in @buffer. Use gst_memory_unref() after
|
|
|
|
* usage.
|
|
|
|
*/
|
|
|
|
static GstMemory *
|
|
|
|
gst_buffer_get_merged_memory (GstBuffer * buffer)
|
|
|
|
{
|
|
|
|
guint len;
|
|
|
|
GstMemory *mem;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
|
|
|
|
|
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (len == 0)) {
|
|
|
|
/* no memory */
|
|
|
|
mem = NULL;
|
|
|
|
} else if (G_LIKELY (len == 1)) {
|
|
|
|
/* we can take the first one */
|
|
|
|
mem = GST_BUFFER_MEM_PTR (buffer, 0);
|
|
|
|
gst_memory_ref (mem);
|
|
|
|
} else {
|
|
|
|
/* we need to span memory */
|
|
|
|
mem = _span_memory (buffer, 0, -1, FALSE);
|
|
|
|
}
|
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
2011-03-24 10:49:46 +00:00
|
|
|
/**
|
2011-07-11 14:17:57 +00:00
|
|
|
* gst_buffer_get_sizes:
|
2011-03-24 10:49:46 +00:00
|
|
|
* @buffer: a #GstBuffer.
|
2011-07-11 14:17:57 +00:00
|
|
|
* @offset: a pointer to the offset
|
|
|
|
* @maxsize: a pointer to the maxsize
|
2011-03-24 10:49:46 +00:00
|
|
|
*
|
|
|
|
* Get the total size of all memory blocks in @buffer.
|
|
|
|
*
|
2011-07-11 14:17:57 +00:00
|
|
|
* When not %NULL, @offset will contain the offset of the data in the first
|
|
|
|
* memory block in @buffer and @maxsize will contain the sum of the size
|
|
|
|
* and @offset and the amount of extra padding on the last memory block.
|
|
|
|
* @offset and @maxsize can be used to resize the buffer with
|
|
|
|
* gst_buffer_resize().
|
|
|
|
*
|
2011-03-24 10:49:46 +00:00
|
|
|
* Returns: the total size of the memory in @buffer.
|
|
|
|
*/
|
2011-03-21 08:51:53 +00:00
|
|
|
gsize
|
2011-07-11 14:17:57 +00:00
|
|
|
gst_buffer_get_sizes (GstBuffer * buffer, gsize * offset, gsize * maxsize)
|
2011-03-21 08:51:53 +00:00
|
|
|
{
|
2011-07-11 16:00:52 +00:00
|
|
|
guint len;
|
|
|
|
gsize size;
|
|
|
|
GstMemory *mem;
|
2011-03-21 08:51:53 +00:00
|
|
|
|
2011-03-23 19:52:27 +00:00
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
|
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
2011-03-21 08:51:53 +00:00
|
|
|
|
2011-07-11 16:00:52 +00:00
|
|
|
if (G_LIKELY (len == 1)) {
|
|
|
|
/* common case */
|
|
|
|
mem = GST_BUFFER_MEM_PTR (buffer, 0);
|
|
|
|
size = gst_memory_get_sizes (mem, offset, maxsize);
|
|
|
|
} else {
|
|
|
|
guint i;
|
|
|
|
gsize extra, offs;
|
|
|
|
|
|
|
|
size = offs = extra = 0;
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
gsize s, o, ms;
|
|
|
|
|
|
|
|
mem = GST_BUFFER_MEM_PTR (buffer, i);
|
|
|
|
s = gst_memory_get_sizes (mem, &o, &ms);
|
|
|
|
|
2011-07-12 11:40:35 +00:00
|
|
|
if (s) {
|
|
|
|
if (size == 0)
|
|
|
|
/* first size, take accumulated data before as the offset */
|
|
|
|
offs = extra + o;
|
|
|
|
/* add sizes */
|
|
|
|
size += s;
|
|
|
|
/* save the amount of data after this block */
|
2011-07-11 16:00:52 +00:00
|
|
|
extra = ms - (o + s);
|
2011-07-12 11:40:35 +00:00
|
|
|
} else {
|
|
|
|
/* empty block, add as extra */
|
|
|
|
extra += ms;
|
|
|
|
}
|
2011-07-11 16:00:52 +00:00
|
|
|
}
|
|
|
|
if (offset)
|
|
|
|
*offset = offs;
|
|
|
|
if (maxsize)
|
|
|
|
*maxsize = offs + size + extra;
|
2011-03-21 08:51:53 +00:00
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2011-03-28 14:40:24 +00:00
|
|
|
/**
|
2011-03-30 14:47:55 +00:00
|
|
|
* gst_buffer_resize:
|
2011-03-28 14:40:24 +00:00
|
|
|
* @buffer: a #GstBuffer.
|
2011-07-11 14:17:57 +00:00
|
|
|
* @offset: the offset adjustement
|
2011-11-11 01:47:30 +00:00
|
|
|
* @size: the new size or -1 to just adjust the offset
|
2011-03-28 14:40:24 +00:00
|
|
|
*
|
|
|
|
* Set the total size of the buffer
|
|
|
|
*/
|
|
|
|
void
|
2011-11-11 01:47:30 +00:00
|
|
|
gst_buffer_resize (GstBuffer * buffer, gssize offset, gssize size)
|
2011-03-28 14:40:24 +00:00
|
|
|
{
|
|
|
|
guint len;
|
2011-07-12 12:07:57 +00:00
|
|
|
guint i;
|
2011-07-11 14:17:57 +00:00
|
|
|
gsize bsize, bufsize, bufoffs, bufmax;
|
2011-03-28 14:40:24 +00:00
|
|
|
GstMemory *mem;
|
|
|
|
|
|
|
|
g_return_if_fail (gst_buffer_is_writable (buffer));
|
2011-11-11 09:00:35 +00:00
|
|
|
g_return_if_fail (size >= -1);
|
2011-03-28 14:40:24 +00:00
|
|
|
|
2011-07-11 14:17:57 +00:00
|
|
|
bufsize = gst_buffer_get_sizes (buffer, &bufoffs, &bufmax);
|
|
|
|
|
2011-11-11 09:00:35 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_BUFFER, "trim %p %" G_GSSIZE_FORMAT "-%" G_GSSIZE_FORMAT
|
|
|
|
" size:%" G_GSIZE_FORMAT " offs:%" G_GSIZE_FORMAT " max:%"
|
2011-11-11 01:47:30 +00:00
|
|
|
G_GSIZE_FORMAT, buffer, offset, size, bufsize, bufoffs, bufmax);
|
2011-07-12 10:00:58 +00:00
|
|
|
|
2011-07-11 14:42:56 +00:00
|
|
|
/* we can't go back further than the current offset or past the end of the
|
|
|
|
* buffer */
|
|
|
|
g_return_if_fail ((offset < 0 && bufoffs >= -offset) || (offset >= 0
|
|
|
|
&& bufoffs + offset <= bufmax));
|
|
|
|
if (size == -1) {
|
|
|
|
g_return_if_fail (bufsize >= offset);
|
2011-03-29 14:52:21 +00:00
|
|
|
size = bufsize - offset;
|
2011-07-11 14:42:56 +00:00
|
|
|
}
|
|
|
|
g_return_if_fail (bufmax >= bufoffs + offset + size);
|
2011-03-29 14:52:21 +00:00
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
2011-03-28 14:40:24 +00:00
|
|
|
|
|
|
|
/* copy and trim */
|
2011-07-12 12:07:57 +00:00
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
gsize left, noffs;
|
|
|
|
|
|
|
|
mem = GST_BUFFER_MEM_PTR (buffer, i);
|
2011-07-11 14:17:57 +00:00
|
|
|
bsize = gst_memory_get_sizes (mem, NULL, NULL);
|
2011-03-28 14:40:24 +00:00
|
|
|
|
2011-07-12 12:07:57 +00:00
|
|
|
noffs = 0;
|
|
|
|
/* last buffer always gets resized to the remaining size */
|
|
|
|
if (i + 1 == len)
|
|
|
|
left = size;
|
|
|
|
/* shrink buffers before the offset */
|
|
|
|
else if ((gssize) bsize <= offset) {
|
|
|
|
left = 0;
|
|
|
|
noffs = offset - bsize;
|
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
/* clip other buffers */
|
|
|
|
else
|
|
|
|
left = MIN (bsize - offset, size);
|
|
|
|
|
|
|
|
if (offset != 0 || left != bsize) {
|
|
|
|
/* we need to clip something */
|
2012-01-16 14:57:35 +00:00
|
|
|
if (gst_memory_is_writable (mem)) {
|
2011-07-12 12:07:57 +00:00
|
|
|
gst_memory_resize (mem, offset, left);
|
|
|
|
} else {
|
|
|
|
GstMemory *tmp;
|
2011-04-07 14:02:43 +00:00
|
|
|
|
2011-07-12 12:07:57 +00:00
|
|
|
if (mem->flags & GST_MEMORY_FLAG_NO_SHARE)
|
|
|
|
tmp = gst_memory_copy (mem, offset, left);
|
|
|
|
else
|
|
|
|
tmp = gst_memory_share (mem, offset, left);
|
2011-04-07 14:02:43 +00:00
|
|
|
|
2011-07-12 12:07:57 +00:00
|
|
|
gst_memory_unref (mem);
|
|
|
|
mem = tmp;
|
2011-03-28 14:40:24 +00:00
|
|
|
}
|
|
|
|
}
|
2011-07-12 12:07:57 +00:00
|
|
|
offset = noffs;
|
|
|
|
size -= left;
|
|
|
|
|
|
|
|
GST_BUFFER_MEM_PTR (buffer, i) = mem;
|
2011-03-28 14:40:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-24 10:49:46 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_map:
|
|
|
|
* @buffer: a #GstBuffer.
|
2012-01-20 13:23:57 +00:00
|
|
|
* @info: (out): info about the mapping
|
2011-03-24 10:49:46 +00:00
|
|
|
* @flags: flags for the mapping
|
|
|
|
*
|
2012-01-20 13:23:57 +00:00
|
|
|
* This function fills @info with a pointer to the merged memory in @buffer.
|
|
|
|
* @flags describe the desired access of the memory. When @flags is
|
|
|
|
* #GST_MAP_WRITE, @buffer should be writable (as returned from
|
|
|
|
* gst_buffer_is_writable()).
|
2011-03-24 10:49:46 +00:00
|
|
|
*
|
|
|
|
* When @buffer is writable but the memory isn't, a writable copy will
|
|
|
|
* automatically be created and returned. The readonly copy of the buffer memory
|
|
|
|
* will then also be replaced with this writable copy.
|
|
|
|
*
|
|
|
|
* When the buffer contains multiple memory blocks, the returned pointer will be
|
|
|
|
* a concatenation of the memory blocks.
|
|
|
|
*
|
2012-01-20 13:23:57 +00:00
|
|
|
* Returns: (transfer full): %TRUE if the map succeeded and @info contains valid
|
|
|
|
* data.
|
2011-03-24 10:49:46 +00:00
|
|
|
*/
|
2012-01-20 13:23:57 +00:00
|
|
|
gboolean
|
|
|
|
gst_buffer_map (GstBuffer * buffer, GstMapInfo * info, GstMapFlags flags)
|
2011-03-21 08:51:53 +00:00
|
|
|
{
|
2011-03-29 17:17:55 +00:00
|
|
|
GstMemory *mem;
|
|
|
|
gboolean write, writable;
|
2011-03-21 12:07:42 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
|
|
|
|
g_return_val_if_fail (info != NULL, FALSE);
|
2011-03-23 19:52:27 +00:00
|
|
|
|
2011-03-29 17:17:55 +00:00
|
|
|
write = (flags & GST_MAP_WRITE) != 0;
|
|
|
|
writable = gst_buffer_is_writable (buffer);
|
2011-03-21 12:07:42 +00:00
|
|
|
|
2011-03-29 17:17:55 +00:00
|
|
|
/* check if we can write when asked for write access */
|
|
|
|
if (G_UNLIKELY (write && !writable))
|
2011-03-23 19:52:27 +00:00
|
|
|
goto not_writable;
|
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
mem = gst_buffer_get_merged_memory (buffer);
|
|
|
|
if (mem == NULL)
|
|
|
|
goto no_memory;
|
2011-03-23 19:52:27 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
/* now try to map */
|
|
|
|
if (!gst_memory_map (mem, info, flags) && write) {
|
2011-03-29 17:17:55 +00:00
|
|
|
GstMemory *copy;
|
2012-01-20 13:23:57 +00:00
|
|
|
/* make a (writable) copy */
|
2011-03-29 17:17:55 +00:00
|
|
|
copy = gst_memory_copy (mem, 0, -1);
|
|
|
|
gst_memory_unref (mem);
|
|
|
|
mem = copy;
|
2012-01-20 13:23:57 +00:00
|
|
|
if (G_UNLIKELY (mem == NULL))
|
|
|
|
goto cannot_map;
|
|
|
|
|
|
|
|
/* try again */
|
|
|
|
if (!gst_memory_map (mem, info, flags))
|
|
|
|
goto cannot_map;
|
2011-03-21 12:07:42 +00:00
|
|
|
}
|
2011-03-29 17:17:55 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
/* if the buffer is writable, replace the memory */
|
|
|
|
if (writable)
|
|
|
|
_replace_memory (buffer, gst_memory_ref (mem));
|
2011-03-29 17:17:55 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
return TRUE;
|
2011-03-23 19:52:27 +00:00
|
|
|
|
|
|
|
/* ERROR */
|
|
|
|
not_writable:
|
|
|
|
{
|
2012-01-20 13:23:57 +00:00
|
|
|
g_critical ("write map requested on non-writable buffer");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
no_memory:
|
|
|
|
{
|
|
|
|
/* empty buffer, we need to return NULL */
|
|
|
|
GST_DEBUG_OBJECT (buffer, "can't get buffer memory");
|
|
|
|
info->memory = NULL;
|
|
|
|
info->data = NULL;
|
|
|
|
info->size = 0;
|
|
|
|
info->maxsize = 0;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
cannot_map:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (buffer, "cannot map memory");
|
|
|
|
gst_memory_unref (mem);
|
|
|
|
return FALSE;
|
2011-03-23 19:52:27 +00:00
|
|
|
}
|
2011-03-21 08:51:53 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 10:49:46 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_unmap:
|
|
|
|
* @buffer: a #GstBuffer.
|
2012-01-20 13:23:57 +00:00
|
|
|
* @info: a #GstMapInfo
|
2011-03-24 10:49:46 +00:00
|
|
|
*
|
2012-01-20 13:23:57 +00:00
|
|
|
* Release the memory previously mapped with gst_buffer_map().
|
2011-03-24 10:49:46 +00:00
|
|
|
*/
|
2012-01-20 13:23:57 +00:00
|
|
|
void
|
|
|
|
gst_buffer_unmap (GstBuffer * buffer, GstMapInfo * info)
|
2011-03-21 08:51:53 +00:00
|
|
|
{
|
2012-01-20 13:23:57 +00:00
|
|
|
g_return_if_fail (GST_IS_BUFFER (buffer));
|
|
|
|
g_return_if_fail (info != NULL);
|
2011-03-21 12:07:42 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
if (info->memory) {
|
|
|
|
gst_memory_unmap (info->memory, info);
|
|
|
|
gst_memory_unref (info->memory);
|
2011-03-21 12:07:42 +00:00
|
|
|
}
|
2011-03-21 08:51:53 +00:00
|
|
|
}
|
|
|
|
|
2011-03-28 08:28:02 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_fill:
|
|
|
|
* @buffer: a #GstBuffer.
|
|
|
|
* @offset: the offset to fill
|
|
|
|
* @src: the source address
|
|
|
|
* @size: the size to fill
|
|
|
|
*
|
2011-06-09 09:13:55 +00:00
|
|
|
* Copy @size bytes from @src to @buffer at @offset.
|
2011-08-16 16:29:29 +00:00
|
|
|
*
|
|
|
|
* Returns: The amount of bytes copied. This value can be lower than @size
|
|
|
|
* when @buffer did not contain enough data.
|
2011-03-28 08:28:02 +00:00
|
|
|
*/
|
2011-08-16 16:29:29 +00:00
|
|
|
gsize
|
2011-03-28 13:52:17 +00:00
|
|
|
gst_buffer_fill (GstBuffer * buffer, gsize offset, gconstpointer src,
|
|
|
|
gsize size)
|
2011-03-28 08:28:02 +00:00
|
|
|
{
|
2011-08-16 16:29:29 +00:00
|
|
|
gsize i, len, left;
|
2011-03-28 13:52:17 +00:00
|
|
|
const guint8 *ptr = src;
|
2011-03-28 08:28:02 +00:00
|
|
|
|
2011-08-16 16:29:29 +00:00
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
|
|
|
|
g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
|
|
|
|
g_return_val_if_fail (src != NULL, 0);
|
2011-03-29 09:31:30 +00:00
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
2011-08-16 16:29:29 +00:00
|
|
|
left = size;
|
2011-03-28 08:28:02 +00:00
|
|
|
|
2011-08-16 16:29:29 +00:00
|
|
|
for (i = 0; i < len && left > 0; i++) {
|
2012-01-20 13:23:57 +00:00
|
|
|
GstMapInfo info;
|
|
|
|
gsize tocopy;
|
2011-03-28 08:28:02 +00:00
|
|
|
GstMemory *mem;
|
|
|
|
|
2011-04-06 16:57:57 +00:00
|
|
|
mem = _get_memory (buffer, i, TRUE);
|
2011-03-28 08:28:02 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_map (mem, &info, GST_MAP_WRITE);
|
|
|
|
if (info.size > offset) {
|
2011-03-28 08:28:02 +00:00
|
|
|
/* we have enough */
|
2012-01-20 13:23:57 +00:00
|
|
|
tocopy = MIN (info.size - offset, left);
|
|
|
|
memcpy ((guint8 *) info.data + offset, ptr, tocopy);
|
2011-08-16 16:29:29 +00:00
|
|
|
left -= tocopy;
|
2011-03-28 08:28:02 +00:00
|
|
|
ptr += tocopy;
|
|
|
|
offset = 0;
|
|
|
|
} else {
|
|
|
|
/* offset past buffer, skip */
|
2012-01-20 13:23:57 +00:00
|
|
|
offset -= info.size;
|
2011-03-28 08:28:02 +00:00
|
|
|
}
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_unmap (mem, &info);
|
2011-03-28 08:28:02 +00:00
|
|
|
}
|
2011-08-16 16:29:29 +00:00
|
|
|
return size - left;
|
2011-03-28 08:28:02 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 10:49:46 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_extract:
|
|
|
|
* @buffer: a #GstBuffer.
|
|
|
|
* @offset: the offset to extract
|
|
|
|
* @dest: the destination address
|
|
|
|
* @size: the size to extract
|
|
|
|
*
|
|
|
|
* Copy @size bytes starting from @offset in @buffer to @dest.
|
2011-08-16 16:29:29 +00:00
|
|
|
*
|
|
|
|
* Returns: The amount of bytes extracted. This value can be lower than @size
|
|
|
|
* when @buffer did not contain enough data.
|
2011-03-24 10:49:46 +00:00
|
|
|
*/
|
2011-08-16 16:29:29 +00:00
|
|
|
gsize
|
2011-03-21 17:13:55 +00:00
|
|
|
gst_buffer_extract (GstBuffer * buffer, gsize offset, gpointer dest, gsize size)
|
|
|
|
{
|
2011-08-16 16:29:29 +00:00
|
|
|
gsize i, len, left;
|
2011-03-21 17:13:55 +00:00
|
|
|
guint8 *ptr = dest;
|
|
|
|
|
2011-08-16 16:29:29 +00:00
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
|
|
|
|
g_return_val_if_fail (dest != NULL, 0);
|
2011-03-29 09:31:30 +00:00
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
2011-08-16 16:29:29 +00:00
|
|
|
left = size;
|
2011-03-21 17:13:55 +00:00
|
|
|
|
2011-08-16 16:29:29 +00:00
|
|
|
for (i = 0; i < len && left > 0; i++) {
|
2012-01-20 13:23:57 +00:00
|
|
|
GstMapInfo info;
|
|
|
|
gsize tocopy;
|
2011-03-21 17:13:55 +00:00
|
|
|
GstMemory *mem;
|
|
|
|
|
2011-03-29 11:51:25 +00:00
|
|
|
mem = GST_BUFFER_MEM_PTR (buffer, i);
|
2011-03-21 17:13:55 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_map (mem, &info, GST_MAP_READ);
|
|
|
|
if (info.size > offset) {
|
2011-03-24 20:18:52 +00:00
|
|
|
/* we have enough */
|
2012-01-20 13:23:57 +00:00
|
|
|
tocopy = MIN (info.size - offset, left);
|
|
|
|
memcpy (ptr, (guint8 *) info.data + offset, tocopy);
|
2011-08-16 16:29:29 +00:00
|
|
|
left -= tocopy;
|
2011-03-21 17:13:55 +00:00
|
|
|
ptr += tocopy;
|
|
|
|
offset = 0;
|
|
|
|
} else {
|
2011-03-24 20:18:52 +00:00
|
|
|
/* offset past buffer, skip */
|
2012-01-20 13:23:57 +00:00
|
|
|
offset -= info.size;
|
2011-03-21 17:13:55 +00:00
|
|
|
}
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_unmap (mem, &info);
|
2011-03-21 17:13:55 +00:00
|
|
|
}
|
2011-08-16 16:29:29 +00:00
|
|
|
return size - left;
|
2011-03-21 17:13:55 +00:00
|
|
|
}
|
|
|
|
|
2011-04-19 16:57:43 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_memcmp:
|
|
|
|
* @buffer: a #GstBuffer.
|
|
|
|
* @offset: the offset in @buffer
|
|
|
|
* @mem: the memory to compare
|
|
|
|
* @size: the size to compare
|
|
|
|
*
|
|
|
|
* Compare @size bytes starting from @offset in @buffer with the memory in @mem.
|
2011-06-13 14:31:53 +00:00
|
|
|
*
|
|
|
|
* Returns: 0 if the memory is equal.
|
2011-04-19 16:57:43 +00:00
|
|
|
*/
|
|
|
|
gint
|
|
|
|
gst_buffer_memcmp (GstBuffer * buffer, gsize offset, gconstpointer mem,
|
|
|
|
gsize size)
|
|
|
|
{
|
|
|
|
gsize i, len;
|
|
|
|
const guint8 *ptr = mem;
|
|
|
|
gint res = 0;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
|
|
|
|
g_return_val_if_fail (mem != NULL, 0);
|
|
|
|
|
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
|
|
|
|
|
|
|
for (i = 0; i < len && size > 0 && res == 0; i++) {
|
2012-01-20 13:23:57 +00:00
|
|
|
GstMapInfo info;
|
|
|
|
gsize tocmp;
|
2011-04-19 16:57:43 +00:00
|
|
|
GstMemory *mem;
|
|
|
|
|
|
|
|
mem = GST_BUFFER_MEM_PTR (buffer, i);
|
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_map (mem, &info, GST_MAP_READ);
|
|
|
|
if (info.size > offset) {
|
2011-04-19 16:57:43 +00:00
|
|
|
/* we have enough */
|
2012-01-20 13:23:57 +00:00
|
|
|
tocmp = MIN (info.size - offset, size);
|
|
|
|
res = memcmp (ptr, (guint8 *) info.data + offset, tocmp);
|
2011-04-19 16:57:43 +00:00
|
|
|
size -= tocmp;
|
|
|
|
ptr += tocmp;
|
|
|
|
offset = 0;
|
|
|
|
} else {
|
|
|
|
/* offset past buffer, skip */
|
2012-01-20 13:23:57 +00:00
|
|
|
offset -= info.size;
|
2011-04-19 16:57:43 +00:00
|
|
|
}
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_unmap (mem, &info);
|
2011-04-19 16:57:43 +00:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-07-06 14:08:56 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_memset:
|
|
|
|
* @buffer: a #GstBuffer.
|
|
|
|
* @offset: the offset in @buffer
|
|
|
|
* @val: the value to set
|
|
|
|
* @size: the size to set
|
|
|
|
*
|
|
|
|
* Fill @buf with @size bytes with @val starting from @offset.
|
2011-08-16 16:29:29 +00:00
|
|
|
*
|
|
|
|
* Returns: The amount of bytes filled. This value can be lower than @size
|
|
|
|
* when @buffer did not contain enough data.
|
2011-07-06 14:08:56 +00:00
|
|
|
*/
|
2011-08-16 16:29:29 +00:00
|
|
|
gsize
|
2011-07-06 14:08:56 +00:00
|
|
|
gst_buffer_memset (GstBuffer * buffer, gsize offset, guint8 val, gsize size)
|
|
|
|
{
|
2011-08-16 16:29:29 +00:00
|
|
|
gsize i, len, left;
|
2011-07-06 14:08:56 +00:00
|
|
|
|
2011-08-16 16:29:29 +00:00
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
|
|
|
|
g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
|
2011-07-06 14:08:56 +00:00
|
|
|
|
|
|
|
len = GST_BUFFER_MEM_LEN (buffer);
|
2011-08-16 16:29:29 +00:00
|
|
|
left = size;
|
2011-07-06 14:08:56 +00:00
|
|
|
|
2011-08-16 16:29:29 +00:00
|
|
|
for (i = 0; i < len && left > 0; i++) {
|
2012-01-20 13:23:57 +00:00
|
|
|
GstMapInfo info;
|
|
|
|
gsize toset;
|
2011-07-06 14:08:56 +00:00
|
|
|
GstMemory *mem;
|
|
|
|
|
2012-01-06 12:32:55 +00:00
|
|
|
mem = _get_memory (buffer, i, TRUE);
|
2011-07-06 14:08:56 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_map (mem, &info, GST_MAP_WRITE);
|
|
|
|
if (info.size > offset) {
|
2011-07-06 14:08:56 +00:00
|
|
|
/* we have enough */
|
2012-01-20 13:23:57 +00:00
|
|
|
toset = MIN (info.size - offset, left);
|
|
|
|
memset ((guint8 *) info.data + offset, val, toset);
|
2011-08-16 16:29:29 +00:00
|
|
|
left -= toset;
|
2011-07-06 14:08:56 +00:00
|
|
|
offset = 0;
|
|
|
|
} else {
|
|
|
|
/* offset past buffer, skip */
|
2012-01-20 13:23:57 +00:00
|
|
|
offset -= info.size;
|
2011-07-06 14:08:56 +00:00
|
|
|
}
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_unmap (mem, &info);
|
2011-07-06 14:08:56 +00:00
|
|
|
}
|
2011-08-16 16:29:29 +00:00
|
|
|
return size - left;
|
2011-07-06 14:08:56 +00:00
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
2011-03-30 14:47:55 +00:00
|
|
|
* gst_buffer_copy_region:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @parent: a #GstBuffer.
|
2011-06-19 16:15:19 +00:00
|
|
|
* @flags: the #GstBufferCopyFlags
|
2011-05-05 08:37:19 +00:00
|
|
|
* @offset: the offset into parent #GstBuffer at which the new sub-buffer
|
2005-10-28 17:01:14 +00:00
|
|
|
* begins.
|
2006-07-05 17:09:18 +00:00
|
|
|
* @size: the size of the new #GstBuffer sub-buffer, in bytes.
|
2000-03-27 19:53:43 +00:00
|
|
|
*
|
2005-11-09 18:10:53 +00:00
|
|
|
* Creates a sub-buffer from @parent at @offset and @size.
|
2002-07-08 19:22:02 +00:00
|
|
|
* This sub-buffer uses the actual memory space of the parent buffer.
|
2005-10-28 17:01:14 +00:00
|
|
|
* This function will copy the offset and timestamp fields when the
|
2011-05-05 08:37:19 +00:00
|
|
|
* offset is 0. If not, they will be set to #GST_CLOCK_TIME_NONE and
|
2006-08-21 09:30:04 +00:00
|
|
|
* #GST_BUFFER_OFFSET_NONE.
|
|
|
|
* If @offset equals 0 and @size equals the total size of @buffer, the
|
|
|
|
* duration and offset end fields are also copied. If not they will be set
|
|
|
|
* to #GST_CLOCK_TIME_NONE and #GST_BUFFER_OFFSET_NONE.
|
2005-08-14 22:29:07 +00:00
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* MT safe.
|
2010-12-07 18:35:04 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer full): the new #GstBuffer or NULL if the arguments were
|
|
|
|
* invalid.
|
2000-03-27 19:53:43 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstBuffer *
|
2011-03-30 14:47:55 +00:00
|
|
|
gst_buffer_copy_region (GstBuffer * buffer, GstBufferCopyFlags flags,
|
|
|
|
gsize offset, gsize size)
|
2000-11-11 15:13:50 +00:00
|
|
|
{
|
2011-03-30 14:47:55 +00:00
|
|
|
GstBuffer *copy;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
g_return_val_if_fail (buffer != NULL, NULL);
|
2002-07-08 19:22:02 +00:00
|
|
|
|
|
|
|
/* create the new buffer */
|
2011-03-30 14:47:55 +00:00
|
|
|
copy = gst_buffer_new ();
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2011-03-30 14:47:55 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_BUFFER, "new region copy %p of %p %" G_GSIZE_FORMAT
|
|
|
|
"-%" G_GSIZE_FORMAT, copy, buffer, offset, size);
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-03-30 14:47:55 +00:00
|
|
|
gst_buffer_copy_into (copy, buffer, flags, offset, size);
|
2011-03-08 16:58:49 +00:00
|
|
|
|
2011-03-30 14:47:55 +00:00
|
|
|
return copy;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-03-29 14:52:21 +00:00
|
|
|
static gboolean
|
|
|
|
_gst_buffer_arr_is_span_fast (GstMemory ** mem[], gsize len[], guint n,
|
|
|
|
gsize * offset, GstMemory ** parent)
|
|
|
|
{
|
|
|
|
GstMemory *mcur, *mprv;
|
|
|
|
gboolean have_offset = FALSE;
|
|
|
|
guint count, i;
|
|
|
|
|
|
|
|
mcur = mprv = NULL;
|
|
|
|
for (count = 0; count < n; count++) {
|
|
|
|
gsize offs, clen;
|
|
|
|
GstMemory **cmem;
|
|
|
|
|
|
|
|
cmem = mem[count];
|
|
|
|
clen = len[count];
|
|
|
|
|
|
|
|
for (i = 0; i < clen; i++) {
|
|
|
|
if (mcur)
|
|
|
|
mprv = mcur;
|
|
|
|
mcur = cmem[i];
|
|
|
|
|
|
|
|
if (mprv && mcur) {
|
|
|
|
/* check is memory is contiguous */
|
|
|
|
if (!gst_memory_is_span (mprv, mcur, &offs))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!have_offset) {
|
|
|
|
if (offset)
|
|
|
|
*offset = offs;
|
|
|
|
if (parent)
|
|
|
|
*parent = mprv->parent;
|
|
|
|
|
|
|
|
have_offset = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return have_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstMemory *
|
|
|
|
_gst_buffer_arr_span (GstMemory ** mem[], gsize len[], guint n, gsize offset,
|
2011-03-29 17:17:55 +00:00
|
|
|
gsize size, gboolean writable)
|
2011-03-29 14:52:21 +00:00
|
|
|
{
|
2011-05-08 09:01:57 +00:00
|
|
|
GstMemory *span, *parent = NULL;
|
|
|
|
gsize poffset = 0;
|
2011-03-29 14:52:21 +00:00
|
|
|
|
2011-03-29 17:17:55 +00:00
|
|
|
if (!writable
|
|
|
|
&& _gst_buffer_arr_is_span_fast (mem, len, n, &poffset, &parent)) {
|
2011-04-07 14:02:43 +00:00
|
|
|
if (parent->flags & GST_MEMORY_FLAG_NO_SHARE)
|
|
|
|
span = gst_memory_copy (parent, offset + poffset, size);
|
|
|
|
else
|
|
|
|
span = gst_memory_share (parent, offset + poffset, size);
|
2011-03-29 14:52:21 +00:00
|
|
|
} else {
|
|
|
|
gsize count, left;
|
2012-01-20 13:23:57 +00:00
|
|
|
GstMapInfo dinfo;
|
|
|
|
guint8 *ptr;
|
2011-03-29 14:52:21 +00:00
|
|
|
|
2011-06-22 09:42:46 +00:00
|
|
|
span = gst_allocator_alloc (NULL, size, 0);
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_map (span, &dinfo, GST_MAP_WRITE);
|
2011-03-29 14:52:21 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
ptr = dinfo.data;
|
2011-03-29 14:52:21 +00:00
|
|
|
left = size;
|
|
|
|
|
|
|
|
for (count = 0; count < n; count++) {
|
2012-01-20 13:23:57 +00:00
|
|
|
GstMapInfo sinfo;
|
|
|
|
gsize i, tocopy, clen;
|
2011-03-29 14:52:21 +00:00
|
|
|
GstMemory **cmem;
|
|
|
|
|
|
|
|
cmem = mem[count];
|
|
|
|
clen = len[count];
|
|
|
|
|
|
|
|
for (i = 0; i < clen && left > 0; i++) {
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_map (cmem[i], &sinfo, GST_MAP_READ);
|
|
|
|
tocopy = MIN (sinfo.size, left);
|
2011-03-29 14:52:21 +00:00
|
|
|
if (tocopy > offset) {
|
2012-01-20 13:23:57 +00:00
|
|
|
memcpy (ptr, (guint8 *) sinfo.data + offset, tocopy - offset);
|
2011-03-29 14:52:21 +00:00
|
|
|
left -= tocopy;
|
|
|
|
ptr += tocopy;
|
|
|
|
offset = 0;
|
|
|
|
} else {
|
|
|
|
offset -= tocopy;
|
|
|
|
}
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_unmap (cmem[i], &sinfo);
|
2011-03-29 14:52:21 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-20 13:23:57 +00:00
|
|
|
gst_memory_unmap (span, &dinfo);
|
2011-03-29 14:52:21 +00:00
|
|
|
}
|
|
|
|
return span;
|
|
|
|
}
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_is_span_fast:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf1: the first #GstBuffer.
|
|
|
|
* @buf2: the second #GstBuffer.
|
2001-09-10 19:46:01 +00:00
|
|
|
*
|
2004-03-26 03:46:16 +00:00
|
|
|
* Determines whether a gst_buffer_span() can be done without copying
|
2011-03-21 12:07:42 +00:00
|
|
|
* the contents, that is, whether the data areas are contiguous sub-buffers of
|
2005-10-28 17:01:14 +00:00
|
|
|
* the same buffer.
|
2001-09-10 19:46:01 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* MT safe.
|
2005-06-08 13:40:46 +00:00
|
|
|
* Returns: TRUE if the buffers are contiguous,
|
2002-08-30 14:54:58 +00:00
|
|
|
* FALSE if a copy would be required.
|
2001-09-10 19:46:01 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_buffer_is_span_fast (GstBuffer * buf1, GstBuffer * buf2)
|
2001-09-10 19:46:01 +00:00
|
|
|
{
|
2011-03-29 14:52:21 +00:00
|
|
|
GstMemory **mem[2];
|
|
|
|
gsize len[2];
|
2011-03-21 12:07:42 +00:00
|
|
|
|
2011-03-29 09:31:30 +00:00
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buf1), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buf2), FALSE);
|
2010-12-26 21:20:31 +00:00
|
|
|
g_return_val_if_fail (buf1->mini_object.refcount > 0, FALSE);
|
|
|
|
g_return_val_if_fail (buf2->mini_object.refcount > 0, FALSE);
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2011-03-29 14:52:21 +00:00
|
|
|
mem[0] = GST_BUFFER_MEM_ARRAY (buf1);
|
|
|
|
len[0] = GST_BUFFER_MEM_LEN (buf1);
|
|
|
|
mem[1] = GST_BUFFER_MEM_ARRAY (buf2);
|
|
|
|
len[1] = GST_BUFFER_MEM_LEN (buf2);
|
2011-03-21 12:07:42 +00:00
|
|
|
|
2011-03-29 14:52:21 +00:00
|
|
|
return _gst_buffer_arr_is_span_fast (mem, len, 2, NULL, NULL);
|
2001-09-10 19:46:01 +00:00
|
|
|
}
|
|
|
|
|
2001-09-04 04:34:32 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_span:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf1: the first source #GstBuffer to merge.
|
2002-08-30 14:54:58 +00:00
|
|
|
* @offset: the offset in the first buffer from where the new
|
|
|
|
* buffer should start.
|
|
|
|
* @buf2: the second source #GstBuffer to merge.
|
2011-03-29 14:52:21 +00:00
|
|
|
* @size: the total size of the new buffer.
|
2001-09-04 04:34:32 +00:00
|
|
|
*
|
2002-04-17 15:19:56 +00:00
|
|
|
* Creates a new buffer that consists of part of buf1 and buf2.
|
2001-09-04 04:34:32 +00:00
|
|
|
* Logically, buf1 and buf2 are concatenated into a single larger
|
|
|
|
* buffer, and a new buffer is created at the given offset inside
|
|
|
|
* this space, with a given length.
|
|
|
|
*
|
|
|
|
* If the two source buffers are children of the same larger buffer,
|
|
|
|
* and are contiguous, the new buffer will be a child of the shared
|
2005-08-14 22:29:07 +00:00
|
|
|
* parent, and thus no copying is necessary. you can use
|
2002-07-13 23:12:22 +00:00
|
|
|
* gst_buffer_is_span_fast() to determine if a memcpy will be needed.
|
2001-09-04 04:34:32 +00:00
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* MT safe.
|
2010-12-07 18:35:04 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer full): the new #GstBuffer that spans the two source
|
|
|
|
* buffers, or NULL if the arguments are invalid.
|
2001-09-04 04:34:32 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstBuffer *
|
2011-03-29 14:52:21 +00:00
|
|
|
gst_buffer_span (GstBuffer * buf1, gsize offset, GstBuffer * buf2, gsize size)
|
2001-08-11 08:25:05 +00:00
|
|
|
{
|
|
|
|
GstBuffer *newbuf;
|
2011-03-29 14:52:21 +00:00
|
|
|
GstMemory *span;
|
|
|
|
GstMemory **mem[2];
|
|
|
|
gsize len[2], len1, len2;
|
2001-08-11 08:25:05 +00:00
|
|
|
|
2011-03-29 09:31:30 +00:00
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buf1), NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_BUFFER (buf2), NULL);
|
2010-12-26 21:20:31 +00:00
|
|
|
g_return_val_if_fail (buf1->mini_object.refcount > 0, NULL);
|
|
|
|
g_return_val_if_fail (buf2->mini_object.refcount > 0, NULL);
|
2011-03-29 14:52:21 +00:00
|
|
|
len1 = gst_buffer_get_size (buf1);
|
|
|
|
len2 = gst_buffer_get_size (buf2);
|
|
|
|
g_return_val_if_fail (len1 + len2 > offset, NULL);
|
|
|
|
if (size == -1)
|
|
|
|
size = len1 + len2 - offset;
|
|
|
|
else
|
|
|
|
g_return_val_if_fail (size <= len1 + len2 - offset, NULL);
|
2001-08-11 08:25:05 +00:00
|
|
|
|
2011-03-29 14:52:21 +00:00
|
|
|
mem[0] = GST_BUFFER_MEM_ARRAY (buf1);
|
|
|
|
len[0] = GST_BUFFER_MEM_LEN (buf1);
|
|
|
|
mem[1] = GST_BUFFER_MEM_ARRAY (buf2);
|
|
|
|
len[1] = GST_BUFFER_MEM_LEN (buf2);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2011-03-29 17:17:55 +00:00
|
|
|
span = _gst_buffer_arr_span (mem, len, 2, offset, size, FALSE);
|
2011-03-21 12:07:42 +00:00
|
|
|
|
2011-03-29 14:52:21 +00:00
|
|
|
newbuf = gst_buffer_new ();
|
2011-06-13 14:31:53 +00:00
|
|
|
_memory_add (newbuf, -1, span);
|
2011-03-21 12:07:42 +00:00
|
|
|
|
|
|
|
#if 0
|
2006-01-12 16:07:50 +00:00
|
|
|
/* if the offset is 0, the new buffer has the same timestamp as buf1 */
|
|
|
|
if (offset == 0) {
|
|
|
|
GST_BUFFER_OFFSET (newbuf) = GST_BUFFER_OFFSET (buf1);
|
2011-10-28 10:15:44 +00:00
|
|
|
GST_BUFFER_PTS (newbuf) = GST_BUFFER_PTS (buf1);
|
|
|
|
GST_BUFFER_DTS (newbuf) = GST_BUFFER_DTS (buf1);
|
2006-01-12 16:07:50 +00:00
|
|
|
|
|
|
|
/* if we completely merged the two buffers (appended), we can
|
|
|
|
* calculate the duration too. Also make sure we's not messing with
|
|
|
|
* invalid DURATIONS */
|
|
|
|
if (buf1->size + buf2->size == len) {
|
|
|
|
if (GST_BUFFER_DURATION_IS_VALID (buf1) &&
|
|
|
|
GST_BUFFER_DURATION_IS_VALID (buf2)) {
|
|
|
|
/* add duration */
|
|
|
|
GST_BUFFER_DURATION (newbuf) = GST_BUFFER_DURATION (buf1) +
|
|
|
|
GST_BUFFER_DURATION (buf2);
|
|
|
|
}
|
|
|
|
if (GST_BUFFER_OFFSET_END_IS_VALID (buf2)) {
|
|
|
|
/* add offset_end */
|
|
|
|
GST_BUFFER_OFFSET_END (newbuf) = GST_BUFFER_OFFSET_END (buf2);
|
|
|
|
}
|
2003-11-24 02:09:23 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
2011-03-21 12:07:42 +00:00
|
|
|
#endif
|
2001-08-11 08:25:05 +00:00
|
|
|
|
|
|
|
return newbuf;
|
|
|
|
}
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-02-25 12:15:25 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_get_meta:
|
|
|
|
* @buffer: a #GstBuffer
|
|
|
|
* @info: a #GstMetaInfo
|
|
|
|
*
|
|
|
|
* Get the metadata for the api in @info on buffer. When there is no such
|
2011-02-27 18:40:45 +00:00
|
|
|
* metadata, NULL is returned.
|
2011-02-25 12:15:25 +00:00
|
|
|
*
|
2011-02-27 18:40:45 +00:00
|
|
|
* Note that the result metadata might not be of the implementation @info.
|
2011-02-25 12:15:25 +00:00
|
|
|
*
|
2011-02-27 18:40:45 +00:00
|
|
|
* Returns: the metadata for the api in @info on @buffer.
|
2011-02-25 12:15:25 +00:00
|
|
|
*/
|
|
|
|
GstMeta *
|
2011-02-27 18:40:45 +00:00
|
|
|
gst_buffer_get_meta (GstBuffer * buffer, const GstMetaInfo * info)
|
2011-02-25 12:15:25 +00:00
|
|
|
{
|
|
|
|
GstMetaItem *item;
|
2011-02-27 18:40:45 +00:00
|
|
|
GstMeta *result = NULL;
|
2011-02-25 12:15:25 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (buffer != NULL, NULL);
|
2011-02-26 17:14:36 +00:00
|
|
|
g_return_val_if_fail (info != NULL, NULL);
|
2011-02-25 12:15:25 +00:00
|
|
|
|
2011-02-26 17:14:36 +00:00
|
|
|
/* find GstMeta of the requested API */
|
2011-03-29 09:31:30 +00:00
|
|
|
for (item = GST_BUFFER_META (buffer); item; item = item->next) {
|
2011-02-27 18:40:45 +00:00
|
|
|
GstMeta *meta = &item->meta;
|
2011-02-26 17:14:36 +00:00
|
|
|
if (meta->info->api == info->api) {
|
|
|
|
result = meta;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-02-27 18:40:45 +00:00
|
|
|
return result;
|
|
|
|
}
|
2011-02-25 12:15:25 +00:00
|
|
|
|
2011-02-27 18:40:45 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_add_meta:
|
|
|
|
* @buffer: a #GstBuffer
|
|
|
|
* @info: a #GstMetaInfo
|
|
|
|
* @params: params for @info
|
|
|
|
*
|
|
|
|
* Add metadata for @info to @buffer using the parameters in @params.
|
|
|
|
*
|
2011-11-10 12:53:33 +00:00
|
|
|
* Returns: (transfer none): the metadata for the api in @info on @buffer.
|
2011-02-27 18:40:45 +00:00
|
|
|
*/
|
|
|
|
GstMeta *
|
|
|
|
gst_buffer_add_meta (GstBuffer * buffer, const GstMetaInfo * info,
|
|
|
|
gpointer params)
|
|
|
|
{
|
|
|
|
GstMetaItem *item;
|
|
|
|
GstMeta *result = NULL;
|
|
|
|
gsize size;
|
|
|
|
|
|
|
|
g_return_val_if_fail (buffer != NULL, NULL);
|
|
|
|
g_return_val_if_fail (info != NULL, NULL);
|
|
|
|
|
|
|
|
/* create a new slice */
|
|
|
|
size = ITEM_SIZE (info);
|
|
|
|
item = g_slice_alloc (size);
|
|
|
|
result = &item->meta;
|
|
|
|
result->info = info;
|
2011-12-22 14:52:08 +00:00
|
|
|
result->flags = GST_META_FLAG_NONE;
|
|
|
|
|
|
|
|
GST_CAT_DEBUG (GST_CAT_BUFFER,
|
|
|
|
"alloc metadata %p (%s) of size %" G_GSIZE_FORMAT, result,
|
|
|
|
g_type_name (info->type), info->size);
|
2011-02-27 18:40:45 +00:00
|
|
|
|
|
|
|
/* call the init_func when needed */
|
|
|
|
if (info->init_func)
|
|
|
|
if (!info->init_func (result, params, buffer))
|
|
|
|
goto init_failed;
|
|
|
|
|
|
|
|
/* and add to the list of metadata */
|
2011-03-29 09:31:30 +00:00
|
|
|
item->next = GST_BUFFER_META (buffer);
|
|
|
|
GST_BUFFER_META (buffer) = item;
|
2011-02-25 12:15:25 +00:00
|
|
|
|
2009-12-17 11:34:42 +00:00
|
|
|
return result;
|
2011-02-27 18:40:45 +00:00
|
|
|
|
|
|
|
init_failed:
|
|
|
|
{
|
|
|
|
g_slice_free1 (size, item);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-12-17 11:34:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_buffer_remove_meta:
|
|
|
|
* @buffer: a #GstBuffer
|
2011-03-30 17:01:13 +00:00
|
|
|
* @meta: a #GstMeta
|
2009-12-17 11:34:42 +00:00
|
|
|
*
|
2011-03-30 17:01:13 +00:00
|
|
|
* Remove the metadata for @meta on @buffer.
|
2009-12-17 11:34:42 +00:00
|
|
|
*
|
|
|
|
* Returns: %TRUE if the metadata existed and was removed, %FALSE if no such
|
|
|
|
* metadata was on @buffer.
|
|
|
|
*/
|
|
|
|
gboolean
|
2011-02-25 12:15:25 +00:00
|
|
|
gst_buffer_remove_meta (GstBuffer * buffer, GstMeta * meta)
|
2009-12-17 11:34:42 +00:00
|
|
|
{
|
2011-02-25 12:15:25 +00:00
|
|
|
GstMetaItem *walk, *prev;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (buffer != NULL, FALSE);
|
2011-02-25 12:15:25 +00:00
|
|
|
g_return_val_if_fail (meta != NULL, FALSE);
|
2009-12-17 11:34:42 +00:00
|
|
|
|
|
|
|
/* find the metadata and delete */
|
2011-03-29 09:31:30 +00:00
|
|
|
prev = GST_BUFFER_META (buffer);
|
2009-12-17 11:34:42 +00:00
|
|
|
for (walk = prev; walk; walk = walk->next) {
|
2011-02-25 12:15:25 +00:00
|
|
|
GstMeta *m = &walk->meta;
|
|
|
|
if (m == meta) {
|
|
|
|
const GstMetaInfo *info = meta->info;
|
|
|
|
|
2009-12-17 11:34:42 +00:00
|
|
|
/* remove from list */
|
2011-03-29 09:31:30 +00:00
|
|
|
if (GST_BUFFER_META (buffer) == walk)
|
|
|
|
GST_BUFFER_META (buffer) = walk->next;
|
2009-12-17 11:34:42 +00:00
|
|
|
else
|
|
|
|
prev->next = walk->next;
|
|
|
|
/* call free_func if any */
|
|
|
|
if (info->free_func)
|
2011-02-25 12:15:25 +00:00
|
|
|
info->free_func (m, buffer);
|
|
|
|
|
2009-12-17 11:34:42 +00:00
|
|
|
/* and free the slice */
|
2011-02-25 12:15:25 +00:00
|
|
|
g_slice_free1 (ITEM_SIZE (info), walk);
|
2009-12-17 11:34:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
prev = walk;
|
|
|
|
}
|
|
|
|
return walk != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_buffer_iterate_meta:
|
|
|
|
* @buffer: a #GstBuffer
|
|
|
|
* @state: an opaque state pointer
|
|
|
|
*
|
2011-02-25 12:15:25 +00:00
|
|
|
* Retrieve the next #GstMeta after @current. If @state points
|
2009-12-17 11:34:42 +00:00
|
|
|
* to %NULL, the first metadata is returned.
|
|
|
|
*
|
|
|
|
* @state will be updated with an opage state pointer
|
|
|
|
*
|
2011-02-25 12:15:25 +00:00
|
|
|
* Returns: The next #GstMeta or %NULL when there are no more items.
|
2009-12-17 11:34:42 +00:00
|
|
|
*/
|
2011-02-25 12:15:25 +00:00
|
|
|
GstMeta *
|
2009-12-17 11:34:42 +00:00
|
|
|
gst_buffer_iterate_meta (GstBuffer * buffer, gpointer * state)
|
|
|
|
{
|
2011-02-25 12:15:25 +00:00
|
|
|
GstMetaItem **meta;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (buffer != NULL, NULL);
|
|
|
|
g_return_val_if_fail (state != NULL, NULL);
|
|
|
|
|
2011-02-25 12:15:25 +00:00
|
|
|
meta = (GstMetaItem **) state;
|
2009-12-17 11:34:42 +00:00
|
|
|
if (*meta == NULL)
|
|
|
|
/* state NULL, move to first item */
|
2011-03-29 09:31:30 +00:00
|
|
|
*meta = GST_BUFFER_META (buffer);
|
2009-12-17 11:34:42 +00:00
|
|
|
else
|
|
|
|
/* state !NULL, move to next item in list */
|
|
|
|
*meta = (*meta)->next;
|
|
|
|
|
|
|
|
if (*meta)
|
|
|
|
return &(*meta)->meta;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-12-22 14:54:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_buffer_foreach_meta:
|
|
|
|
* @buffer: a #GstBuffer
|
|
|
|
* @func: (scope call): a #GstBufferForeachMetaFunc to call
|
|
|
|
* @user_data: (closure): user data passed to @func
|
|
|
|
*
|
|
|
|
* Call @func with @user_data for each meta in @buffer.
|
|
|
|
*
|
|
|
|
* @func can modify the passed meta pointer or its contents. The return value
|
|
|
|
* of @func define if this function returns or if the remaining metadata items
|
|
|
|
* in the buffer should be skipped.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_buffer_foreach_meta (GstBuffer * buffer, GstBufferForeachMetaFunc func,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GstMetaItem *walk, *prev, *next;
|
|
|
|
|
|
|
|
g_return_if_fail (buffer != NULL);
|
|
|
|
g_return_if_fail (func != NULL);
|
|
|
|
|
|
|
|
/* find the metadata and delete */
|
|
|
|
prev = GST_BUFFER_META (buffer);
|
|
|
|
for (walk = prev; walk; walk = next) {
|
|
|
|
GstMeta *m, *new;
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
m = new = &walk->meta;
|
|
|
|
next = walk->next;
|
|
|
|
|
|
|
|
res = func (buffer, &new, user_data);
|
|
|
|
|
|
|
|
if (new == NULL) {
|
|
|
|
const GstMetaInfo *info = m->info;
|
|
|
|
|
|
|
|
GST_CAT_DEBUG (GST_CAT_BUFFER, "remove metadata %p (%s)", m,
|
|
|
|
g_type_name (info->type));
|
|
|
|
|
|
|
|
/* remove from list */
|
|
|
|
if (GST_BUFFER_META (buffer) == walk)
|
|
|
|
GST_BUFFER_META (buffer) = next;
|
|
|
|
else
|
|
|
|
prev->next = next;
|
|
|
|
|
|
|
|
/* call free_func if any */
|
|
|
|
if (info->free_func)
|
|
|
|
info->free_func (m, buffer);
|
|
|
|
|
|
|
|
/* and free the slice */
|
|
|
|
g_slice_free1 (ITEM_SIZE (info), walk);
|
|
|
|
}
|
|
|
|
if (!res)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|