mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
d2bf92842c
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,
111 lines
3.4 KiB
C
111 lines
3.4 KiB
C
/* GStreamer
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
* 2000 Wim Taymans <wim.taymans@chello.be>
|
|
*
|
|
* gstdata.h: Header for GstData objects (used for data passing)
|
|
*
|
|
* 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_DATA_H__
|
|
#define __GST_DATA_H__
|
|
|
|
#include <glib-object.h>
|
|
#include <gst/gsttypes.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* type */
|
|
#define GST_DATA(data) ((GstData*)(data))
|
|
#define GST_DATA_TYPE(data) (GST_DATA(data)->type)
|
|
|
|
/* flags */
|
|
#define GST_DATA_FLAGS(data) (GST_DATA(data)->flags)
|
|
#define GST_DATA_FLAG_SHIFT(flag) (1<<(flag))
|
|
#define GST_DATA_FLAG_IS_SET(data,flag) (GST_DATA_FLAGS(data) & (1<<(flag)))
|
|
#define GST_DATA_FLAG_SET(data,flag) G_STMT_START{ (GST_DATA_FLAGS(data) |= (1<<(flag))); }G_STMT_END
|
|
#define GST_DATA_FLAG_UNSET(data,flag) G_STMT_START{ (GST_DATA_FLAGS(data) &= ~(1<<(flag))); }G_STMT_END
|
|
|
|
/* Macros for the GType */
|
|
#define GST_TYPE_DATA (gst_data_get_type ())
|
|
|
|
typedef struct _GstData GstData;
|
|
|
|
typedef void (*GstDataFreeFunction) (GstData *data);
|
|
typedef GstData* (*GstDataCopyFunction) (const GstData *data);
|
|
|
|
typedef enum
|
|
{
|
|
GST_DATA_READONLY = 1,
|
|
|
|
/* insert more */
|
|
GST_DATA_FLAG_LAST = 8
|
|
} GstDataFlags;
|
|
|
|
/* refcount */
|
|
#define GST_DATA_REFCOUNT(data) ((GST_DATA(data))->refcount)
|
|
#define GST_DATA_REFCOUNT_VALUE(data) (g_atomic_int_get (&(GST_DATA(data))->refcount))
|
|
|
|
/* copy/free functions */
|
|
#define GST_DATA_COPY_FUNC(data) (GST_DATA(data)->copy)
|
|
#define GST_DATA_FREE_FUNC(data) (GST_DATA(data)->free)
|
|
|
|
|
|
struct _GstData {
|
|
GType type;
|
|
|
|
/*< public >*/ /* with COW */
|
|
/* refcounting */
|
|
gint refcount;
|
|
|
|
guint16 flags;
|
|
|
|
/*< protected >*/
|
|
/* utility function pointers, can override default */
|
|
GstDataFreeFunction free; /* free the data */
|
|
GstDataCopyFunction copy; /* copy the data */
|
|
|
|
/*< private >*/
|
|
gpointer _gst_reserved[GST_PADDING];
|
|
};
|
|
|
|
/* function used by subclasses only */
|
|
void gst_data_init (GstData *data, GType type, guint16 flags,
|
|
GstDataFreeFunction free,
|
|
GstDataCopyFunction copy);
|
|
void gst_data_dispose (GstData *data);
|
|
void gst_data_copy_into (const GstData *data, GstData *target);
|
|
|
|
/* basic operations on data */
|
|
GstData* gst_data_copy (const GstData *data);
|
|
gboolean gst_data_is_writable (GstData *data);
|
|
GstData* gst_data_copy_on_write (GstData *data);
|
|
|
|
/* reference counting */
|
|
GstData* gst_data_ref (GstData* data);
|
|
GstData* gst_data_ref_by_count (GstData* data, gint count);
|
|
void gst_data_unref (GstData* data);
|
|
|
|
/* replace data pointer */
|
|
void gst_data_replace (GstData** olddata, GstData *newdata);
|
|
|
|
/* GType for GstData */
|
|
GType gst_data_get_type (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_DATA_H__ */
|