2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gstbuffer.h: Header for GstBuffer object
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_BUFFER_H__
|
|
|
|
#define __GST_BUFFER_H__
|
|
|
|
|
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 <gst/gstminiobject.h>
|
2003-04-13 03:07:07 +00:00
|
|
|
#include <gst/gstclock.h>
|
2005-03-07 18:27:42 +00:00
|
|
|
#include <gst/gstcaps.h>
|
2000-12-28 22:12:02 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
G_BEGIN_DECLS
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
typedef struct _GstBuffer GstBuffer;
|
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
|
|
|
typedef struct _GstBufferClass GstBufferClass;
|
2004-01-11 22:11:35 +00:00
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_TRACE_NAME:
|
|
|
|
*
|
|
|
|
* The name used for tracing memory allocations.
|
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_TRACE_NAME "GstBuffer"
|
2003-02-02 19:40:10 +00:00
|
|
|
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_TYPE_BUFFER (gst_buffer_get_type())
|
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
|
|
|
#define GST_IS_BUFFER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_BUFFER))
|
|
|
|
#define GST_IS_BUFFER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_BUFFER))
|
|
|
|
#define GST_BUFFER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_BUFFER, GstBufferClass))
|
|
|
|
#define GST_BUFFER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_BUFFER, GstBuffer))
|
|
|
|
#define GST_BUFFER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_BUFFER, GstBufferClass))
|
2005-05-30 15:44:50 +00:00
|
|
|
#define GST_BUFFER_CAST(obj) ((GstBuffer *)(obj))
|
2002-07-08 19:22:02 +00:00
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_FLAGS:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* A flags word containing #GstBufferFlag flags set on this buffer.
|
2005-08-23 11:53:58 +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
|
|
|
#define GST_BUFFER_FLAGS(buf) GST_MINI_OBJECT_FLAGS(buf)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_FLAG_IS_SET:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
* @flag: the #GstBufferFlag to check.
|
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* Gives the status of a specific flag on a buffer.
|
2005-08-23 11:53:58 +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
|
|
|
#define GST_BUFFER_FLAG_IS_SET(buf,flag) GST_MINI_OBJECT_FLAG_IS_SET (buf, flag)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_FLAG_SET:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
* @flag: the #GstBufferFlag to set.
|
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* Sets a buffer flag on a buffer.
|
2005-08-23 11:53:58 +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
|
|
|
#define GST_BUFFER_FLAG_SET(buf,flag) GST_MINI_OBJECT_FLAG_SET (buf, flag)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_FLAG_UNSET:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
* @flag: the #GstBufferFlag to clear.
|
|
|
|
*
|
|
|
|
* Clears a buffer flag.
|
|
|
|
*/
|
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
|
|
|
#define GST_BUFFER_FLAG_UNSET(buf,flag) GST_MINI_OBJECT_FLAG_UNSET (buf, flag)
|
2002-07-08 19:22:02 +00:00
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_DATA:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* A pointer to the data element of this buffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_DATA(buf) (GST_BUFFER_CAST(buf)->data)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_SIZE:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* The size in bytes of the data in this buffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_SIZE(buf) (GST_BUFFER_CAST(buf)->size)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_TIMESTAMP:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.:
|
|
|
|
*
|
|
|
|
* The timestamp in nanoseconds (as a #GstClockTime) of the data in the buffer.
|
2005-10-31 11:44:32 +00:00
|
|
|
* Value will be %GST_CLOCK_TIME_NONE if the timestamp is unknown.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_TIMESTAMP(buf) (GST_BUFFER_CAST(buf)->timestamp)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_DURATION:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* The duration in nanoseconds (as a #GstClockTime) of the data in the buffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
* Value will be %GST_CLOCK_TIME_NONE if the duration is unknown.
|
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_DURATION(buf) (GST_BUFFER_CAST(buf)->duration)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_CAPS:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* The caps for this buffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_CAPS(buf) (GST_BUFFER_CAST(buf)->caps)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_OFFSET:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* The offset in the source file of the beginning of this buffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_OFFSET(buf) (GST_BUFFER_CAST(buf)->offset)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_OFFSET_END:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* The offset in the source file of the end of this buffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_OFFSET_END(buf) (GST_BUFFER_CAST(buf)->offset_end)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_MALLOCDATA:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2009-09-01 14:49:22 +00:00
|
|
|
* A pointer to any data allocated for this buffer using g_malloc(). If this is
|
|
|
|
* non-NULL, this memory will be freed at the end of the buffer's lifecycle
|
2005-10-28 17:01:14 +00:00
|
|
|
* (i.e. when its refcount becomes zero).
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_MALLOCDATA(buf) (GST_BUFFER_CAST(buf)->malloc_data)
|
2008-10-06 18:01:42 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_FREE_FUNC:
|
|
|
|
* @buf: a #GstBuffer.
|
|
|
|
*
|
|
|
|
* A pointer to a function that will be called on the buffer's malloc_data when
|
2008-10-08 08:54:55 +00:00
|
|
|
* this buffer is finalized. Defaults to g_free().
|
2008-10-06 18:01:42 +00:00
|
|
|
*
|
|
|
|
* Note that the free function only affects the buffer's malloc_data; if the
|
2008-10-08 08:54:55 +00:00
|
|
|
* buffer's malloc_data is %NULL, the function will not be called.
|
2008-10-07 06:56:11 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.22
|
2008-10-06 18:01:42 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_FREE_FUNC(buf) (GST_BUFFER_CAST(buf)->free_func)
|
2002-07-08 19:22:02 +00:00
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_OFFSET_NONE:
|
2005-08-26 11:19:22 +00:00
|
|
|
*
|
2005-08-23 11:53:58 +00:00
|
|
|
* Constant for no-offset return results.
|
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_OFFSET_NONE ((guint64)-1)
|
2003-05-24 10:09:39 +00:00
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_DURATION_IS_VALID:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buffer: a #GstBuffer
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-09-11 12:57:36 +00:00
|
|
|
* Tests if the duration is known.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_DURATION_IS_VALID(buffer) (GST_CLOCK_TIME_IS_VALID (GST_BUFFER_DURATION (buffer)))
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_TIMESTAMP_IS_VALID:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buffer: a #GstBuffer
|
2005-08-26 11:19:22 +00:00
|
|
|
*
|
2005-08-23 11:53:58 +00:00
|
|
|
* Tests if the timestamp is known.
|
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_TIMESTAMP_IS_VALID(buffer) (GST_CLOCK_TIME_IS_VALID (GST_BUFFER_TIMESTAMP (buffer)))
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_OFFSET_IS_VALID:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buffer: a #GstBuffer
|
2005-08-26 11:19:22 +00:00
|
|
|
*
|
2005-08-23 11:53:58 +00:00
|
|
|
* Tests if the start offset is known.
|
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_OFFSET_IS_VALID(buffer) (GST_BUFFER_OFFSET (buffer) != GST_BUFFER_OFFSET_NONE)
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_OFFSET_END_IS_VALID:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buffer: a #GstBuffer
|
2005-08-25 10:35:46 +00:00
|
|
|
*
|
2005-08-23 11:53:58 +00:00
|
|
|
* Tests if the end offset is known.
|
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_OFFSET_END_IS_VALID(buffer) (GST_BUFFER_OFFSET_END (buffer) != GST_BUFFER_OFFSET_NONE)
|
2006-06-12 09:11:44 +00:00
|
|
|
/**
|
|
|
|
* GST_BUFFER_IS_DISCONT:
|
|
|
|
* @buffer: a #GstBuffer
|
|
|
|
*
|
|
|
|
* Tests if the buffer marks a discontinuity in the stream.
|
|
|
|
*
|
|
|
|
* Since: 0.10.9
|
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define GST_BUFFER_IS_DISCONT(buffer) (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DISCONT))
|
2003-04-13 03:07:07 +00:00
|
|
|
|
2004-08-12 10:56:40 +00:00
|
|
|
/**
|
|
|
|
* GstBufferFlag:
|
2006-03-07 15:08:57 +00:00
|
|
|
* @GST_BUFFER_FLAG_READONLY: the buffer is read-only. This means the data of
|
|
|
|
* the buffer should not be modified. The metadata might still be modified.
|
2005-06-08 13:40:46 +00:00
|
|
|
* @GST_BUFFER_FLAG_PREROLL: the buffer is part of a preroll and should not be
|
Docs updates, clean up some headers.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* docs/design/part-conventions.txt:
* docs/design/part-gstobject.txt:
* docs/design/part-relations.txt:
* docs/design/part-standards.txt:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
(gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
(gst_bin_get_by_name), (gst_bin_get_by_interface),
(gst_bin_iterate_all_by_interface):
* gst/gstbuffer.h:
* gst/gstclock.h:
* gst/gstelement.c: (gst_element_class_init),
(gst_element_change_state), (gst_element_set_loop_function):
* gst/gstelement.h:
* gst/gstiterator.c:
* gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
(gst_object_unref), (gst_object_sink), (gst_object_dispose),
(gst_object_dispatch_properties_changed), (gst_object_set_name),
(gst_object_set_parent), (gst_object_unparent),
(gst_object_check_uniqueness):
* gst/gstobject.h:
Docs updates, clean up some headers.
Free iterators in GstBin.
GstObject is now looking good.
2005-03-08 14:38:06 +00:00
|
|
|
* displayed.
|
2006-06-06 14:16:33 +00:00
|
|
|
* @GST_BUFFER_FLAG_DISCONT: the buffer marks a discontinuity in the stream.
|
|
|
|
* This typically occurs after a seek or a dropped buffer from a live or
|
|
|
|
* network source.
|
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
|
|
|
* @GST_BUFFER_FLAG_IN_CAPS: the buffer has been added as a field in a #GstCaps.
|
2006-06-06 14:16:33 +00:00
|
|
|
* @GST_BUFFER_FLAG_GAP: the buffer has been created to fill a gap in the
|
2007-10-15 07:37:37 +00:00
|
|
|
* stream and contains media neutral data (elements can switch to optimized code
|
|
|
|
* path that ignores the buffer content).
|
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
|
|
|
* @GST_BUFFER_FLAG_DELTA_UNIT: this unit cannot be decoded independently.
|
2010-01-14 09:44:16 +00:00
|
|
|
* @GST_BUFFER_FLAG_MEDIA1: a flag whose use is specific to the caps of the buffer. Since: 0.10.23.
|
|
|
|
* @GST_BUFFER_FLAG_MEDIA2: a flag whose use is specific to the caps of the buffer. Since: 0.10.23.
|
|
|
|
* @GST_BUFFER_FLAG_MEDIA3: a flag whose use is specific to the caps of the buffer. Since: 0.10.23.
|
2011-01-03 10:37:05 +00:00
|
|
|
* @GST_BUFFER_FLAG_MEDIA4: a flag whose use is specific to the caps of the buffer. Since: 0.10.33.
|
2004-08-12 10:56:40 +00:00
|
|
|
* @GST_BUFFER_FLAG_LAST: additional flags can be added starting from this flag.
|
|
|
|
*
|
|
|
|
* A set of buffer flags used to describe properties of a #GstBuffer.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
typedef enum {
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* docs/gst/gstreamer-sections.txt:
* gst/base/gstbasesink.c: (gst_base_sink_init):
* gst/base/gstbasesrc.c: (gst_base_src_init),
(gst_base_src_get_range), (gst_base_src_check_get_range),
(gst_base_src_start), (gst_base_src_stop):
* gst/base/gstbasesrc.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_set_property):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(bin_element_is_sink), (reset_degree), (gst_bin_element_set_state),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstbuffer.h:
* gst/gstbus.c: (gst_bus_post), (gst_bus_set_flushing):
* gst/gstbus.h:
* gst/gstelement.c: (gst_element_is_locked_state),
(gst_element_set_locked_state), (gst_element_commit_state),
(gst_element_set_state):
* gst/gstelement.h:
* gst/gstindex.c: (gst_index_init):
* gst/gstindex.h:
* gst/gstminiobject.h:
* gst/gstobject.c: (gst_object_init), (gst_object_sink),
(gst_object_set_parent):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_set_blocked_async), (gst_pad_is_blocked),
(gst_pad_get_caps_unlocked), (gst_pad_set_caps):
* gst/gstpad.h:
* gst/gstpadtemplate.h:
* gst/gstpipeline.c: (gst_pipeline_provide_clock_func),
(gst_pipeline_use_clock), (gst_pipeline_auto_clock):
* gst/gstpipeline.h:
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(gst_file_index_commit):
* testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
* testsuite/pad/link.c: (gst_test_src_init),
(gst_test_filter_init), (gst_test_sink_init):
* testsuite/states/locked.c: (main):
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:28:39 +00:00
|
|
|
GST_BUFFER_FLAG_READONLY = GST_MINI_OBJECT_FLAG_READONLY,
|
2011-01-03 10:37:05 +00:00
|
|
|
GST_BUFFER_FLAG_MEDIA4 = GST_MINI_OBJECT_FLAG_RESERVED1,
|
2005-11-19 18:32:01 +00:00
|
|
|
GST_BUFFER_FLAG_PREROLL = (GST_MINI_OBJECT_FLAG_LAST << 0),
|
|
|
|
GST_BUFFER_FLAG_DISCONT = (GST_MINI_OBJECT_FLAG_LAST << 1),
|
|
|
|
GST_BUFFER_FLAG_IN_CAPS = (GST_MINI_OBJECT_FLAG_LAST << 2),
|
|
|
|
GST_BUFFER_FLAG_GAP = (GST_MINI_OBJECT_FLAG_LAST << 3),
|
|
|
|
GST_BUFFER_FLAG_DELTA_UNIT = (GST_MINI_OBJECT_FLAG_LAST << 4),
|
2009-02-19 15:04:43 +00:00
|
|
|
GST_BUFFER_FLAG_MEDIA1 = (GST_MINI_OBJECT_FLAG_LAST << 5),
|
|
|
|
GST_BUFFER_FLAG_MEDIA2 = (GST_MINI_OBJECT_FLAG_LAST << 6),
|
|
|
|
GST_BUFFER_FLAG_MEDIA3 = (GST_MINI_OBJECT_FLAG_LAST << 7),
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* docs/gst/gstreamer-sections.txt:
* gst/base/gstbasesink.c: (gst_base_sink_init):
* gst/base/gstbasesrc.c: (gst_base_src_init),
(gst_base_src_get_range), (gst_base_src_check_get_range),
(gst_base_src_start), (gst_base_src_stop):
* gst/base/gstbasesrc.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_set_property):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(bin_element_is_sink), (reset_degree), (gst_bin_element_set_state),
(bin_bus_handler):
* gst/gstbin.h:
* gst/gstbuffer.h:
* gst/gstbus.c: (gst_bus_post), (gst_bus_set_flushing):
* gst/gstbus.h:
* gst/gstelement.c: (gst_element_is_locked_state),
(gst_element_set_locked_state), (gst_element_commit_state),
(gst_element_set_state):
* gst/gstelement.h:
* gst/gstindex.c: (gst_index_init):
* gst/gstindex.h:
* gst/gstminiobject.h:
* gst/gstobject.c: (gst_object_init), (gst_object_sink),
(gst_object_set_parent):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_set_blocked_async), (gst_pad_is_blocked),
(gst_pad_get_caps_unlocked), (gst_pad_set_caps):
* gst/gstpad.h:
* gst/gstpadtemplate.h:
* gst/gstpipeline.c: (gst_pipeline_provide_clock_func),
(gst_pipeline_use_clock), (gst_pipeline_auto_clock):
* gst/gstpipeline.h:
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(gst_file_index_commit):
* testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
* testsuite/pad/link.c: (gst_test_src_init),
(gst_test_filter_init), (gst_test_sink_init):
* testsuite/states/locked.c: (main):
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:28:39 +00:00
|
|
|
GST_BUFFER_FLAG_LAST = (GST_MINI_OBJECT_FLAG_LAST << 8)
|
2004-03-15 14:43:35 +00:00
|
|
|
} GstBufferFlag;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-11-09 18:10:53 +00:00
|
|
|
/**
|
|
|
|
* GstBuffer:
|
|
|
|
* @mini_object: the parent structure
|
|
|
|
* @data: pointer to the buffer data
|
|
|
|
* @size: size of buffer data
|
2005-11-10 09:19:12 +00:00
|
|
|
* @timestamp: timestamp of the buffer, can be #GST_CLOCK_TIME_NONE when the
|
2005-11-09 18:10:53 +00:00
|
|
|
* timestamp is not known or relevant.
|
2005-11-10 09:19:12 +00:00
|
|
|
* @duration: duration in time of the buffer data, can be #GST_CLOCK_TIME_NONE
|
2005-11-09 18:10:53 +00:00
|
|
|
* when the duration is not known or relevant.
|
|
|
|
* @caps: the #GstCaps describing the data format in this buffer
|
2009-09-01 14:49:22 +00:00
|
|
|
* @offset: a media specific offset for the buffer data.
|
2005-11-09 18:10:53 +00:00
|
|
|
* For video frames, this is the frame number of this buffer.
|
|
|
|
* For audio samples, this is the offset of the first sample in this buffer.
|
|
|
|
* For file data or compressed data this is the byte offset of the first
|
|
|
|
* byte in this buffer.
|
2009-09-01 14:49:22 +00:00
|
|
|
* @offset_end: the last offset contained in this buffer. It has the same
|
2005-11-09 18:10:53 +00:00
|
|
|
* format as @offset.
|
|
|
|
* @malloc_data: a pointer to the allocated memory associated with this buffer.
|
2008-11-18 09:52:41 +00:00
|
|
|
* When the buffer is freed, this data will freed with @free_func.
|
|
|
|
* @free_func: a custom function that will be called with @malloc_data, defaults
|
|
|
|
* to g_free(). Since 0.10.22.
|
2009-12-02 18:47:46 +00:00
|
|
|
* @parent: the parent buffer if this is a subbuffer. Since 0.10.26.
|
2005-11-09 18:10:53 +00:00
|
|
|
*
|
|
|
|
* The structure of a #GstBuffer. Use the associated macros to access the public
|
|
|
|
* variables.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstBuffer {
|
2009-09-01 14:49:22 +00:00
|
|
|
GstMiniObject mini_object;
|
2001-04-24 19:20:15 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/*< public >*/ /* with COW */
|
2002-07-08 19:22:02 +00:00
|
|
|
/* pointer to data and its size */
|
2009-09-01 14:49:22 +00:00
|
|
|
guint8 *data;
|
|
|
|
guint size;
|
2001-04-24 19:20:15 +00:00
|
|
|
|
2002-12-19 21:31:03 +00:00
|
|
|
/* timestamp */
|
2009-09-01 14:49:22 +00:00
|
|
|
GstClockTime timestamp;
|
|
|
|
GstClockTime duration;
|
2003-05-24 10:09:39 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* the media type of this buffer */
|
2009-09-01 14:49:22 +00:00
|
|
|
GstCaps *caps;
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2005-11-09 18:10:53 +00:00
|
|
|
/* media specific offset */
|
2009-09-01 14:49:22 +00:00
|
|
|
guint64 offset;
|
|
|
|
guint64 offset_end;
|
2000-08-14 10:55:35 +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
|
|
|
guint8 *malloc_data;
|
|
|
|
|
2009-12-02 18:47:46 +00:00
|
|
|
/* ABI Added */
|
2008-11-18 09:52:41 +00:00
|
|
|
GFreeFunc free_func;
|
2009-12-02 18:47:46 +00:00
|
|
|
GstBuffer *parent;
|
2008-10-06 18:01:42 +00:00
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/*< private >*/
|
2009-12-02 18:47:46 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING - 2];
|
2002-07-08 19:22:02 +00:00
|
|
|
};
|
2001-10-17 10:21:27 +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
|
|
|
struct _GstBufferClass {
|
|
|
|
GstMiniObjectClass mini_object_class;
|
|
|
|
};
|
|
|
|
|
2007-04-26 10:00:49 +00:00
|
|
|
GType gst_buffer_get_type (void);
|
|
|
|
|
2002-07-13 23:12:22 +00:00
|
|
|
/* allocation */
|
2007-04-26 10:00:49 +00:00
|
|
|
GstBuffer * gst_buffer_new (void);
|
|
|
|
GstBuffer * gst_buffer_new_and_alloc (guint size);
|
|
|
|
GstBuffer * gst_buffer_try_new_and_alloc (guint size);
|
2002-07-13 23:12:22 +00:00
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_set_data:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer
|
|
|
|
* @data: The data (a #guint8 *) to set on the buffer.
|
|
|
|
* @size: The size (in bytes, as a #guint) of the data being set.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
|
|
|
* A convenience function to set the data and size on a buffer.
|
2005-10-28 17:01:14 +00:00
|
|
|
* This will replace any existing data pointer set on this buffer, but will
|
|
|
|
* not change GST_BUFFER_MALLOCDATA(), if any. Callers should ensure that
|
|
|
|
* GST_BUFFER_MALLOCDATA() is non-NULL, or should free that and set it to NULL.
|
|
|
|
*
|
|
|
|
* No checks are done on the data or size arguments passed.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define gst_buffer_set_data(buf, data, size) \
|
|
|
|
G_STMT_START { \
|
|
|
|
GST_BUFFER_DATA (buf) = data; \
|
|
|
|
GST_BUFFER_SIZE (buf) = size; \
|
2002-11-02 13:15:55 +00:00
|
|
|
} G_STMT_END
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* refcounting */
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_ref:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
|
|
|
* Increases the refcount of the given buffer by one.
|
2006-05-05 14:27:31 +00:00
|
|
|
*
|
|
|
|
* Note that the refcount affects the writeability
|
2006-05-10 16:44:15 +00:00
|
|
|
* of @buf and its metadata, see gst_buffer_is_writable() and
|
|
|
|
* gst_buffer_is_metadata_writable(). It is
|
2006-05-05 14:27:31 +00:00
|
|
|
* important to note that keeping additional references to
|
|
|
|
* GstBuffer instances can potentially increase the number
|
|
|
|
* of memcpy operations in a pipeline.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): @buf
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2006-05-10 16:44:15 +00:00
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC GstBuffer * gst_buffer_ref (GstBuffer * buf);
|
|
|
|
#endif
|
|
|
|
|
2006-03-21 13:50:52 +00:00
|
|
|
static inline GstBuffer *
|
|
|
|
gst_buffer_ref (GstBuffer * buf)
|
|
|
|
{
|
2006-06-12 09:11:44 +00:00
|
|
|
return (GstBuffer *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (buf));
|
2006-03-21 13:50:52 +00:00
|
|
|
}
|
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_unref:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @buf: (transfer full): a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
|
|
|
* Decreases the refcount of the buffer. If the refcount reaches 0, the buffer
|
2005-10-28 17:01:14 +00:00
|
|
|
* will be freed. If GST_BUFFER_MALLOCDATA() is non-NULL, this pointer will
|
|
|
|
* also be freed at this time.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-02-22 17:51:08 +00:00
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC void gst_buffer_unref (GstBuffer * buf);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
gst_buffer_unref (GstBuffer * buf)
|
|
|
|
{
|
|
|
|
gst_mini_object_unref (GST_MINI_OBJECT_CAST (buf));
|
|
|
|
}
|
2005-08-23 11:53:58 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
/* copy buffer */
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_copy:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer.
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:20:45 +00:00
|
|
|
* Create a copy of the given buffer. This will also make a newly allocated
|
|
|
|
* copy of the data the source buffer contains.
|
2009-03-12 09:48:21 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): a new copy of @buf.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-02-22 17:51:08 +00:00
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC GstBuffer * gst_buffer_copy (const GstBuffer * buf);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline GstBuffer *
|
|
|
|
gst_buffer_copy (const GstBuffer * buf)
|
|
|
|
{
|
2010-09-01 23:01:25 +00:00
|
|
|
return GST_BUFFER (gst_mini_object_copy (GST_MINI_OBJECT_CONST_CAST (buf)));
|
2009-02-22 17:51:08 +00:00
|
|
|
}
|
|
|
|
|
2007-03-09 16:30:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstBufferCopyFlags:
|
|
|
|
* @GST_BUFFER_COPY_FLAGS: flag indicating that buffer flags should be copied
|
|
|
|
* @GST_BUFFER_COPY_TIMESTAMPS: flag indicating that buffer timestamp, duration,
|
|
|
|
* offset and offset_end should be copied
|
|
|
|
* @GST_BUFFER_COPY_CAPS: flag indicating that buffer caps should be copied
|
|
|
|
*
|
|
|
|
* A set of flags that can be provided to the gst_buffer_copy_metadata()
|
|
|
|
* function to specify which metadata fields should be copied.
|
|
|
|
*
|
|
|
|
* Since: 0.10.13
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
GST_BUFFER_COPY_FLAGS = (1 << 0),
|
|
|
|
GST_BUFFER_COPY_TIMESTAMPS = (1 << 1),
|
2007-08-07 14:04:22 +00:00
|
|
|
GST_BUFFER_COPY_CAPS = (1 << 2)
|
2007-03-09 16:30:38 +00:00
|
|
|
} GstBufferCopyFlags;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_BUFFER_COPY_ALL:
|
|
|
|
*
|
|
|
|
* Combination of all possible fields that can be copied with
|
|
|
|
* gst_buffer_copy_metadata().
|
|
|
|
*
|
|
|
|
* Since: 0.10.13
|
|
|
|
*/
|
|
|
|
#define GST_BUFFER_COPY_ALL (GST_BUFFER_COPY_FLAGS | GST_BUFFER_COPY_TIMESTAMPS | GST_BUFFER_COPY_CAPS)
|
|
|
|
|
|
|
|
/* copies metadata into newly allocated buffer */
|
|
|
|
void gst_buffer_copy_metadata (GstBuffer *dest, const GstBuffer *src,
|
|
|
|
GstBufferCopyFlags flags);
|
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_is_writable:
|
2005-10-28 17:01:14 +00:00
|
|
|
* @buf: a #GstBuffer
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2006-01-17 12:14:20 +00:00
|
|
|
* Tests if you can safely write data into a buffer's data array or validly
|
|
|
|
* modify the caps and timestamp metadata. Metadata in a GstBuffer is always
|
|
|
|
* writable, but it is only safe to change it when there is only one owner
|
2009-09-01 14:49:22 +00:00
|
|
|
* of the buffer - ie, the refcount is 1.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define gst_buffer_is_writable(buf) gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (buf))
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_make_writable:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @buf: (transfer full): a #GstBuffer
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* Makes a writable buffer from the given buffer. If the source buffer is
|
2009-09-01 14:49:22 +00:00
|
|
|
* already writable, this will simply return the same buffer. A copy will
|
2005-10-28 17:01:14 +00:00
|
|
|
* otherwise be made using gst_buffer_copy().
|
2010-12-07 18:35:04 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer full): a writable buffer which may or may not be the
|
|
|
|
* same as @buf
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define gst_buffer_make_writable(buf) GST_BUFFER_CAST (gst_mini_object_make_writable (GST_MINI_OBJECT_CAST (buf)))
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2006-01-17 12:14:20 +00:00
|
|
|
/* Ensure that the metadata of the buffer is writable, even if the buffer data
|
|
|
|
* isn't */
|
|
|
|
gboolean gst_buffer_is_metadata_writable (GstBuffer *buf);
|
|
|
|
GstBuffer* gst_buffer_make_metadata_writable (GstBuffer *buf);
|
|
|
|
|
2005-08-23 11:53:58 +00:00
|
|
|
/**
|
|
|
|
* gst_buffer_replace:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @obuf: (inout) (transfer full): pointer to a pointer to a #GstBuffer to be
|
|
|
|
* replaced.
|
|
|
|
* @nbuf: (transfer none) (allow-none): pointer to a #GstBuffer that will
|
|
|
|
* replace the buffer pointed to by @obuf.
|
2005-10-28 17:01:14 +00:00
|
|
|
*
|
2009-11-25 14:44:05 +00:00
|
|
|
* Modifies a pointer to a #GstBuffer to point to a different #GstBuffer. The
|
2005-10-28 17:01:14 +00:00
|
|
|
* modification is done atomically (so this is useful for ensuring thread safety
|
2009-09-01 14:49:22 +00:00
|
|
|
* in some cases), and the reference counts are updated appropriately (the old
|
2005-10-28 17:01:14 +00:00
|
|
|
* buffer is unreffed, the new is reffed).
|
2005-08-23 11:53:58 +00:00
|
|
|
*
|
2005-10-28 17:01:14 +00:00
|
|
|
* Either @nbuf or the #GstBuffer pointed to by @obuf may be NULL.
|
2005-08-23 11:53:58 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define gst_buffer_replace(obuf,nbuf) \
|
|
|
|
G_STMT_START { \
|
2006-10-18 10:08:45 +00:00
|
|
|
GstBuffer **___obufaddr = (GstBuffer **)(obuf); \
|
2006-10-17 10:30:27 +00:00
|
|
|
gst_mini_object_replace ((GstMiniObject **)___obufaddr, \
|
|
|
|
GST_MINI_OBJECT_CAST (nbuf)); \
|
|
|
|
} G_STMT_END
|
gst/: Fix name lookup in GstBin.
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_send_event), (compare_name),
(gst_bin_get_by_name):
* gst/gstbuffer.h:
* gst/gstclock.c: (gst_clock_entry_new), (gst_clock_class_init),
(gst_clock_finalize):
* gst/gstdata.c: (gst_data_replace):
* gst/gstdata.h:
* gst/gstelement.c: (gst_element_request_pad),
(gst_element_pads_activate):
* gst/gstobject.c: (gst_object_init), (gst_object_ref),
(gst_object_unref):
* gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
(gst_pad_set_checkgetrange_function),
(gst_pad_link_check_compatible_unlocked), (gst_pad_set_caps),
(gst_pad_check_pull_range), (gst_pad_pull_range),
(gst_static_pad_template_get_caps), (gst_pad_start_task),
(gst_pad_pause_task), (gst_pad_stop_task):
* gst/gstutils.c: (gst_element_get_compatible_pad_template),
(gst_element_request_pad), (gst_pad_proxy_getcaps):
Fix name lookup in GstBin.
Added _data_replace() function and _buffer_replace()
Use finalize method to clean up clock.
Fix refcounting on request pads.
Fix pad schedule mode error.
Some more object refcounting debug info,
2005-05-05 09:28:01 +00:00
|
|
|
|
2009-09-01 14:49:22 +00:00
|
|
|
GstCaps* gst_buffer_get_caps (GstBuffer *buffer);
|
|
|
|
void gst_buffer_set_caps (GstBuffer *buffer, GstCaps *caps);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
/* creating a subbuffer */
|
2009-09-01 14:49:22 +00:00
|
|
|
GstBuffer* gst_buffer_create_sub (GstBuffer *parent, guint offset, guint size);
|
2001-04-22 01:30:19 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* span, two buffers, intelligently */
|
2009-09-01 14:49:22 +00:00
|
|
|
gboolean gst_buffer_is_span_fast (GstBuffer *buf1, GstBuffer *buf2);
|
|
|
|
GstBuffer* gst_buffer_span (GstBuffer *buf1, guint32 offset, GstBuffer *buf2, guint32 len);
|
2001-08-11 08:25:05 +00:00
|
|
|
|
2005-10-20 20:46:17 +00:00
|
|
|
/**
|
|
|
|
* gst_value_set_buffer:
|
2009-11-25 14:44:05 +00:00
|
|
|
* @v: a #GValue to receive the data
|
2010-12-07 18:35:04 +00:00
|
|
|
* @b: (transfer none): a #GstBuffer to assign to the GstValue
|
2005-10-20 20:46:17 +00:00
|
|
|
*
|
2006-08-23 09:47:32 +00:00
|
|
|
* Sets @b as the value of @v. Caller retains reference to buffer.
|
2005-10-20 20:46:17 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define gst_value_set_buffer(v,b) gst_value_set_mini_object(v, GST_MINI_OBJECT_CAST(b))
|
2005-10-20 20:46:17 +00:00
|
|
|
/**
|
|
|
|
* gst_value_take_buffer:
|
2009-11-25 14:44:05 +00:00
|
|
|
* @v: a #GValue to receive the data
|
2010-12-07 18:35:04 +00:00
|
|
|
* @b: (transfer full): a #GstBuffer to assign to the GstValue
|
2005-10-20 20:46:17 +00:00
|
|
|
*
|
2006-08-23 09:47:32 +00:00
|
|
|
* Sets @b as the value of @v. Caller gives away reference to buffer.
|
2005-10-20 20:46:17 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define gst_value_take_buffer(v,b) gst_value_take_mini_object(v, GST_MINI_OBJECT_CAST(b))
|
2005-10-20 20:46:17 +00:00
|
|
|
/**
|
|
|
|
* gst_value_get_buffer:
|
2009-11-25 14:44:05 +00:00
|
|
|
* @v: a #GValue to query
|
2005-10-20 20:46:17 +00:00
|
|
|
*
|
2006-08-23 09:47:32 +00:00
|
|
|
* Receives a #GstBuffer as the value of @v. Does not return a reference to
|
|
|
|
* the buffer, so the pointer is only valid for as long as the caller owns
|
|
|
|
* a reference to @v.
|
2010-12-07 18:35:04 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer none): buffer
|
2005-10-20 20:46:17 +00:00
|
|
|
*/
|
2009-09-01 14:49:22 +00:00
|
|
|
#define gst_value_get_buffer(v) GST_BUFFER_CAST (gst_value_get_mini_object(v))
|
2005-06-22 09:55:16 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#endif /* __GST_BUFFER_H__ */
|