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>
|
|
|
|
*
|
|
|
|
* gstobject.c: Fundamental class used for all of GStreamer
|
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.
|
|
|
|
*/
|
|
|
|
|
2000-12-28 22:12:02 +00:00
|
|
|
#include "gst_private.h"
|
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include "gstobject.h"
|
2004-02-03 03:31:26 +00:00
|
|
|
#include "gstmarshal.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gstinfo.h"
|
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
|
|
|
#include "gsttrace.h"
|
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* Object signals and args */
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
PARENT_SET,
|
2002-07-24 20:42:13 +00:00
|
|
|
PARENT_UNSET,
|
2001-10-17 10:21:27 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2001-01-30 23:53:04 +00:00
|
|
|
OBJECT_SAVED,
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2002-11-02 13:19:30 +00:00
|
|
|
DEEP_NOTIFY,
|
2000-01-30 09:03:00 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
ARG_0,
|
2004-01-30 20:48:13 +00:00
|
|
|
ARG_NAME
|
2004-03-13 15:27:01 +00:00
|
|
|
/* FILL ME */
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-01-30 23:53:04 +00:00
|
|
|
SO_OBJECT_LOADED,
|
|
|
|
SO_LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-06-12 13:45:17 +00:00
|
|
|
GType _gst_object_type = 0;
|
2002-02-20 21:31:16 +00:00
|
|
|
static GHashTable *object_name_counts = NULL;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-02-20 21:31:16 +00:00
|
|
|
G_LOCK_DEFINE_STATIC (object_name_mutex);
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2001-01-30 23:53:04 +00:00
|
|
|
typedef struct _GstSignalObject GstSignalObject;
|
|
|
|
typedef struct _GstSignalObjectClass GstSignalObjectClass;
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static GType gst_signal_object_get_type (void);
|
|
|
|
static void gst_signal_object_class_init (GstSignalObjectClass * klass);
|
|
|
|
static void gst_signal_object_init (GstSignalObject * object);
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2003-02-10 20:37:21 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2001-01-30 23:53:04 +00:00
|
|
|
static guint gst_signal_object_signals[SO_LAST_SIGNAL] = { 0 };
|
2003-02-10 20:37:21 +00:00
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_object_class_init (GstObjectClass * klass);
|
|
|
|
static void gst_object_init (GstObject * object);
|
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
2004-03-13 15:27:01 +00:00
|
|
|
static GObject *gst_object_constructor (GType type,
|
|
|
|
guint n_construct_properties, GObjectConstructParam * construct_params);
|
2003-05-10 12:42:02 +00:00
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_object_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_object_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_object_dispatch_properties_changed (GObject * object,
|
|
|
|
guint n_pspecs, GParamSpec ** pspecs);
|
2001-10-24 19:11:11 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_object_dispose (GObject * object);
|
|
|
|
static void gst_object_finalize (GObject * object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2002-01-11 15:49:47 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_object_real_restore_thyself (GstObject * object,
|
|
|
|
xmlNodePtr self);
|
2002-01-11 15:49:47 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
static GObjectClass *parent_class = NULL;
|
2000-01-30 09:03:00 +00:00
|
|
|
static guint gst_object_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
GType
|
2001-01-29 00:06:02 +00:00
|
|
|
gst_object_get_type (void)
|
|
|
|
{
|
2001-10-17 10:21:27 +00:00
|
|
|
if (!_gst_object_type) {
|
2001-06-25 01:20:11 +00:00
|
|
|
static const GTypeInfo object_info = {
|
|
|
|
sizeof (GstObjectClass),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_object_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof (GstObject),
|
2004-04-09 19:05:03 +00:00
|
|
|
0,
|
2001-06-25 01:20:11 +00:00
|
|
|
(GInstanceInitFunc) gst_object_init,
|
2001-09-14 22:16:47 +00:00
|
|
|
NULL
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
_gst_object_type =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_type_register_static (G_TYPE_OBJECT, "GstObject", &object_info,
|
|
|
|
G_TYPE_FLAG_ABSTRACT);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
return _gst_object_type;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_class_init (GstObjectClass * klass)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
parent_class = g_type_class_ref (G_TYPE_OBJECT);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-10-25 21:24:09 +00:00
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_object_set_property);
|
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_object_get_property);
|
2002-04-12 09:38:47 +00:00
|
|
|
|
2002-01-01 13:51:04 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_NAME,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_string ("name", "Name", "The name of the object",
|
2004-03-15 19:27:17 +00:00
|
|
|
NULL, G_PARAM_READWRITE));
|
2001-10-24 19:11:11 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
gst_object_signals[PARENT_SET] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("parent-set", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstObjectClass, parent_set), NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, G_TYPE_OBJECT);
|
2002-07-24 20:42:13 +00:00
|
|
|
gst_object_signals[PARENT_UNSET] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("parent-unset", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstObjectClass, parent_unset), NULL,
|
|
|
|
NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, G_TYPE_OBJECT);
|
2001-10-17 10:21:27 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2003-11-13 02:47:03 +00:00
|
|
|
/* FIXME This should be the GType of xmlNodePtr instead of G_TYPE_POINTER */
|
2001-01-30 23:53:04 +00:00
|
|
|
gst_object_signals[OBJECT_SAVED] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("object-saved", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstObjectClass, object_saved), NULL,
|
|
|
|
NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER);
|
|
|
|
|
2002-01-11 15:49:47 +00:00
|
|
|
klass->restore_thyself = gst_object_real_restore_thyself;
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2002-11-02 13:19:30 +00:00
|
|
|
gst_object_signals[DEEP_NOTIFY] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("deep-notify", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED |
|
|
|
|
G_SIGNAL_NO_HOOKS, G_STRUCT_OFFSET (GstObjectClass, deep_notify), NULL,
|
|
|
|
NULL, gst_marshal_VOID__OBJECT_PARAM, G_TYPE_NONE, 2, G_TYPE_OBJECT,
|
|
|
|
G_TYPE_PARAM);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
|
|
|
klass->path_string_separator = "/";
|
2002-01-11 15:49:47 +00:00
|
|
|
|
|
|
|
klass->signal_object = g_object_new (gst_signal_object_get_type (), NULL);
|
2002-11-02 13:19:30 +00:00
|
|
|
|
2003-06-16 15:08:34 +00:00
|
|
|
/* see the comments at gst_object_dispatch_properties_changed */
|
2002-11-02 13:19:30 +00:00
|
|
|
gobject_class->dispatch_properties_changed
|
2004-03-13 15:27:01 +00:00
|
|
|
= GST_DEBUG_FUNCPTR (gst_object_dispatch_properties_changed);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-09-28 19:16:02 +00:00
|
|
|
gobject_class->dispose = gst_object_dispose;
|
2001-06-25 01:20:11 +00:00
|
|
|
gobject_class->finalize = gst_object_finalize;
|
2003-05-10 12:42:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
|
|
|
gobject_class->constructor = gst_object_constructor;
|
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_init (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2004-03-13 15:27:01 +00:00
|
|
|
object->lock = g_mutex_new ();
|
2000-01-30 09:03:00 +00:00
|
|
|
object->parent = NULL;
|
2001-10-24 19:20:58 +00:00
|
|
|
object->name = NULL;
|
2001-05-25 21:00:07 +00:00
|
|
|
|
|
|
|
object->flags = 0;
|
|
|
|
GST_FLAG_SET (object, GST_FLOATING);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
|
|
|
static GObject *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_constructor (GType type, guint n_construct_properties,
|
|
|
|
GObjectConstructParam * construct_params)
|
2003-05-10 12:42:02 +00:00
|
|
|
{
|
|
|
|
const gchar *name;
|
|
|
|
GstAllocTrace *trace;
|
2004-03-13 15:27:01 +00:00
|
|
|
GObject *obj =
|
|
|
|
G_OBJECT_CLASS (parent_class)->constructor (type, n_construct_properties,
|
|
|
|
construct_params);
|
2003-05-10 12:42:02 +00:00
|
|
|
|
|
|
|
name = g_type_name (type);
|
|
|
|
|
|
|
|
trace = gst_alloc_trace_get (name);
|
|
|
|
if (!trace) {
|
|
|
|
trace = gst_alloc_trace_register (name);
|
|
|
|
}
|
|
|
|
gst_alloc_trace_new (trace, obj);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
#endif
|
2001-05-25 21:00:07 +00:00
|
|
|
/**
|
|
|
|
* gst_object_ref:
|
|
|
|
* @object: GstObject to reference
|
|
|
|
*
|
|
|
|
* Increments the refence count on the object.
|
2001-05-27 14:37:29 +00:00
|
|
|
*
|
|
|
|
* Returns: A pointer to the object
|
2001-05-25 21:00:07 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstObject *
|
|
|
|
gst_object_ref (GstObject * object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "ref %d->%d",
|
2004-03-13 15:27:01 +00:00
|
|
|
G_OBJECT (object)->ref_count, G_OBJECT (object)->ref_count + 1);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
g_object_ref (G_OBJECT (object));
|
2001-05-25 21:00:07 +00:00
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_unref:
|
|
|
|
* @object: GstObject to unreference
|
|
|
|
*
|
|
|
|
* Decrements the refence count on the object. If reference count hits
|
|
|
|
* zero, destroy the object.
|
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_unref (GstObject * object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
2003-01-17 20:02:27 +00:00
|
|
|
g_return_if_fail (G_OBJECT (object)->ref_count > 0);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "unref %d->%d",
|
2004-03-13 15:27:01 +00:00
|
|
|
G_OBJECT (object)->ref_count, G_OBJECT (object)->ref_count - 1);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
g_object_unref (G_OBJECT (object));
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_sink:
|
|
|
|
* @object: GstObject to sink
|
|
|
|
*
|
|
|
|
* Removes floating reference on an object. Any newly created object has
|
|
|
|
* a refcount of 1 and is FLOATING. This function should be used when
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
* creating a new object to symbolically 'take ownership' of the object.
|
2002-04-12 09:38:47 +00:00
|
|
|
* Use #gst_object_set_parent to have this done for you.
|
2001-05-25 21:00:07 +00:00
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_sink (GstObject * object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "sink");
|
2003-01-17 18:48:17 +00:00
|
|
|
|
|
|
|
if (GST_OBJECT_FLOATING (object)) {
|
2001-05-25 21:00:07 +00:00
|
|
|
GST_FLAG_UNSET (object, GST_FLOATING);
|
|
|
|
gst_object_unref (object);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-17 17:44:07 +00:00
|
|
|
/**
|
2003-02-02 19:49:29 +00:00
|
|
|
* gst_object_replace:
|
2003-01-17 17:44:07 +00:00
|
|
|
* @oldobj: pointer to place of old GstObject
|
|
|
|
* @newobj: new GstObject
|
|
|
|
*
|
|
|
|
* Unrefs the object pointer to by oldobj, refs the newobj and
|
|
|
|
* puts the newobj in *oldobj.
|
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_replace (GstObject ** oldobj, GstObject * newobj)
|
2003-01-17 17:44:07 +00:00
|
|
|
{
|
2003-06-29 14:05:49 +00:00
|
|
|
g_return_if_fail (oldobj != NULL);
|
|
|
|
g_return_if_fail (*oldobj == NULL || GST_IS_OBJECT (*oldobj));
|
|
|
|
g_return_if_fail (newobj == NULL || GST_IS_OBJECT (newobj));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-07-06 11:21:34 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_REFCOUNTING, "replace %s (%d) with %s (%d)",
|
2004-03-13 15:27:01 +00:00
|
|
|
*oldobj ? GST_STR_NULL (GST_OBJECT_NAME (*oldobj)) : "(NONE)",
|
2004-07-06 11:21:34 +00:00
|
|
|
*oldobj ? G_OBJECT (*oldobj)->ref_count : 0,
|
|
|
|
newobj ? GST_STR_NULL (GST_OBJECT_NAME (newobj)) : "(NONE)",
|
|
|
|
newobj ? G_OBJECT (newobj)->ref_count : 0);
|
2003-03-25 19:42:19 +00:00
|
|
|
|
2003-01-17 17:44:07 +00:00
|
|
|
if (*oldobj != newobj) {
|
2004-03-13 15:27:01 +00:00
|
|
|
if (newobj)
|
|
|
|
gst_object_ref (newobj);
|
|
|
|
if (*oldobj)
|
|
|
|
gst_object_unref (*oldobj);
|
2003-01-17 17:44:07 +00:00
|
|
|
|
|
|
|
*oldobj = newobj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_dispose (GObject * object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "dispose");
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
GST_FLAG_SET (GST_OBJECT (object), GST_DESTROYED);
|
2001-09-28 19:16:02 +00:00
|
|
|
GST_OBJECT_PARENT (object) = NULL;
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-09-28 19:16:02 +00:00
|
|
|
parent_class->dispose (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
/* finalize is called when the object has to free its resources */
|
2001-05-25 21:00:07 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_finalize (GObject * object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
2001-12-15 22:37:35 +00:00
|
|
|
GstObject *gstobject = GST_OBJECT (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "finalize");
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-12-15 22:37:35 +00:00
|
|
|
g_signal_handlers_destroy (object);
|
|
|
|
|
2003-05-02 20:07:45 +00:00
|
|
|
g_free (gstobject->name);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
g_mutex_free (gstobject->lock);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
|
|
|
{
|
|
|
|
const gchar *name;
|
|
|
|
GstAllocTrace *trace;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
name = g_type_name (G_OBJECT_TYPE (object));
|
|
|
|
trace = gst_alloc_trace_get (name);
|
|
|
|
g_assert (trace);
|
|
|
|
gst_alloc_trace_free (trace, object);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
parent_class->finalize (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
2003-06-16 15:08:34 +00:00
|
|
|
/* Changing a GObject property of a GstObject will result in "deep_notify"
|
|
|
|
* signals being emitted by the object itself, as well as in each parent
|
|
|
|
* object. This is so that an application can connect a listener to the
|
2002-11-02 13:19:30 +00:00
|
|
|
* top-level bin to catch property-change notifications for all contained
|
|
|
|
* elements. */
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_dispatch_properties_changed (GObject * object,
|
|
|
|
guint n_pspecs, GParamSpec ** pspecs)
|
2002-11-02 13:19:30 +00:00
|
|
|
{
|
|
|
|
GstObject *gst_object;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
/* do the standard dispatching */
|
2004-03-13 15:27:01 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->dispatch_properties_changed (object, n_pspecs,
|
|
|
|
pspecs);
|
2002-11-02 13:19:30 +00:00
|
|
|
|
|
|
|
/* now let the parent dispatch those, too */
|
|
|
|
gst_object = GST_OBJECT_PARENT (object);
|
|
|
|
while (gst_object) {
|
|
|
|
/* need own category? */
|
|
|
|
for (i = 0; i < n_pspecs; i++) {
|
2004-03-13 15:27:01 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_EVENT, "deep notification from %s to %s (%s)",
|
2004-07-28 20:12:49 +00:00
|
|
|
GST_OBJECT_NAME (object) ? GST_OBJECT_NAME (object) : "(null)",
|
|
|
|
GST_OBJECT_NAME (gst_object) ? GST_OBJECT_NAME (gst_object) :
|
|
|
|
"(null)", pspecs[i]->name);
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_emit (gst_object, gst_object_signals[DEEP_NOTIFY],
|
2004-03-15 19:27:17 +00:00
|
|
|
g_quark_from_string (pspecs[i]->name), (GstObject *) object,
|
|
|
|
pspecs[i]);
|
2002-11-02 13:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gst_object = GST_OBJECT_PARENT (gst_object);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_default_deep_notify:
|
|
|
|
* @object: the #GObject that signalled the notify.
|
|
|
|
* @orig: a #GstObject that initiated the notify.
|
|
|
|
* @pspec: a #GParamSpec of the property.
|
2002-12-14 13:02:16 +00:00
|
|
|
* @excluded_props: a set of user-specified properties to exclude or
|
|
|
|
* NULL to show all changes.
|
2002-11-02 13:19:30 +00:00
|
|
|
*
|
|
|
|
* Adds a default deep_notify signal callback to an
|
|
|
|
* element. The user data should contain a pointer to an array of
|
|
|
|
* strings that should be excluded from the notify.
|
|
|
|
* The default handler will print the new value of the property
|
|
|
|
* using g_print.
|
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_default_deep_notify (GObject * object, GstObject * orig,
|
|
|
|
GParamSpec * pspec, gchar ** excluded_props)
|
2002-11-02 13:19:30 +00:00
|
|
|
{
|
2004-03-15 19:27:17 +00:00
|
|
|
GValue value = { 0, }; /* the important thing is that value.type = 0 */
|
2002-11-02 13:19:30 +00:00
|
|
|
gchar *str = 0;
|
2002-11-20 21:13:07 +00:00
|
|
|
gchar *name = NULL;
|
2002-11-02 13:19:30 +00:00
|
|
|
|
|
|
|
if (pspec->flags & G_PARAM_READABLE) {
|
|
|
|
/* let's not print these out for excluded properties... */
|
|
|
|
while (excluded_props != NULL && *excluded_props != NULL) {
|
|
|
|
if (strcmp (pspec->name, *excluded_props) == 0)
|
2004-03-15 19:27:17 +00:00
|
|
|
return;
|
2002-11-02 13:19:30 +00:00
|
|
|
excluded_props++;
|
|
|
|
}
|
|
|
|
g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
|
|
|
|
g_object_get_property (G_OBJECT (orig), pspec->name, &value);
|
|
|
|
|
|
|
|
if (G_IS_PARAM_SPEC_ENUM (pspec)) {
|
|
|
|
GEnumValue *enum_value;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
|
|
|
enum_value =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_enum_get_value (G_ENUM_CLASS (g_type_class_ref (pspec->value_type)),
|
|
|
|
g_value_get_enum (&value));
|
2002-11-02 13:19:30 +00:00
|
|
|
|
|
|
|
str = g_strdup_printf ("%s (%d)", enum_value->value_nick,
|
2004-03-15 19:27:17 +00:00
|
|
|
enum_value->value);
|
2004-03-13 15:27:01 +00:00
|
|
|
} else {
|
2002-11-02 13:19:30 +00:00
|
|
|
str = g_strdup_value_contents (&value);
|
|
|
|
}
|
2002-11-20 21:13:07 +00:00
|
|
|
name = gst_object_get_path_string (orig);
|
|
|
|
g_print ("%s: %s = %s\n", name, pspec->name, str);
|
|
|
|
g_free (name);
|
2002-11-02 13:19:30 +00:00
|
|
|
g_free (str);
|
|
|
|
g_value_unset (&value);
|
|
|
|
} else {
|
2002-11-20 21:13:07 +00:00
|
|
|
name = gst_object_get_path_string (orig);
|
2004-03-13 15:27:01 +00:00
|
|
|
g_warning ("Parameter %s not readable in %s.", pspec->name, name);
|
2002-11-20 21:13:07 +00:00
|
|
|
g_free (name);
|
2002-11-02 13:19:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-02-20 21:31:16 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_set_name_default (GstObject * object)
|
2002-02-20 21:31:16 +00:00
|
|
|
{
|
|
|
|
gint count;
|
2002-03-03 00:44:41 +00:00
|
|
|
gchar *name, *tmp;
|
|
|
|
const gchar *type_name;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-02-20 21:31:16 +00:00
|
|
|
type_name = G_OBJECT_TYPE_NAME (object);
|
|
|
|
|
2002-08-28 10:45:57 +00:00
|
|
|
/* to ensure guaranteed uniqueness across threads, only one thread
|
|
|
|
* may ever assign a name */
|
2002-02-20 21:31:16 +00:00
|
|
|
G_LOCK (object_name_mutex);
|
|
|
|
|
2004-02-11 20:16:33 +00:00
|
|
|
if (!object_name_counts) {
|
|
|
|
object_name_counts = g_hash_table_new_full (g_str_hash, g_str_equal,
|
2004-03-15 19:27:17 +00:00
|
|
|
g_free, NULL);
|
2004-02-11 20:16:33 +00:00
|
|
|
}
|
2002-02-20 21:31:16 +00:00
|
|
|
|
|
|
|
count = GPOINTER_TO_INT (g_hash_table_lookup (object_name_counts, type_name));
|
2004-03-13 15:27:01 +00:00
|
|
|
g_hash_table_insert (object_name_counts, g_strdup (type_name),
|
|
|
|
GINT_TO_POINTER (count + 1));
|
|
|
|
|
2002-02-20 21:31:16 +00:00
|
|
|
G_UNLOCK (object_name_mutex);
|
|
|
|
|
2002-03-03 00:44:41 +00:00
|
|
|
/* GstFooSink -> foosinkN */
|
|
|
|
if (strncmp (type_name, "Gst", 3) == 0)
|
|
|
|
type_name += 3;
|
|
|
|
tmp = g_strdup_printf ("%s%d", type_name, count);
|
|
|
|
name = g_ascii_strdown (tmp, strlen (tmp));
|
|
|
|
g_free (tmp);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-02-20 21:31:16 +00:00
|
|
|
gst_object_set_name (object, name);
|
|
|
|
g_free (name);
|
|
|
|
}
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
/**
|
|
|
|
* gst_object_set_name:
|
|
|
|
* @object: GstObject to set the name of
|
|
|
|
* @name: new name of object
|
|
|
|
*
|
2002-08-28 10:45:57 +00:00
|
|
|
* Sets the name of the object, or gives the element a guaranteed unique
|
|
|
|
* name (if @name is NULL).
|
2001-01-29 00:06:02 +00:00
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_set_name (GstObject * object, const gchar * name)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
|
|
|
|
if (object->name != NULL)
|
|
|
|
g_free (object->name);
|
|
|
|
|
2002-02-20 21:31:16 +00:00
|
|
|
if (name != NULL)
|
|
|
|
object->name = g_strdup (name);
|
|
|
|
else
|
|
|
|
gst_object_set_name_default (object);
|
2001-01-29 00:06:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_get_name:
|
|
|
|
* @object: GstObject to get the name of
|
|
|
|
*
|
|
|
|
* Get the name of the object.
|
|
|
|
*
|
|
|
|
* Returns: name of the object
|
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
const gchar *
|
|
|
|
gst_object_get_name (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
|
|
|
|
|
|
|
return object->name;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_set_parent:
|
|
|
|
* @object: GstObject to set parent of
|
|
|
|
* @parent: new parent of object
|
|
|
|
*
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
* Sets the parent of @object. The object's reference count will be incremented,
|
|
|
|
* and any floating reference will be removed (see gst_object_sink()).
|
|
|
|
*
|
|
|
|
* Causes the parent-set signal to be emitted.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
2001-01-29 00:06:02 +00:00
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_set_parent (GstObject * object, GstObject * parent)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
g_return_if_fail (parent != NULL);
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (parent));
|
|
|
|
g_return_if_fail (object != parent);
|
2003-06-29 14:05:49 +00:00
|
|
|
g_return_if_fail (object->parent == NULL);
|
2000-12-29 10:02:17 +00:00
|
|
|
|
2004-04-13 10:44:12 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "set parent (ref and sink)");
|
2001-01-29 00:06:02 +00:00
|
|
|
gst_object_ref (object);
|
|
|
|
gst_object_sink (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
object->parent = parent;
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
g_signal_emit (G_OBJECT (object), gst_object_signals[PARENT_SET], 0, parent);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_get_parent:
|
|
|
|
* @object: GstObject to get parent of
|
|
|
|
*
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
* Returns the parent of @object.
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* Returns: parent of the object
|
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstObject *
|
|
|
|
gst_object_get_parent (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (object != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
return object->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_unparent:
|
|
|
|
* @object: GstObject to unparent
|
|
|
|
*
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
* Clear the parent of @object, removing the associated reference.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
2001-01-29 00:06:02 +00:00
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_unparent (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (object != NULL);
|
2004-03-13 15:27:01 +00:00
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
2000-01-30 09:03:00 +00:00
|
|
|
if (object->parent == NULL)
|
|
|
|
return;
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_REFCOUNTING, object, "unparent");
|
2004-03-13 15:27:01 +00:00
|
|
|
|
|
|
|
g_signal_emit (G_OBJECT (object), gst_object_signals[PARENT_UNSET], 0,
|
|
|
|
object->parent);
|
2002-07-24 20:42:13 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
object->parent = NULL;
|
2001-01-29 00:06:02 +00:00
|
|
|
gst_object_unref (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-02-02 06:26:44 +00:00
|
|
|
/**
|
2001-05-25 21:00:07 +00:00
|
|
|
* gst_object_check_uniqueness:
|
|
|
|
* @list: a list of #GstObject to check through
|
|
|
|
* @name: the name to search for
|
2000-02-02 06:26:44 +00:00
|
|
|
*
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
* Checks to see if there is any object named @name in @list.
|
2001-05-25 21:00:07 +00:00
|
|
|
*
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
* Returns: TRUE if the name does not appear in the list, FALSE if it does.
|
2000-02-02 06:26:44 +00:00
|
|
|
*/
|
2001-05-25 21:00:07 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_check_uniqueness (GList * list, const gchar * name)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2001-08-21 20:16:48 +00:00
|
|
|
g_return_val_if_fail (name != NULL, FALSE);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
while (list) {
|
2001-08-21 20:16:48 +00:00
|
|
|
GstObject *child = GST_OBJECT (list->data);
|
|
|
|
|
2002-04-12 09:38:47 +00:00
|
|
|
list = g_list_next (list);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
|
|
|
if (strcmp (GST_OBJECT_NAME (child), name) == 0)
|
2001-08-21 20:16:48 +00:00
|
|
|
return FALSE;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2001-04-17 21:14:55 +00:00
|
|
|
/**
|
|
|
|
* gst_object_save_thyself:
|
|
|
|
* @object: GstObject to save
|
|
|
|
* @parent: The parent XML node to save the object into
|
|
|
|
*
|
|
|
|
* Saves the given object into the parent XML node.
|
|
|
|
*
|
|
|
|
* Returns: the new xmlNodePtr with the saved object
|
|
|
|
*/
|
2001-01-29 00:06:02 +00:00
|
|
|
xmlNodePtr
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_save_thyself (GstObject * object, xmlNodePtr parent)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
|
|
|
GstObjectClass *oclass;
|
|
|
|
|
|
|
|
g_return_val_if_fail (object != NULL, parent);
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), parent);
|
|
|
|
g_return_val_if_fail (parent != NULL, parent);
|
|
|
|
|
2002-12-19 21:31:03 +00:00
|
|
|
oclass = GST_OBJECT_GET_CLASS (object);
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
if (oclass->save_thyself)
|
|
|
|
oclass->save_thyself (object, parent);
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_emit (G_OBJECT (object), gst_object_signals[OBJECT_SAVED], 0,
|
|
|
|
parent);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2001-01-30 23:53:04 +00:00
|
|
|
return parent;
|
2001-01-29 00:06:02 +00:00
|
|
|
}
|
2000-12-29 10:02:17 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
/**
|
2001-10-21 18:00:31 +00:00
|
|
|
* gst_object_restore_thyself:
|
2001-08-21 20:16:48 +00:00
|
|
|
* @object: GstObject to load into
|
2002-01-11 15:49:47 +00:00
|
|
|
* @self: The XML node to load the object from
|
2001-08-21 20:16:48 +00:00
|
|
|
*
|
2001-10-21 18:00:31 +00:00
|
|
|
* Restores the given object with the data from the parent XML node.
|
2001-08-21 20:16:48 +00:00
|
|
|
*/
|
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_restore_thyself (GstObject * object, xmlNodePtr self)
|
2001-08-21 20:16:48 +00:00
|
|
|
{
|
|
|
|
GstObjectClass *oclass;
|
|
|
|
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
2002-01-11 15:49:47 +00:00
|
|
|
g_return_if_fail (self != NULL);
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2002-12-19 21:31:03 +00:00
|
|
|
oclass = GST_OBJECT_GET_CLASS (object);
|
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
if (oclass->restore_thyself)
|
2002-01-11 15:49:47 +00:00
|
|
|
oclass->restore_thyself (object, self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_real_restore_thyself (GstObject * object, xmlNodePtr self)
|
2002-01-11 15:49:47 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
g_return_if_fail (self != NULL);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
|
|
|
gst_class_signal_emit_by_name (object, "object_loaded", self);
|
2001-08-21 20:16:48 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
#endif /* GST_DISABLE_LOADSAVE_REGISTRY */
|
2001-06-24 21:18:28 +00:00
|
|
|
|
2001-10-24 19:11:11 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-10-24 19:11:11 +00:00
|
|
|
{
|
|
|
|
GstObject *gstobject;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-24 19:11:11 +00:00
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-24 19:11:11 +00:00
|
|
|
gstobject = GST_OBJECT (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_NAME:
|
|
|
|
gst_object_set_name (gstobject, g_value_get_string (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
2001-10-24 19:11:11 +00:00
|
|
|
{
|
|
|
|
GstObject *gstobject;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-24 19:11:11 +00:00
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-10-24 19:11:11 +00:00
|
|
|
gstobject = GST_OBJECT (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_NAME:
|
2004-03-13 15:27:01 +00:00
|
|
|
g_value_set_string (value, (gchar *) GST_OBJECT_NAME (gstobject));
|
2001-10-24 19:11:11 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-04-12 09:38:47 +00:00
|
|
|
|
2000-12-30 16:13:17 +00:00
|
|
|
/**
|
|
|
|
* gst_object_get_path_string:
|
|
|
|
* @object: GstObject to get the path from
|
|
|
|
*
|
|
|
|
* Generates a string describing the path of the object in
|
gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky way to do inheritance.
Original commit message from CVS:
2004-02-10 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
way to do inheritance.
(gst_pad_get_event_masks, gst_pad_get_event_masks_default)
(gst_pad_get_query_types, gst_pad_get_query_types_default):
Routine docs.
(gst_pad_set_link_function, gst_pad_set_fixate_function)
(gst_pad_set_getcaps_function): Doc from Dave's negotation random
doc.
(gst_pad_unlink, gst_pad_is_linked): Docs.
(gst_pad_renegotiate): A brief description of capsnego.
(gst_pad_try_set_caps): Document.
(gst_pad_try_set_caps_nonfixed): Document.
(gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
(gst_pad_set_parent): Deprecated (although not out of the API).
(gst_pad_get_parent): Deprecated, although many plugins use this.
(gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
are private and will go away in 0.9.
(gst_pad_perform_negotiate): Doc.
(gst_pad_link_unnegotiate): I think this is meant to be static.
(gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
(gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
(gst_pad_get_peer): Doc updates.
(gst_pad_caps_change_notify): Doc.
(gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
(gst_ghost_pad_new): Doc fixes.
* gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
(gst_object_check_uniqueness):
* gst/gstelement.c (gst_element_add_pad)
(gst_element_add_ghost_pad, gst_element_remove_pad)
(gst_element_remove_ghost_pad, gst_element_get_pad)
(gst_element_get_static_pad, gst_element_get_pad_list)
(gst_element_class_get_pad_template_list)
(gst_element_class_get_pad_template): Work on the docs.
(gst_element_get_pad_template_list): Uses the class method.
(gst_element_get_compatible_pad_template): Docs, and consolidate
some test conditions.
(gst_element_get_pad_from_template): New static function.
(gst_element_request_compatible_pad): Docs, and work with
non-request compatible templates.
(gst_element_get_compatible_pad_filtered): Docs and remove
redundant checks.
(gst_element_get_compatible_pad, gst_element_link_pads_filtered)
(gst_element_link_filtered, gst_element_link_many)
(gst_element_link, gst_element_link_pads)
(gst_element_unlink_many): Docs.
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstpad.c (_gst_real_pad_fixate_accumulator):
s/pointer/boxed/.
* gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
* gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
with the type=GST_TYPE_CAPS. This allows language bindings to know
what kind of data they're dealing with.
* gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
to NULL when g_value_init is called. GstCaps, which rolls its own
type implementation, now does the same instead of allocating empty
caps.
(_gst_caps_initialize, _gst_caps_collect_value,
_gst_caps_lcopy_value): Provide collect_value and lcopy_value type
table methods. This allows G_VALUE_COLLECT to work.
2004-02-05 Andy Wingo <wingo@pobox.com>
* configure.ac:
* testsuite/Makefile.am (SUBDIRS):
* testsuite/ghostpads/Makefile.am:
* testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
* gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
These two routines are the only ones that set
GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
pad template. They should be made static, depending on ABI needs.
(gst_real_pad_dispose): Handle the case of ghost pads without a
parent. Assert after dealing with ghost pads that the ghost pad
list is empty.
(gst_ghost_pad_class_init): New property added, ::real-pad. Can be
set after creation.
(gst_ghost_pad_dispose): Set ::real-pad to NULL.
(gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
functions. set_property will call add_ghost_pad/remove_ghost_pad
as appropriate.
(gst_ghost_pad_new): All the work is offloaded to g_object_new.
* gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
(gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
(gst_element_remove_pad): Handle ghost pads as well.
(gst_element_remove_ghost_pad): Deprecated (could be removed,
depending on API-stability needs).
2004-02-05 Andy Wingo <wingo@pobox.com>
* gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
of course they're const
2004-02-11 13:26:04 +00:00
|
|
|
* the object hierarchy. Only useful (or used) for debugging.
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2000-12-30 16:13:17 +00:00
|
|
|
* Returns: a string describing the path of the object
|
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
gchar *
|
|
|
|
gst_object_get_path_string (GstObject * object)
|
2000-12-30 16:13:17 +00:00
|
|
|
{
|
2000-12-29 10:02:17 +00:00
|
|
|
GSList *parentage = NULL;
|
|
|
|
GSList *parents;
|
|
|
|
void *parent;
|
2001-03-07 21:52:56 +00:00
|
|
|
gchar *prevpath, *path;
|
2000-12-29 10:02:17 +00:00
|
|
|
const char *component;
|
|
|
|
gchar *separator = "";
|
|
|
|
gboolean free_component;
|
|
|
|
|
|
|
|
parentage = g_slist_prepend (NULL, object);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2001-03-07 21:52:56 +00:00
|
|
|
path = g_strdup ("");
|
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* first walk the object hierarchy to build a list of the parents */
|
2000-12-29 10:02:17 +00:00
|
|
|
do {
|
2001-01-29 00:06:02 +00:00
|
|
|
if (GST_IS_OBJECT (object)) {
|
|
|
|
parent = gst_object_get_parent (object);
|
2000-12-29 10:02:17 +00:00
|
|
|
} else {
|
|
|
|
parentage = g_slist_prepend (parentage, NULL);
|
|
|
|
parent = NULL;
|
|
|
|
}
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
if (parent != NULL) {
|
2000-12-29 10:02:17 +00:00
|
|
|
parentage = g_slist_prepend (parentage, parent);
|
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
object = parent;
|
|
|
|
} while (object != NULL);
|
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* then walk the parent list and print them out */
|
2000-12-29 10:02:17 +00:00
|
|
|
parents = parentage;
|
|
|
|
while (parents) {
|
2001-01-29 00:06:02 +00:00
|
|
|
if (GST_IS_OBJECT (parents->data)) {
|
2002-12-19 21:31:03 +00:00
|
|
|
GstObjectClass *oclass = GST_OBJECT_GET_CLASS (parents->data);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2001-03-07 21:52:56 +00:00
|
|
|
component = gst_object_get_name (parents->data);
|
2001-01-29 00:06:02 +00:00
|
|
|
separator = oclass->path_string_separator;
|
|
|
|
free_component = FALSE;
|
2000-12-29 10:02:17 +00:00
|
|
|
} else {
|
2004-03-13 15:27:01 +00:00
|
|
|
component = g_strdup_printf ("%p", parents->data);
|
2000-12-29 10:02:17 +00:00
|
|
|
separator = "/";
|
|
|
|
free_component = TRUE;
|
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
prevpath = path;
|
2001-01-29 00:06:02 +00:00
|
|
|
path = g_strjoin (separator, prevpath, component, NULL);
|
2004-03-13 15:27:01 +00:00
|
|
|
g_free (prevpath);
|
2000-12-29 10:02:17 +00:00
|
|
|
if (free_component)
|
2004-03-13 15:27:01 +00:00
|
|
|
g_free ((gchar *) component);
|
2000-12-29 10:02:17 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
parents = g_slist_next (parents);
|
2000-12-29 10:02:17 +00:00
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
|
|
|
|
g_slist_free (parentage);
|
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2001-01-30 23:53:04 +00:00
|
|
|
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
struct _GstSignalObject
|
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObject object;
|
2001-01-30 23:53:04 +00:00
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
struct _GstSignalObjectClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
2001-01-30 23:53:04 +00:00
|
|
|
|
|
|
|
/* signals */
|
2001-10-17 10:21:27 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2004-03-13 15:27:01 +00:00
|
|
|
void (*object_loaded) (GstSignalObject * object, GstObject * new,
|
|
|
|
xmlNodePtr self);
|
2004-03-15 19:27:17 +00:00
|
|
|
#endif /* GST_DISABLE_LOADSAVE_REGISTRY */
|
2001-01-30 23:53:04 +00:00
|
|
|
};
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
static GType
|
2001-01-30 23:53:04 +00:00
|
|
|
gst_signal_object_get_type (void)
|
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
static GType signal_object_type = 0;
|
2001-01-30 23:53:04 +00:00
|
|
|
|
|
|
|
if (!signal_object_type) {
|
2001-06-25 01:20:11 +00:00
|
|
|
static const GTypeInfo signal_object_info = {
|
2004-03-13 15:27:01 +00:00
|
|
|
sizeof (GstSignalObjectClass),
|
2001-06-25 01:20:11 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-13 15:27:01 +00:00
|
|
|
(GClassInitFunc) gst_signal_object_class_init,
|
2001-06-25 01:20:11 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-13 15:27:01 +00:00
|
|
|
sizeof (GstSignalObject),
|
2004-04-09 19:05:03 +00:00
|
|
|
0,
|
2004-03-13 15:27:01 +00:00
|
|
|
(GInstanceInitFunc) gst_signal_object_init,
|
2001-09-14 22:16:47 +00:00
|
|
|
NULL
|
2001-01-30 23:53:04 +00:00
|
|
|
};
|
2004-03-15 19:27:17 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
signal_object_type =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_type_register_static (G_TYPE_OBJECT, "GstSignalObject",
|
|
|
|
&signal_object_info, 0);
|
2001-01-30 23:53:04 +00:00
|
|
|
}
|
|
|
|
return signal_object_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_signal_object_class_init (GstSignalObjectClass * klass)
|
2001-01-30 23:53:04 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
parent_class = g_type_class_ref (G_TYPE_OBJECT);
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2001-01-30 23:53:04 +00:00
|
|
|
gst_signal_object_signals[SO_OBJECT_LOADED] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("object-loaded", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstSignalObjectClass, object_loaded),
|
|
|
|
NULL, NULL, gst_marshal_VOID__OBJECT_POINTER, G_TYPE_NONE, 2,
|
|
|
|
G_TYPE_OBJECT, G_TYPE_POINTER);
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2001-01-30 23:53:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_signal_object_init (GstSignalObject * object)
|
2001-01-30 23:53:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-01-31 20:27:00 +00:00
|
|
|
/**
|
|
|
|
* gst_class_signal_connect
|
|
|
|
* @klass: the GstObjectClass to attach the signal to
|
|
|
|
* @name: the name of the signal to attach to
|
|
|
|
* @func: the signal function
|
|
|
|
* @func_data: a pointer to user data
|
|
|
|
*
|
|
|
|
* Connect to a class signal.
|
|
|
|
*
|
|
|
|
* Returns: the signal id.
|
|
|
|
*/
|
2001-01-30 23:53:04 +00:00
|
|
|
guint
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_class_signal_connect (GstObjectClass * klass,
|
|
|
|
const gchar * name, gpointer func, gpointer func_data)
|
2001-01-30 23:53:04 +00:00
|
|
|
{
|
2001-08-13 19:00:13 +00:00
|
|
|
return g_signal_connect (klass->signal_object, name, func, func_data);
|
2001-01-30 23:53:04 +00:00
|
|
|
}
|
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
2001-01-31 20:27:00 +00:00
|
|
|
/**
|
|
|
|
* gst_class_signal_emit_by_name:
|
|
|
|
* @object: the object that sends the signal
|
|
|
|
* @name: the name of the signal to emit
|
|
|
|
* @self: data for the signal
|
|
|
|
*
|
|
|
|
* emits the named class signal.
|
|
|
|
*/
|
2001-01-30 23:53:04 +00:00
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_class_signal_emit_by_name (GstObject * object,
|
|
|
|
const gchar * name, xmlNodePtr self)
|
2001-01-30 23:53:04 +00:00
|
|
|
{
|
|
|
|
GstObjectClass *oclass;
|
|
|
|
|
2002-12-19 21:31:03 +00:00
|
|
|
oclass = GST_OBJECT_GET_CLASS (object);
|
2001-01-30 23:53:04 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
g_signal_emit_by_name (oclass->signal_object, name, object, self);
|
2001-01-30 23:53:04 +00:00
|
|
|
}
|
2001-06-24 21:18:28 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#endif /* GST_DISABLE_LOADSAVE_REGISTRY */
|