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>
|
2005-03-07 18:27:42 +00:00
|
|
|
* 2005 Wim Taymans <wim@fluendo.com>
|
2000-12-28 22:12:02 +00:00
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
2005-10-15 16:01:57 +00:00
|
|
|
|
2005-09-23 14:31:21 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstobject
|
|
|
|
* @short_description: Base class for the GStreamer object hierarchy
|
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* #GstObject provides a root for the object hierarchy tree filed in by the
|
|
|
|
* GStreamer library. It is currently a thin wrapper on top of
|
2012-03-29 11:34:50 +00:00
|
|
|
* #GInitiallyUnowned. It is an abstract class that is not very usable on its own.
|
2005-09-23 14:31:21 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* #GstObject gives us basic refcounting, parenting functionality and locking.
|
2013-10-25 15:02:19 +00:00
|
|
|
* Most of the functions are just extended for special GStreamer needs and can be
|
2005-11-09 17:32:10 +00:00
|
|
|
* found under the same name in the base class of #GstObject which is #GObject
|
2005-09-23 14:31:21 +00:00
|
|
|
* (e.g. g_object_ref() becomes gst_object_ref()).
|
|
|
|
*
|
2013-10-25 15:02:19 +00:00
|
|
|
* Since #GstObject derives from #GInitiallyUnowned, it also inherits the
|
2012-03-29 11:34:50 +00:00
|
|
|
* floating reference. Be aware that functions such as gst_bin_add() and
|
|
|
|
* gst_element_add_pad() take ownership of the floating reference.
|
2005-11-09 17:32:10 +00:00
|
|
|
*
|
|
|
|
* In contrast to #GObject instances, #GstObject adds a name property. The functions
|
2005-09-23 14:31:21 +00:00
|
|
|
* gst_object_set_name() and gst_object_get_name() are used to set/get the name
|
|
|
|
* of the object.
|
2005-11-09 17:32:10 +00:00
|
|
|
*
|
2011-11-10 17:37:28 +00:00
|
|
|
* <refsect2>
|
|
|
|
* <title>controlled properties</title>
|
2011-11-11 15:04:52 +00:00
|
|
|
* <para>
|
2013-10-25 15:02:19 +00:00
|
|
|
* Controlled properties offers a lightweight way to adjust gobject properties
|
|
|
|
* over stream-time. It works by using time-stamped value pairs that are queued
|
|
|
|
* for element-properties. At run-time the elements continuously pull value
|
|
|
|
* changes for the current stream-time.
|
2011-11-10 17:37:28 +00:00
|
|
|
*
|
|
|
|
* What needs to be changed in a #GstElement?
|
|
|
|
* Very little - it is just two steps to make a plugin controllable!
|
|
|
|
* <orderedlist>
|
|
|
|
* <listitem><para>
|
|
|
|
* mark gobject-properties paramspecs that make sense to be controlled,
|
|
|
|
* by GST_PARAM_CONTROLLABLE.
|
|
|
|
* </para></listitem>
|
|
|
|
* <listitem><para>
|
|
|
|
* when processing data (get, chain, loop function) at the beginning call
|
|
|
|
* gst_object_sync_values(element,timestamp).
|
2014-05-29 23:13:30 +00:00
|
|
|
* This will make the controller update all GObject properties that are
|
|
|
|
* under its control with the current values based on the timestamp.
|
2011-11-10 17:37:28 +00:00
|
|
|
* </para></listitem>
|
|
|
|
* </orderedlist>
|
|
|
|
*
|
|
|
|
* What needs to be done in applications?
|
2012-09-21 19:13:13 +00:00
|
|
|
* Again it's not a lot to change.
|
2011-11-10 17:37:28 +00:00
|
|
|
* <orderedlist>
|
|
|
|
* <listitem><para>
|
|
|
|
* create a #GstControlSource.
|
|
|
|
* csource = gst_interpolation_control_source_new ();
|
2011-12-19 22:32:57 +00:00
|
|
|
* g_object_set (csource, "mode", GST_INTERPOLATION_MODE_LINEAR, NULL);
|
2011-11-10 17:37:28 +00:00
|
|
|
* </para></listitem>
|
|
|
|
* <listitem><para>
|
|
|
|
* Attach the #GstControlSource on the controller to a property.
|
2012-09-21 19:13:13 +00:00
|
|
|
* gst_object_add_control_binding (object, gst_direct_control_binding_new (object, "prop1", csource));
|
2011-11-10 17:37:28 +00:00
|
|
|
* </para></listitem>
|
|
|
|
* <listitem><para>
|
|
|
|
* Set the control values
|
2011-12-19 10:13:45 +00:00
|
|
|
* gst_timed_value_control_source_set ((GstTimedValueControlSource *)csource,0 * GST_SECOND, value1);
|
|
|
|
* gst_timed_value_control_source_set ((GstTimedValueControlSource *)csource,1 * GST_SECOND, value2);
|
2011-11-10 17:37:28 +00:00
|
|
|
* </para></listitem>
|
|
|
|
* <listitem><para>
|
|
|
|
* start your pipeline
|
|
|
|
* </para></listitem>
|
|
|
|
* </orderedlist>
|
2011-11-11 15:04:52 +00:00
|
|
|
* </para>
|
2011-11-10 17:37:28 +00:00
|
|
|
* </refsect2>
|
2005-09-23 14:31:21 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-12-28 22:12:02 +00:00
|
|
|
#include "gst_private.h"
|
2011-08-23 09:41:02 +00:00
|
|
|
#include "glib-compat-private.h"
|
2000-12-28 22:12:02 +00:00
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include "gstobject.h"
|
2011-11-10 17:37:28 +00:00
|
|
|
#include "gstclock.h"
|
2011-12-20 21:36:18 +00:00
|
|
|
#include "gstcontrolbinding.h"
|
2011-11-10 17:37:28 +00:00
|
|
|
#include "gstcontrolsource.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gstinfo.h"
|
2011-11-10 17:37:28 +00:00
|
|
|
#include "gstparamspecs.h"
|
2005-04-24 22:49:45 +00:00
|
|
|
#include "gstutils.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
|
|
|
#include "gsttrace.h"
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
static GstAllocTrace *_gst_object_trace;
|
2003-05-10 12:42:02 +00:00
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
#define DEBUG_REFCOUNT
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* Object signals and args */
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
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
|
|
|
|
{
|
2010-12-07 10:58:34 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_NAME,
|
|
|
|
PROP_PARENT,
|
|
|
|
PROP_LAST
|
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
|
|
|
|
};
|
|
|
|
|
2006-07-07 17:16:26 +00:00
|
|
|
/* maps type name quark => count */
|
|
|
|
static GData *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
|
|
|
|
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);
|
2010-12-07 10:58:34 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
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
|
|
|
|
2006-07-07 17:16:26 +00:00
|
|
|
static gboolean gst_object_set_name_default (GstObject * object);
|
2005-02-19 13:02:45 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
static guint gst_object_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2010-12-07 10:58:34 +00:00
|
|
|
static GParamSpec *properties[PROP_LAST];
|
|
|
|
|
|
|
|
G_DEFINE_ABSTRACT_TYPE (GstObject, gst_object, G_TYPE_INITIALLY_UNOWNED);
|
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
|
|
|
{
|
2009-04-04 08:20:36 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
2012-01-27 16:50:42 +00:00
|
|
|
_gst_object_trace =
|
2012-02-02 14:55:44 +00:00
|
|
|
_gst_alloc_trace_register (g_type_name (GST_TYPE_OBJECT), -2);
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
#endif
|
|
|
|
|
2009-10-28 00:29:30 +00:00
|
|
|
gobject_class->set_property = gst_object_set_property;
|
|
|
|
gobject_class->get_property = gst_object_get_property;
|
2002-04-12 09:38:47 +00:00
|
|
|
|
2010-12-07 10:58:34 +00:00
|
|
|
properties[PROP_NAME] =
|
|
|
|
g_param_spec_string ("name", "Name", "The name of the object", NULL,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS);
|
2001-10-24 19:11:11 +00:00
|
|
|
|
2014-01-09 06:56:55 +00:00
|
|
|
/**
|
|
|
|
* GstObject:parent:
|
|
|
|
*
|
|
|
|
* The parent of the object. Please note, that when changing the 'parent'
|
|
|
|
* property, we don't emit #GObject::notify and #GstObject::deep-notify
|
|
|
|
* signals due to locking issues. In some cases one can use
|
|
|
|
* #GstBin::element-added or #GstBin::element-removed signals on the parent to
|
|
|
|
* achieve a similar effect.
|
|
|
|
*/
|
2010-12-07 10:58:34 +00:00
|
|
|
properties[PROP_PARENT] =
|
|
|
|
g_param_spec_object ("parent", "Parent", "The parent of the object",
|
|
|
|
GST_TYPE_OBJECT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
2012-01-23 10:03:09 +00:00
|
|
|
|
|
|
|
g_object_class_install_properties (gobject_class, PROP_LAST, properties);
|
2005-09-23 14:31:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstObject::deep-notify:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @gstobject: a #GstObject
|
2005-09-23 14:31:21 +00:00
|
|
|
* @prop_object: the object that originated the signal
|
|
|
|
* @prop: the property that changed
|
|
|
|
*
|
|
|
|
* The deep notify signal is used to be notified of property changes. It is
|
|
|
|
* typically attached to the toplevel bin to receive notifications from all
|
|
|
|
* the elements contained in that bin.
|
|
|
|
*/
|
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,
|
2012-03-02 10:05:48 +00:00
|
|
|
NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 2, GST_TYPE_OBJECT,
|
2004-03-13 15:27:01 +00:00
|
|
|
G_TYPE_PARAM);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
|
|
|
klass->path_string_separator = "/";
|
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;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
static void
|
2009-04-04 08:20:36 +00:00
|
|
|
gst_object_init (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2012-01-19 08:27:04 +00:00
|
|
|
g_mutex_init (&object->lock);
|
2000-01-30 09:03:00 +00:00
|
|
|
object->parent = NULL;
|
2001-10-24 19:20:58 +00:00
|
|
|
object->name = NULL;
|
2010-06-03 00:49:51 +00:00
|
|
|
GST_CAT_TRACE_OBJECT (GST_CAT_REFCOUNTING, object, "%p new", object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
2012-01-27 16:50:42 +00:00
|
|
|
_gst_alloc_trace_new (_gst_object_trace, object);
|
gst/: Avoid excessive typechecking in macros.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_do_sync), (gst_base_sink_handle_event),
(gst_base_sink_chain), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
Avoid excessive typechecking in macros.
* gst/gstminiobject.c: (gst_mini_object_get_type),
(gst_mini_object_init), (gst_mini_object_new),
(gst_mini_object_free):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_finalize):
Remove cruft code, optimize alloc_trace.
2005-11-08 11:13:07 +00:00
|
|
|
#endif
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
object->flags = 0;
|
2011-11-10 17:37:28 +00:00
|
|
|
|
|
|
|
object->control_rate = 100 * GST_MSECOND;
|
|
|
|
object->last_sync = GST_CLOCK_TIME_NONE;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
/**
|
|
|
|
* gst_object_ref:
|
2012-06-12 18:42:30 +00:00
|
|
|
* @object: (type Gst.Object): a #GstObject to reference
|
2001-05-25 21:00:07 +00:00
|
|
|
*
|
2007-12-22 12:48:26 +00:00
|
|
|
* Increments the reference count on @object. This function
|
2005-11-09 17:32:10 +00:00
|
|
|
* does not take the lock on @object because it relies on
|
2005-03-07 18:27:42 +00:00
|
|
|
* atomic refcounting.
|
|
|
|
*
|
|
|
|
* This object returns the input parameter to ease writing
|
|
|
|
* constructs like :
|
|
|
|
* result = gst_object_ref (object->parent);
|
2001-05-27 14:37:29 +00:00
|
|
|
*
|
2012-06-12 18:42:30 +00:00
|
|
|
* Returns: (transfer full) (type Gst.Object): A pointer to @object
|
2001-05-25 21:00:07 +00:00
|
|
|
*/
|
2005-06-28 09:17:14 +00:00
|
|
|
gpointer
|
|
|
|
gst_object_ref (gpointer object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
2006-06-12 09:06:01 +00:00
|
|
|
g_return_val_if_fail (object != NULL, NULL);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2006-05-05 08:17:22 +00:00
|
|
|
#ifdef DEBUG_REFCOUNT
|
2010-06-03 00:49:51 +00:00
|
|
|
GST_CAT_TRACE_OBJECT (GST_CAT_REFCOUNTING, object, "%p ref %d->%d", object,
|
2005-03-07 18:27:42 +00:00
|
|
|
((GObject *) object)->ref_count, ((GObject *) object)->ref_count + 1);
|
|
|
|
#endif
|
2006-05-05 08:17:22 +00:00
|
|
|
g_object_ref (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_unref:
|
2012-06-12 18:42:30 +00:00
|
|
|
* @object: (type Gst.Object): a #GstObject to unreference
|
2001-05-25 21:00:07 +00:00
|
|
|
*
|
2007-12-22 12:48:26 +00:00
|
|
|
* Decrements the reference count on @object. If reference count hits
|
2005-11-09 17:32:10 +00:00
|
|
|
* zero, destroy @object. This function does not take the lock
|
|
|
|
* on @object as it relies on atomic refcounting.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
|
|
|
* The unref method should never be called with the LOCK held since
|
|
|
|
* this might deadlock the dispose function.
|
2001-05-25 21:00:07 +00:00
|
|
|
*/
|
2005-06-28 09:17:14 +00:00
|
|
|
void
|
|
|
|
gst_object_unref (gpointer object)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
2006-06-12 09:06:01 +00:00
|
|
|
g_return_if_fail (object != NULL);
|
2010-12-26 21:20:31 +00:00
|
|
|
g_return_if_fail (((GObject *) object)->ref_count > 0);
|
2005-09-29 18:35:38 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_REFCOUNT
|
2010-06-03 00:49:51 +00:00
|
|
|
GST_CAT_TRACE_OBJECT (GST_CAT_REFCOUNTING, object, "%p unref %d->%d", object,
|
2005-09-29 18:35:38 +00:00
|
|
|
((GObject *) object)->ref_count, ((GObject *) object)->ref_count - 1);
|
|
|
|
#endif
|
2005-03-07 18:27:42 +00:00
|
|
|
g_object_unref (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 12:33:01 +00:00
|
|
|
/**
|
2011-10-19 10:12:36 +00:00
|
|
|
* gst_object_ref_sink: (skip)
|
2009-05-02 12:33:01 +00:00
|
|
|
* @object: a #GstObject to sink
|
|
|
|
*
|
|
|
|
* Increase the reference count of @object, and possibly remove the floating
|
|
|
|
* reference, if @object has a floating reference.
|
|
|
|
*
|
|
|
|
* In other words, if the object is floating, then this call "assumes ownership"
|
|
|
|
* of the floating reference, converting it to a normal reference by clearing
|
|
|
|
* the floating flag while leaving the reference count unchanged. If the object
|
|
|
|
* is not floating, then this call adds a new normal reference increasing the
|
|
|
|
* reference count by one.
|
|
|
|
*/
|
2010-12-07 10:58:34 +00:00
|
|
|
gpointer
|
2009-05-02 12:33:01 +00:00
|
|
|
gst_object_ref_sink (gpointer object)
|
|
|
|
{
|
2010-12-07 10:58:34 +00:00
|
|
|
g_return_val_if_fail (object != NULL, NULL);
|
2003-01-17 18:48:17 +00:00
|
|
|
|
2010-12-07 10:58:34 +00:00
|
|
|
#ifdef DEBUG_REFCOUNT
|
|
|
|
GST_CAT_TRACE_OBJECT (GST_CAT_REFCOUNTING, object, "%p ref_sink %d->%d",
|
|
|
|
object, ((GObject *) object)->ref_count,
|
|
|
|
((GObject *) object)->ref_count + 1);
|
|
|
|
#endif
|
|
|
|
return g_object_ref_sink (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
2003-01-17 17:44:07 +00:00
|
|
|
/**
|
2003-02-02 19:49:29 +00:00
|
|
|
* gst_object_replace:
|
2014-06-11 23:06:19 +00:00
|
|
|
* @oldobj: (inout) (transfer full) (nullable): pointer to a place of
|
|
|
|
* a #GstObject to replace
|
2014-06-11 23:19:01 +00:00
|
|
|
* @newobj: (transfer none) (allow-none): a new #GstObject
|
2003-01-17 17:44:07 +00:00
|
|
|
*
|
2011-08-22 10:49:04 +00:00
|
|
|
* Atomically modifies a pointer to point to a new object.
|
|
|
|
* The reference count of @oldobj is decreased and the reference count of
|
|
|
|
* @newobj is increased.
|
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
|
|
|
*
|
2014-05-29 21:54:34 +00:00
|
|
|
* Either @newobj and the value pointed to by @oldobj may be %NULL.
|
2011-08-21 21:07:08 +00:00
|
|
|
*
|
2014-05-29 21:54:34 +00:00
|
|
|
* Returns: %TRUE if @newobj was different from @oldobj
|
2003-01-17 17:44:07 +00:00
|
|
|
*/
|
2011-08-22 10:49:04 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_replace (GstObject ** oldobj, GstObject * newobj)
|
2003-01-17 17:44:07 +00:00
|
|
|
{
|
2011-08-21 21:07:08 +00:00
|
|
|
GstObject *oldptr;
|
|
|
|
|
2011-08-22 10:49:04 +00:00
|
|
|
g_return_val_if_fail (oldobj != NULL, FALSE);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
#ifdef DEBUG_REFCOUNT
|
2010-06-03 00:49:51 +00:00
|
|
|
GST_CAT_TRACE (GST_CAT_REFCOUNTING, "replace %p %s (%d) with %p %s (%d)",
|
2009-06-23 11:34:35 +00:00
|
|
|
*oldobj, *oldobj ? GST_STR_NULL (GST_OBJECT_NAME (*oldobj)) : "(NONE)",
|
2004-07-06 11:21:34 +00:00
|
|
|
*oldobj ? G_OBJECT (*oldobj)->ref_count : 0,
|
2009-06-23 11:34:35 +00:00
|
|
|
newobj, newobj ? GST_STR_NULL (GST_OBJECT_NAME (newobj)) : "(NONE)",
|
2004-07-06 11:21:34 +00:00
|
|
|
newobj ? G_OBJECT (newobj)->ref_count : 0);
|
2005-03-07 18:27:42 +00:00
|
|
|
#endif
|
2003-03-25 19:42:19 +00:00
|
|
|
|
2011-08-22 10:49:04 +00:00
|
|
|
oldptr = g_atomic_pointer_get ((gpointer *) oldobj);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (oldptr == newobj))
|
|
|
|
return FALSE;
|
|
|
|
|
2011-08-21 21:07:08 +00:00
|
|
|
if (newobj)
|
2012-04-12 12:58:47 +00:00
|
|
|
gst_object_ref (newobj);
|
2011-08-22 10:49:04 +00:00
|
|
|
|
|
|
|
while (G_UNLIKELY (!g_atomic_pointer_compare_and_exchange ((gpointer *)
|
|
|
|
oldobj, oldptr, newobj))) {
|
|
|
|
oldptr = g_atomic_pointer_get ((gpointer *) oldobj);
|
|
|
|
if (G_UNLIKELY (oldptr == newobj))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-08-21 21:07:08 +00:00
|
|
|
if (oldptr)
|
2012-04-12 12:58:47 +00:00
|
|
|
gst_object_unref (oldptr);
|
2011-08-22 10:49:04 +00:00
|
|
|
|
|
|
|
return oldptr != newobj;
|
2003-01-17 17:44:07 +00:00
|
|
|
}
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* dispose is called when the object has to release all links
|
|
|
|
* to other objects */
|
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
|
|
|
{
|
2011-11-04 10:34:11 +00:00
|
|
|
GstObject *self = (GstObject *) object;
|
2006-03-22 13:10:16 +00:00
|
|
|
GstObject *parent;
|
|
|
|
|
2010-06-03 00:49:51 +00:00
|
|
|
GST_CAT_TRACE_OBJECT (GST_CAT_REFCOUNTING, object, "dispose");
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2006-03-22 13:10:16 +00:00
|
|
|
if ((parent = GST_OBJECT_PARENT (object)))
|
|
|
|
goto have_parent;
|
2001-09-28 19:16:02 +00:00
|
|
|
GST_OBJECT_PARENT (object) = NULL;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2011-12-20 21:36:18 +00:00
|
|
|
if (self->control_bindings) {
|
2011-11-10 17:37:28 +00:00
|
|
|
GList *node;
|
|
|
|
|
2011-12-20 21:36:18 +00:00
|
|
|
for (node = self->control_bindings; node; node = g_list_next (node)) {
|
2012-04-05 19:55:07 +00:00
|
|
|
gst_object_unparent (node->data);
|
2011-11-10 17:37:28 +00:00
|
|
|
}
|
2011-12-20 21:36:18 +00:00
|
|
|
g_list_free (self->control_bindings);
|
|
|
|
self->control_bindings = NULL;
|
2011-11-04 10:34:11 +00:00
|
|
|
}
|
|
|
|
|
2010-12-07 10:58:34 +00:00
|
|
|
((GObjectClass *) gst_object_parent_class)->dispose (object);
|
2006-03-22 13:10:16 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
have_parent:
|
|
|
|
{
|
|
|
|
g_critical ("\nTrying to dispose object \"%s\", but it still has a "
|
|
|
|
"parent \"%s\".\nYou need to let the parent manage the "
|
|
|
|
"object instead of unreffing the object directly.\n",
|
|
|
|
GST_OBJECT_NAME (object), GST_OBJECT_NAME (parent));
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
2006-05-05 08:17:22 +00:00
|
|
|
/* ref the object again to revive it in this error case */
|
2009-10-08 06:53:26 +00:00
|
|
|
gst_object_ref (object);
|
2006-03-22 13:10:16 +00:00
|
|
|
return;
|
|
|
|
}
|
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
|
|
|
{
|
2009-12-24 13:40:54 +00:00
|
|
|
GstObject *gstobject = GST_OBJECT_CAST (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2010-06-03 00:49:51 +00:00
|
|
|
GST_CAT_TRACE_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);
|
2012-01-19 08:27:04 +00:00
|
|
|
g_mutex_clear (&gstobject->lock);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2003-05-10 12:42:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
2012-01-27 16:50:42 +00:00
|
|
|
_gst_alloc_trace_free (_gst_object_trace, object);
|
2003-05-10 12:42:02 +00:00
|
|
|
#endif
|
|
|
|
|
2010-12-07 10:58:34 +00:00
|
|
|
((GObjectClass *) gst_object_parent_class)->finalize (object);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 09:30:39 +00:00
|
|
|
/* Changing a GObject property of a GstObject will result in "deep-notify"
|
2003-06-16 15:08:34 +00:00
|
|
|
* 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
|
2005-10-15 15:30:24 +00:00
|
|
|
* elements.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
2002-11-02 13:19:30 +00:00
|
|
|
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
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
GstObject *gst_object, *parent, *old_parent;
|
2002-11-02 13:19:30 +00:00
|
|
|
guint i;
|
2010-09-06 13:16:16 +00:00
|
|
|
#ifndef GST_DISABLE_GST_DEBUG
|
|
|
|
gchar *name = NULL;
|
2010-03-03 10:45:38 +00:00
|
|
|
const gchar *debug_name;
|
2010-09-06 13:16:16 +00:00
|
|
|
#endif
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2002-11-02 13:19:30 +00:00
|
|
|
/* do the standard dispatching */
|
2010-12-07 10:58:34 +00:00
|
|
|
((GObjectClass *)
|
|
|
|
gst_object_parent_class)->dispatch_properties_changed (object, n_pspecs,
|
|
|
|
pspecs);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
gst_object = GST_OBJECT_CAST (object);
|
2010-09-06 13:16:16 +00:00
|
|
|
#ifndef GST_DISABLE_GST_DEBUG
|
2011-10-08 12:37:09 +00:00
|
|
|
if (G_UNLIKELY (_gst_debug_min >= GST_LEVEL_LOG)) {
|
2010-09-06 13:16:16 +00:00
|
|
|
name = gst_object_get_name (gst_object);
|
|
|
|
debug_name = GST_STR_NULL (name);
|
|
|
|
} else
|
|
|
|
debug_name = "";
|
|
|
|
#endif
|
2002-11-02 13:19:30 +00:00
|
|
|
|
|
|
|
/* now let the parent dispatch those, too */
|
2005-03-07 18:27:42 +00:00
|
|
|
parent = gst_object_get_parent (gst_object);
|
|
|
|
while (parent) {
|
2002-11-02 13:19:30 +00:00
|
|
|
for (i = 0; i < n_pspecs; i++) {
|
2009-01-03 18:10:08 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_PROPERTIES, parent,
|
|
|
|
"deep notification from %s (%s)", debug_name, pspecs[i]->name);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
g_signal_emit (parent, gst_object_signals[DEEP_NOTIFY],
|
2009-05-02 11:06:10 +00:00
|
|
|
g_quark_from_string (pspecs[i]->name), gst_object, pspecs[i]);
|
2002-11-02 13:19:30 +00:00
|
|
|
}
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
old_parent = parent;
|
|
|
|
parent = gst_object_get_parent (old_parent);
|
|
|
|
gst_object_unref (old_parent);
|
2002-11-02 13:19:30 +00:00
|
|
|
}
|
2010-09-06 13:16:16 +00:00
|
|
|
#ifndef GST_DISABLE_GST_DEBUG
|
2005-03-07 18:27:42 +00:00
|
|
|
g_free (name);
|
2010-09-06 13:16:16 +00:00
|
|
|
#endif
|
2002-11-02 13:19:30 +00:00
|
|
|
}
|
|
|
|
|
2005-10-15 15:30:24 +00:00
|
|
|
/**
|
2002-11-02 13:19:30 +00:00
|
|
|
* 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.
|
2012-07-24 20:26:00 +00:00
|
|
|
* @excluded_props: (array zero-terminated=1) (element-type gchar*) (allow-none):
|
2014-05-29 21:54:34 +00:00
|
|
|
* a set of user-specified properties to exclude or %NULL to show
|
2012-07-24 20:26:00 +00:00
|
|
|
* all changes.
|
2002-11-02 13:19:30 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* A default deep_notify signal callback for an object. The user data
|
2005-10-15 15:30:24 +00:00
|
|
|
* 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
|
2002-11-02 13:19:30 +00:00
|
|
|
* using g_print.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. This function grabs and releases @object's LOCK for getting its
|
|
|
|
* path string.
|
2002-11-02 13:19:30 +00:00
|
|
|
*/
|
|
|
|
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 */
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
gchar *str = NULL;
|
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++;
|
|
|
|
}
|
2009-12-28 16:25:20 +00:00
|
|
|
g_value_init (&value, pspec->value_type);
|
2002-11-02 13:19:30 +00:00
|
|
|
g_object_get_property (G_OBJECT (orig), pspec->name, &value);
|
|
|
|
|
gstobject: fix double string escaping in gst_object_default_deep_notify()
Make output of gst-launch -v readable again.
last-message = "event\ \ \ \*\*\*\*\*\*\*\ \(fakesink0:sink\)\ E\ \(type:\ tag\ \(20510\)\,\ GstTagList-stream\,\ taglist\=\(taglist\)\"taglist\\\,\\\ video-codec\\\=\\\(string\\\)H264\\\,\\\
minimum-bitrate\\\=\\\(uint\\\)636611\\\,\\\ bitrate\\\=\\\(uint\\\)980729\\\,\\\ maximum-bitrate\\\=\\\(uint\\\)1116707\\\;\"\;\)\ 0x15bc760"
vs.
last-message = event ******* (fakesink0:sink) E (type: tag (20510), GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)H264\,\ minimum-bitrate\=\(uint\)856039\,\ bitrate
\=\(uint\)1019748\,\ maximum-bitrate\=\(uint\)1116707\;";) 0x11149e0
2012-08-09 18:15:29 +00:00
|
|
|
if (G_VALUE_HOLDS_STRING (&value))
|
|
|
|
str = g_value_dup_string (&value);
|
|
|
|
else
|
|
|
|
str = gst_value_serialize (&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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
static gboolean
|
2006-07-07 17:16:26 +00:00
|
|
|
gst_object_set_name_default (GstObject * object)
|
2002-02-20 21:31:16 +00:00
|
|
|
{
|
2006-07-07 17:16:26 +00:00
|
|
|
const gchar *type_name;
|
2002-02-20 21:31:16 +00:00
|
|
|
gint count;
|
2010-10-19 11:27:20 +00:00
|
|
|
gchar *name;
|
2006-07-07 17:16:26 +00:00
|
|
|
GQuark q;
|
2010-10-19 11:27:20 +00:00
|
|
|
guint i, l;
|
2002-02-20 21:31:16 +00:00
|
|
|
|
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) {
|
2006-07-07 17:16:26 +00:00
|
|
|
g_datalist_init (&object_name_counts);
|
2004-02-11 20:16:33 +00:00
|
|
|
}
|
2002-02-20 21:31:16 +00:00
|
|
|
|
2006-07-07 17:16:26 +00:00
|
|
|
q = g_type_qname (G_OBJECT_TYPE (object));
|
|
|
|
count = GPOINTER_TO_INT (g_datalist_id_get_data (&object_name_counts, q));
|
|
|
|
g_datalist_id_set_data (&object_name_counts, q, GINT_TO_POINTER (count + 1));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-02-20 21:31:16 +00:00
|
|
|
G_UNLOCK (object_name_mutex);
|
|
|
|
|
2010-10-19 11:27:20 +00:00
|
|
|
/* GstFooSink -> foosink<N> */
|
2006-07-07 17:16:26 +00:00
|
|
|
type_name = g_quark_to_string (q);
|
2002-03-03 00:44:41 +00:00
|
|
|
if (strncmp (type_name, "Gst", 3) == 0)
|
|
|
|
type_name += 3;
|
2012-04-29 12:28:09 +00:00
|
|
|
/* give the 20th "queue" element and the first "queue2" different names */
|
|
|
|
l = strlen (type_name);
|
|
|
|
if (l > 0 && g_ascii_isdigit (type_name[l - 1])) {
|
|
|
|
name = g_strdup_printf ("%s-%d", type_name, count);
|
|
|
|
} else {
|
|
|
|
name = g_strdup_printf ("%s%d", type_name, count);
|
|
|
|
}
|
|
|
|
|
2011-01-05 20:59:48 +00:00
|
|
|
l = strlen (name);
|
2010-10-19 11:27:20 +00:00
|
|
|
for (i = 0; i < l; i++)
|
2011-01-05 20:59:48 +00:00
|
|
|
name[i] = g_ascii_tolower (name[i]);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2009-11-12 08:07:03 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
if (G_UNLIKELY (object->parent != NULL))
|
|
|
|
goto had_parent;
|
2010-10-19 11:27:20 +00:00
|
|
|
|
2009-11-12 08:07:03 +00:00
|
|
|
g_free (object->name);
|
|
|
|
object->name = name;
|
|
|
|
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2009-11-12 08:07:03 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
had_parent:
|
|
|
|
{
|
2010-08-23 08:56:30 +00:00
|
|
|
g_free (name);
|
2009-11-12 08:07:03 +00:00
|
|
|
GST_WARNING ("parented objects can't be renamed");
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-02-20 21:31:16 +00:00
|
|
|
}
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
/**
|
|
|
|
* gst_object_set_name:
|
2007-04-20 08:39:35 +00:00
|
|
|
* @object: a #GstObject
|
2014-06-11 23:19:01 +00:00
|
|
|
* @name: (allow-none): new name of object
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Sets the name of @object, or gives @object a guaranteed unique
|
2014-05-29 21:54:34 +00:00
|
|
|
* name (if @name is %NULL).
|
2005-03-07 18:27:42 +00:00
|
|
|
* This function makes a copy of the provided name, so the caller
|
|
|
|
* retains ownership of the name it sent.
|
|
|
|
*
|
2014-05-29 21:54:34 +00:00
|
|
|
* Returns: %TRUE if the name could be set. Since Objects that have
|
|
|
|
* a parent cannot be renamed, this function returns %FALSE in those
|
2005-11-09 17:32:10 +00:00
|
|
|
* cases.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. This function grabs and releases @object's LOCK.
|
2001-01-29 00:06:02 +00:00
|
|
|
*/
|
2005-03-07 18:27:42 +00:00
|
|
|
gboolean
|
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
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
gboolean result;
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* parented objects cannot be renamed */
|
|
|
|
if (G_UNLIKELY (object->parent != NULL))
|
|
|
|
goto had_parent;
|
|
|
|
|
|
|
|
if (name != NULL) {
|
|
|
|
g_free (object->name);
|
2002-02-20 21:31:16 +00:00
|
|
|
object->name = g_strdup (name);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
result = TRUE;
|
|
|
|
} else {
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2006-07-07 17:16:26 +00:00
|
|
|
result = gst_object_set_name_default (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
}
|
2009-12-14 09:07:25 +00:00
|
|
|
/* FIXME-0.11: this misses a g_object_notify (object, "name"); unless called
|
|
|
|
* from gst_object_set_property.
|
|
|
|
* Ideally remove such custom setters (or make it static).
|
|
|
|
*/
|
2005-03-07 18:27:42 +00:00
|
|
|
return result;
|
|
|
|
|
|
|
|
/* error */
|
|
|
|
had_parent:
|
|
|
|
{
|
2007-03-13 14:53:21 +00:00
|
|
|
GST_WARNING ("parented objects can't be renamed");
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_get_name:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Returns a copy of the name of @object.
|
2005-03-07 18:27:42 +00:00
|
|
|
* Caller should g_free() the return value after usage.
|
2014-05-29 21:54:34 +00:00
|
|
|
* For a nameless object, this returns %NULL, which you can safely g_free()
|
2005-03-07 18:27:42 +00:00
|
|
|
* as well.
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Free-function: g_free
|
|
|
|
*
|
2014-06-11 22:21:34 +00:00
|
|
|
* Returns: (transfer full) (nullable): the name of @object. g_free()
|
|
|
|
* after usage.
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. This function grabs and releases @object's LOCK.
|
2001-01-29 00:06:02 +00:00
|
|
|
*/
|
2005-03-07 18:27:42 +00:00
|
|
|
gchar *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_get_name (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
gchar *result = NULL;
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
result = g_strdup (object->name);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/**
|
|
|
|
* gst_object_set_parent:
|
2007-04-20 08:39:35 +00:00
|
|
|
* @object: a #GstObject
|
2000-01-30 09:03:00 +00:00
|
|
|
* @parent: new parent of object
|
|
|
|
*
|
2007-04-20 08:39:35 +00:00
|
|
|
* Sets the parent of @object to @parent. The object's reference count will
|
2010-12-07 14:19:34 +00:00
|
|
|
* be incremented, and any floating reference will be removed (see gst_object_ref_sink()).
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2014-05-29 21:54:34 +00:00
|
|
|
* Returns: %TRUE if @parent could be set or %FALSE when @object
|
2005-11-09 17:32:10 +00:00
|
|
|
* already had a parent or @object and @parent are the same.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases @object's LOCK.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
2005-03-07 18:27:42 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_set_parent (GstObject * object, GstObject * parent)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (parent), FALSE);
|
|
|
|
g_return_val_if_fail (object != parent, FALSE);
|
2000-12-29 10:02:17 +00:00
|
|
|
|
2005-09-27 18:33:48 +00:00
|
|
|
GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object,
|
|
|
|
"set parent (ref and sink)");
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
if (G_UNLIKELY (object->parent != NULL))
|
|
|
|
goto had_parent;
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
object->parent = parent;
|
2011-11-15 10:20:48 +00:00
|
|
|
gst_object_ref_sink (object);
|
2010-12-07 10:58:34 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2014-01-09 06:56:55 +00:00
|
|
|
/* FIXME-2.0: this does not work, the deep notify takes the lock from the
|
|
|
|
* parent object and deadlocks when the parent holds its lock when calling
|
|
|
|
* this function (like _element_add_pad()), we need to use a GRecMutex
|
|
|
|
* for locking the parent instead.
|
|
|
|
*/
|
2010-12-07 10:58:34 +00:00
|
|
|
/* g_object_notify_by_pspec ((GObject *)object, properties[PROP_PARENT]); */
|
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
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
return TRUE;
|
|
|
|
|
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
|
|
|
/* ERROR handling */
|
2005-03-07 18:27:42 +00:00
|
|
|
had_parent:
|
|
|
|
{
|
2006-09-15 08:43:44 +00:00
|
|
|
GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object,
|
|
|
|
"set parent failed, object already had a parent");
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_get_parent:
|
2007-04-20 08:39:35 +00:00
|
|
|
* @object: a #GstObject
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* Returns the parent of @object. This function increases the refcount
|
|
|
|
* of the parent object so you should gst_object_unref() it after usage.
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
2014-06-11 22:21:34 +00:00
|
|
|
* Returns: (transfer full) (nullable): parent of @object, this can be
|
|
|
|
* %NULL if @object has no parent. unref after usage.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases @object's LOCK.
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstObject *
|
|
|
|
gst_object_get_parent (GstObject * object)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
GstObject *result = NULL;
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
result = object->parent;
|
|
|
|
if (G_LIKELY (result))
|
|
|
|
gst_object_ref (result);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
return result;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_unparent:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject to unparent
|
2000-01-30 09:03:00 +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
|
|
|
* Clear the parent of @object, removing the associated reference.
|
2005-11-09 17:32:10 +00:00
|
|
|
* This function decreases the refcount of @object.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases @object's lock.
|
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
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
GstObject *parent;
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
parent = object->parent;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
if (G_LIKELY (parent != NULL)) {
|
2010-06-03 00:49:51 +00:00
|
|
|
GST_CAT_TRACE_OBJECT (GST_CAT_REFCOUNTING, object, "unparent");
|
2005-03-07 18:27:42 +00:00
|
|
|
object->parent = NULL;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2002-07-24 20:42:13 +00:00
|
|
|
|
2010-12-07 10:58:34 +00:00
|
|
|
/* g_object_notify_by_pspec ((GObject *)object, properties[PROP_PARENT]); */
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
gst_object_unref (object);
|
|
|
|
} else {
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
2005-03-07 18:27:42 +00:00
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2014-11-05 10:50:47 +00:00
|
|
|
/**
|
2015-05-15 06:05:50 +00:00
|
|
|
* gst_object_has_as_parent:
|
2014-11-05 10:50:47 +00:00
|
|
|
* @object: a #GstObject to check
|
|
|
|
* @parent: a #GstObject to check as parent
|
|
|
|
*
|
|
|
|
* Check if @parent is the parent of @object.
|
|
|
|
* E.g. a #GstElement can check if it owns a given #GstPad.
|
|
|
|
*
|
|
|
|
* Returns: %FALSE if either @object or @parent is %NULL. %TRUE if @parent is
|
|
|
|
* the parent of @object. Otherwise %FALSE.
|
|
|
|
*
|
|
|
|
* MT safe. Grabs and releases @object's locks.
|
|
|
|
* Since: 1.6
|
|
|
|
*/
|
|
|
|
gboolean
|
2015-05-15 06:05:50 +00:00
|
|
|
gst_object_has_as_parent (GstObject * object, GstObject * parent)
|
2014-11-05 10:50:47 +00:00
|
|
|
{
|
|
|
|
gboolean result = FALSE;
|
|
|
|
|
|
|
|
if (G_LIKELY (GST_IS_OBJECT (object) && GST_IS_OBJECT (parent))) {
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
result = GST_OBJECT_PARENT (object) == parent;
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-09-27 09:57:20 +00:00
|
|
|
/**
|
2015-05-15 11:43:12 +00:00
|
|
|
* gst_object_has_as_ancestor:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject to check
|
|
|
|
* @ancestor: a #GstObject to check as ancestor
|
2005-09-27 09:57:20 +00:00
|
|
|
*
|
|
|
|
* Check if @object has an ancestor @ancestor somewhere up in
|
2010-09-06 14:01:19 +00:00
|
|
|
* the hierarchy. One can e.g. check if a #GstElement is inside a #GstPipeline.
|
2005-09-27 09:57:20 +00:00
|
|
|
*
|
2014-05-29 21:54:34 +00:00
|
|
|
* Returns: %TRUE if @ancestor is an ancestor of @object.
|
2005-09-27 09:57:20 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases @object's locks.
|
2005-09-27 09:57:20 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2015-05-15 11:43:12 +00:00
|
|
|
gst_object_has_as_ancestor (GstObject * object, GstObject * ancestor)
|
2005-09-27 09:57:20 +00:00
|
|
|
{
|
2009-10-14 06:30:07 +00:00
|
|
|
GstObject *parent, *tmp;
|
2005-09-27 09:57:20 +00:00
|
|
|
|
2009-10-14 06:30:07 +00:00
|
|
|
if (!ancestor || !object)
|
2005-09-27 09:57:20 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2009-10-14 06:30:07 +00:00
|
|
|
parent = gst_object_ref (object);
|
|
|
|
do {
|
|
|
|
if (parent == ancestor) {
|
|
|
|
gst_object_unref (parent);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2005-09-27 09:57:20 +00:00
|
|
|
|
2009-10-14 06:30:07 +00:00
|
|
|
tmp = gst_object_get_parent (parent);
|
2005-09-27 09:57:20 +00:00
|
|
|
gst_object_unref (parent);
|
2009-10-14 06:30:07 +00:00
|
|
|
parent = tmp;
|
|
|
|
} while (parent);
|
2005-09-27 09:57:20 +00:00
|
|
|
|
2009-10-14 06:30:07 +00:00
|
|
|
return FALSE;
|
2005-09-27 09:57:20 +00:00
|
|
|
}
|
|
|
|
|
2015-05-15 11:43:12 +00:00
|
|
|
/**
|
|
|
|
* gst_object_has_ancestor:
|
|
|
|
* @object: a #GstObject to check
|
|
|
|
* @ancestor: a #GstObject to check as ancestor
|
|
|
|
*
|
|
|
|
* Check if @object has an ancestor @ancestor somewhere up in
|
|
|
|
* the hierarchy. One can e.g. check if a #GstElement is inside a #GstPipeline.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if @ancestor is an ancestor of @object.
|
|
|
|
*
|
|
|
|
* Deprecated: Use gst_object_has_as_ancestor() instead.
|
|
|
|
*
|
|
|
|
* MT safe. Grabs and releases @object's locks.
|
|
|
|
*/
|
|
|
|
/* FIXME 2.0: remove */
|
|
|
|
#ifndef GST_REMOVE_DEPRECATED
|
|
|
|
#ifdef GST_DISABLE_DEPRECATED
|
|
|
|
gboolean gst_object_has_ancestor (GstObject * object, GstObject * ancestor);
|
|
|
|
#endif
|
|
|
|
gboolean
|
|
|
|
gst_object_has_ancestor (GstObject * object, GstObject * ancestor)
|
|
|
|
{
|
|
|
|
return gst_object_has_as_ancestor (object, ancestor);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-02-02 06:26:44 +00:00
|
|
|
/**
|
2001-05-25 21:00:07 +00:00
|
|
|
* gst_object_check_uniqueness:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @list: (transfer none) (element-type Gst.Object): a list of #GstObject to
|
|
|
|
* check through
|
2001-05-25 21:00:07 +00:00
|
|
|
* @name: the name to search for
|
2000-02-02 06:26:44 +00:00
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* Checks to see if there is any object named @name in @list. This function
|
|
|
|
* does not do any locking of any kind. You might want to protect the
|
|
|
|
* provided list with the lock of the owner of the list. This function
|
2005-11-09 17:32:10 +00:00
|
|
|
* will lock each #GstObject in the list to compare the name, so be
|
2013-12-07 14:38:19 +00:00
|
|
|
* careful when passing a list with a locked object.
|
2001-05-25 21:00:07 +00:00
|
|
|
*
|
2014-05-29 21:54:34 +00:00
|
|
|
* Returns: %TRUE if a #GstObject named @name does not appear in @list,
|
|
|
|
* %FALSE if it does.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
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
|
|
|
* MT safe. Grabs and releases the LOCK of each object in the list.
|
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
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
gboolean result = TRUE;
|
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
g_return_val_if_fail (name != NULL, FALSE);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
for (; list; list = g_list_next (list)) {
|
|
|
|
GstObject *child;
|
|
|
|
gboolean eq;
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2009-12-24 13:40:54 +00:00
|
|
|
child = GST_OBJECT_CAST (list->data);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (child);
|
2005-03-07 18:27:42 +00:00
|
|
|
eq = strcmp (GST_OBJECT_NAME (child), name) == 0;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (child);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
if (G_UNLIKELY (eq)) {
|
|
|
|
result = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
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-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
|
|
|
|
2009-12-24 13:40:54 +00:00
|
|
|
gstobject = GST_OBJECT_CAST (object);
|
2001-10-24 19:11:11 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
2010-12-07 10:58:34 +00:00
|
|
|
case PROP_NAME:
|
2001-10-24 19:11:11 +00:00
|
|
|
gst_object_set_name (gstobject, g_value_get_string (value));
|
|
|
|
break;
|
2010-12-07 10:58:34 +00:00
|
|
|
case PROP_PARENT:
|
|
|
|
gst_object_set_parent (gstobject, g_value_get_object (value));
|
|
|
|
break;
|
2001-10-24 19:11:11 +00:00
|
|
|
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
|
|
|
|
2009-12-24 13:40:54 +00:00
|
|
|
gstobject = GST_OBJECT_CAST (object);
|
2001-10-24 19:11:11 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
2010-12-07 10:58:34 +00:00
|
|
|
case PROP_NAME:
|
2005-03-07 18:27:42 +00:00
|
|
|
g_value_take_string (value, gst_object_get_name (gstobject));
|
2001-10-24 19:11:11 +00:00
|
|
|
break;
|
2010-12-07 10:58:34 +00:00
|
|
|
case PROP_PARENT:
|
|
|
|
g_value_take_object (value, gst_object_get_parent (gstobject));
|
|
|
|
break;
|
2001-10-24 19:11:11 +00:00
|
|
|
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:
|
2005-11-09 17:32:10 +00:00
|
|
|
* @object: a #GstObject
|
2000-12-30 16:13:17 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* Generates a string describing the path of @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
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Free-function: g_free
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a string describing the path of @object. You must
|
2005-10-15 15:30:24 +00:00
|
|
|
* g_free() the string after usage.
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
2005-11-09 17:32:10 +00:00
|
|
|
* MT safe. Grabs and releases the #GstObject's LOCK for all objects
|
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
|
|
|
* in the hierarchy.
|
2000-12-30 16:13:17 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
gchar *
|
|
|
|
gst_object_get_path_string (GstObject * object)
|
2000-12-30 16:13:17 +00:00
|
|
|
{
|
2005-03-07 18:27:42 +00:00
|
|
|
GSList *parentage;
|
2000-12-29 10:02:17 +00:00
|
|
|
GSList *parents;
|
|
|
|
void *parent;
|
2001-03-07 21:52:56 +00:00
|
|
|
gchar *prevpath, *path;
|
2008-08-27 07:18:37 +00:00
|
|
|
const gchar *typename;
|
2005-03-07 18:27:42 +00:00
|
|
|
gchar *component;
|
2010-03-03 10:45:38 +00:00
|
|
|
const gchar *separator;
|
2000-12-29 10:02:17 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* ref object before adding to list */
|
|
|
|
gst_object_ref (object);
|
2000-12-29 10:02:17 +00:00
|
|
|
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 ("");
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* first walk the object hierarchy to build a list of the parents,
|
2013-12-07 14:40:32 +00:00
|
|
|
* be careful here with refcounting. */
|
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);
|
2005-03-07 18:27:42 +00:00
|
|
|
/* add parents to list, refcount remains increased while
|
|
|
|
* we handle the object */
|
|
|
|
if (parent)
|
|
|
|
parentage = g_slist_prepend (parentage, parent);
|
2000-12-29 10:02:17 +00:00
|
|
|
} else {
|
2005-03-07 18:27:42 +00:00
|
|
|
break;
|
2000-12-29 10:02:17 +00:00
|
|
|
}
|
|
|
|
object = parent;
|
|
|
|
} while (object != NULL);
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* then walk the parent list and print them out. we need to
|
|
|
|
* decrease the refcounting on each element after we handled
|
|
|
|
* it. */
|
|
|
|
for (parents = parentage; parents; parents = g_slist_next (parents)) {
|
2008-08-27 07:18:37 +00:00
|
|
|
if (G_IS_OBJECT (parents->data)) {
|
|
|
|
typename = G_OBJECT_TYPE_NAME (parents->data);
|
|
|
|
} else {
|
|
|
|
typename = NULL;
|
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
if (GST_IS_OBJECT (parents->data)) {
|
2005-03-07 18:27:42 +00:00
|
|
|
GstObject *item = GST_OBJECT_CAST (parents->data);
|
|
|
|
GstObjectClass *oclass = GST_OBJECT_GET_CLASS (item);
|
2008-08-28 20:12:54 +00:00
|
|
|
gchar *objname = gst_object_get_name (item);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2008-08-28 20:12:54 +00:00
|
|
|
component = g_strdup_printf ("%s:%s", typename, objname);
|
2001-01-29 00:06:02 +00:00
|
|
|
separator = oclass->path_string_separator;
|
2005-03-07 18:27:42 +00:00
|
|
|
/* and unref now */
|
|
|
|
gst_object_unref (item);
|
2008-08-28 20:12:54 +00:00
|
|
|
g_free (objname);
|
2000-12-29 10:02:17 +00:00
|
|
|
} else {
|
2008-08-27 07:18:37 +00:00
|
|
|
if (typename) {
|
|
|
|
component = g_strdup_printf ("%s:%p", typename, parents->data);
|
|
|
|
} else {
|
|
|
|
component = g_strdup_printf ("%p", parents->data);
|
|
|
|
}
|
2000-12-29 10:02:17 +00:00
|
|
|
separator = "/";
|
|
|
|
}
|
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);
|
2005-03-07 18:27:42 +00:00
|
|
|
g_free (component);
|
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;
|
|
|
|
}
|
2011-11-04 10:34:11 +00:00
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
/* controller helper functions */
|
|
|
|
|
|
|
|
/*
|
2011-12-20 21:36:18 +00:00
|
|
|
* gst_object_find_control_binding:
|
2011-11-10 17:37:28 +00:00
|
|
|
* @self: the gobject to search for a property in
|
|
|
|
* @name: the gobject property name to look for
|
|
|
|
*
|
|
|
|
* Searches the list of properties under control.
|
|
|
|
*
|
2014-06-11 22:21:34 +00:00
|
|
|
* Returns: (nullable): a #GstControlBinding or %NULL if the property
|
|
|
|
* is not being controlled.
|
2011-11-10 17:37:28 +00:00
|
|
|
*/
|
2011-12-20 21:36:18 +00:00
|
|
|
static GstControlBinding *
|
|
|
|
gst_object_find_control_binding (GstObject * self, const gchar * name)
|
2011-11-10 17:37:28 +00:00
|
|
|
{
|
2011-12-20 21:36:18 +00:00
|
|
|
GstControlBinding *binding;
|
2011-11-10 17:37:28 +00:00
|
|
|
GList *node;
|
|
|
|
|
2011-12-20 21:36:18 +00:00
|
|
|
for (node = self->control_bindings; node; node = g_list_next (node)) {
|
|
|
|
binding = node->data;
|
2011-11-10 17:37:28 +00:00
|
|
|
/* FIXME: eventually use GQuark to speed it up */
|
2011-12-20 21:36:18 +00:00
|
|
|
if (!strcmp (binding->name, name)) {
|
|
|
|
GST_DEBUG_OBJECT (self, "found control binding for property '%s'", name);
|
|
|
|
return binding;
|
2011-11-10 17:37:28 +00:00
|
|
|
}
|
|
|
|
}
|
2011-12-06 07:48:57 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "controller does not manage property '%s'", name);
|
2011-11-10 17:37:28 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-11-04 10:34:11 +00:00
|
|
|
/* controller functions */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_suggest_next_sync:
|
|
|
|
* @object: the object that has controlled properties
|
|
|
|
*
|
2011-11-10 17:37:28 +00:00
|
|
|
* Returns a suggestion for timestamps where buffers should be split
|
|
|
|
* to get best controller results.
|
2011-11-04 10:34:11 +00:00
|
|
|
*
|
2011-11-10 17:37:28 +00:00
|
|
|
* Returns: Returns the suggested timestamp or %GST_CLOCK_TIME_NONE
|
|
|
|
* if no control-rate was set.
|
2011-11-04 10:34:11 +00:00
|
|
|
*/
|
|
|
|
GstClockTime
|
|
|
|
gst_object_suggest_next_sync (GstObject * object)
|
|
|
|
{
|
2011-11-10 17:37:28 +00:00
|
|
|
GstClockTime ret;
|
|
|
|
|
2011-11-04 10:34:11 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), GST_CLOCK_TIME_NONE);
|
2011-11-10 17:37:28 +00:00
|
|
|
g_return_val_if_fail (object->control_rate != GST_CLOCK_TIME_NONE,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
|
|
|
|
/* TODO: Implement more logic, depending on interpolation mode and control
|
|
|
|
* points
|
|
|
|
* FIXME: we need playback direction
|
|
|
|
*/
|
|
|
|
ret = object->last_sync + object->control_rate;
|
|
|
|
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
2011-11-04 10:34:11 +00:00
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
return ret;
|
2011-11-04 10:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_sync_values:
|
|
|
|
* @object: the object that has controlled properties
|
|
|
|
* @timestamp: the time that should be processed
|
|
|
|
*
|
2011-11-10 17:37:28 +00:00
|
|
|
* Sets the properties of the object, according to the #GstControlSources that
|
|
|
|
* (maybe) handle them and for the given timestamp.
|
2011-11-04 10:34:11 +00:00
|
|
|
*
|
2011-11-10 17:37:28 +00:00
|
|
|
* If this function fails, it is most likely the application developers fault.
|
|
|
|
* Most probably the control sources are not setup correctly.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the controller values could be applied to the object
|
|
|
|
* properties, %FALSE otherwise
|
2011-11-04 10:34:11 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_object_sync_values (GstObject * object, GstClockTime timestamp)
|
|
|
|
{
|
2011-11-10 17:37:28 +00:00
|
|
|
GList *node;
|
2011-12-20 21:36:18 +00:00
|
|
|
gboolean ret = TRUE;
|
2011-11-10 17:37:28 +00:00
|
|
|
|
2011-11-04 10:34:11 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
2011-11-10 17:37:28 +00:00
|
|
|
g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), FALSE);
|
|
|
|
|
2011-12-06 07:48:57 +00:00
|
|
|
GST_LOG_OBJECT (object, "sync_values");
|
2011-12-22 22:48:30 +00:00
|
|
|
if (!object->control_bindings)
|
|
|
|
return TRUE;
|
2011-11-10 17:37:28 +00:00
|
|
|
|
|
|
|
/* FIXME: this deadlocks */
|
|
|
|
/* GST_OBJECT_LOCK (object); */
|
|
|
|
g_object_freeze_notify ((GObject *) object);
|
2011-12-20 21:36:18 +00:00
|
|
|
for (node = object->control_bindings; node; node = g_list_next (node)) {
|
|
|
|
ret &= gst_control_binding_sync_values ((GstControlBinding *) node->data,
|
|
|
|
object, timestamp, object->last_sync);
|
2011-11-10 17:37:28 +00:00
|
|
|
}
|
|
|
|
object->last_sync = timestamp;
|
|
|
|
g_object_thaw_notify ((GObject *) object);
|
|
|
|
/* GST_OBJECT_UNLOCK (object); */
|
2011-11-04 10:34:11 +00:00
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
return ret;
|
2011-11-04 10:34:11 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 21:36:18 +00:00
|
|
|
|
2011-11-04 19:50:58 +00:00
|
|
|
/**
|
2011-12-20 21:36:18 +00:00
|
|
|
* gst_object_has_active_control_bindings:
|
2011-11-04 19:50:58 +00:00
|
|
|
* @object: the object that has controlled properties
|
|
|
|
*
|
2011-11-10 17:37:28 +00:00
|
|
|
* Check if the @object has an active controlled properties.
|
2011-11-04 19:50:58 +00:00
|
|
|
*
|
2011-11-10 17:37:28 +00:00
|
|
|
* Returns: %TRUE if the object has active controlled properties
|
2011-11-04 19:50:58 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2011-12-20 21:36:18 +00:00
|
|
|
gst_object_has_active_control_bindings (GstObject * object)
|
2011-11-04 19:50:58 +00:00
|
|
|
{
|
|
|
|
gboolean res = FALSE;
|
2011-11-10 17:37:28 +00:00
|
|
|
GList *node;
|
2011-11-04 19:50:58 +00:00
|
|
|
|
2011-11-05 01:27:54 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
2011-11-04 19:50:58 +00:00
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2011-12-20 21:36:18 +00:00
|
|
|
for (node = object->control_bindings; node; node = g_list_next (node)) {
|
|
|
|
res |= !gst_control_binding_is_disabled ((GstControlBinding *) node->data);
|
2011-11-10 17:37:28 +00:00
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
2011-11-04 19:50:58 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-12-20 21:36:18 +00:00
|
|
|
* gst_object_set_control_bindings_disabled:
|
2011-11-04 19:50:58 +00:00
|
|
|
* @object: the object that has controlled properties
|
|
|
|
* @disabled: boolean that specifies whether to disable the controller
|
|
|
|
* or not.
|
|
|
|
*
|
2011-11-10 17:37:28 +00:00
|
|
|
* This function is used to disable all controlled properties of the @object for
|
2011-12-20 21:36:18 +00:00
|
|
|
* some time, i.e. gst_object_sync_values() will do nothing.
|
2011-11-04 19:50:58 +00:00
|
|
|
*/
|
2011-11-04 10:34:11 +00:00
|
|
|
void
|
2011-12-20 21:36:18 +00:00
|
|
|
gst_object_set_control_bindings_disabled (GstObject * object, gboolean disabled)
|
2011-11-04 10:34:11 +00:00
|
|
|
{
|
2011-11-10 17:37:28 +00:00
|
|
|
GList *node;
|
|
|
|
|
2011-11-04 10:34:11 +00:00
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2011-12-20 21:36:18 +00:00
|
|
|
for (node = object->control_bindings; node; node = g_list_next (node)) {
|
|
|
|
gst_control_binding_set_disabled ((GstControlBinding *) node->data,
|
|
|
|
disabled);
|
2011-11-10 17:37:28 +00:00
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
2011-11-04 10:34:11 +00:00
|
|
|
}
|
|
|
|
|
2011-11-04 19:50:58 +00:00
|
|
|
/**
|
2011-12-20 21:36:18 +00:00
|
|
|
* gst_object_set_control_binding_disabled:
|
2011-11-04 19:50:58 +00:00
|
|
|
* @object: the object that has controlled properties
|
|
|
|
* @property_name: property to disable
|
|
|
|
* @disabled: boolean that specifies whether to disable the controller
|
|
|
|
* or not.
|
|
|
|
*
|
2013-11-30 11:15:37 +00:00
|
|
|
* This function is used to disable the control bindings on a property for
|
|
|
|
* some time, i.e. gst_object_sync_values() will do nothing for the
|
2011-11-04 19:50:58 +00:00
|
|
|
* property.
|
|
|
|
*/
|
2011-11-04 10:34:11 +00:00
|
|
|
void
|
2011-12-20 21:36:18 +00:00
|
|
|
gst_object_set_control_binding_disabled (GstObject * object,
|
2011-11-04 10:34:11 +00:00
|
|
|
const gchar * property_name, gboolean disabled)
|
|
|
|
{
|
2011-12-20 21:36:18 +00:00
|
|
|
GstControlBinding *binding;
|
2011-11-10 17:37:28 +00:00
|
|
|
|
2011-11-04 10:34:11 +00:00
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
g_return_if_fail (property_name);
|
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2011-12-20 21:36:18 +00:00
|
|
|
if ((binding = gst_object_find_control_binding (object, property_name))) {
|
|
|
|
gst_control_binding_set_disabled (binding, disabled);
|
2011-11-10 17:37:28 +00:00
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
2011-11-04 10:34:11 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 21:36:18 +00:00
|
|
|
|
|
|
|
/**
|
2012-01-20 13:42:31 +00:00
|
|
|
* gst_object_add_control_binding:
|
2011-12-20 21:36:18 +00:00
|
|
|
* @object: the controller object
|
2012-01-20 13:42:31 +00:00
|
|
|
* @binding: (transfer full): the #GstControlBinding that should be used
|
2011-12-20 21:36:18 +00:00
|
|
|
*
|
2013-02-08 20:21:48 +00:00
|
|
|
* Attach the #GstControlBinding to the object. If there already was a
|
|
|
|
* #GstControlBinding for this property it will be replaced.
|
|
|
|
*
|
2012-01-20 13:42:31 +00:00
|
|
|
* The @object will take ownership of the @binding.
|
2011-12-20 21:36:18 +00:00
|
|
|
*
|
2013-02-08 20:21:48 +00:00
|
|
|
* Returns: %FALSE if the given @binding has not been setup for this object or
|
|
|
|
* has been setup for a non suitable property, %TRUE otherwise.
|
2011-12-20 21:36:18 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2012-01-20 13:42:31 +00:00
|
|
|
gst_object_add_control_binding (GstObject * object, GstControlBinding * binding)
|
2011-12-20 21:36:18 +00:00
|
|
|
{
|
|
|
|
GstControlBinding *old;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
2012-01-20 13:42:31 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CONTROL_BINDING (binding), FALSE);
|
2013-02-08 20:21:48 +00:00
|
|
|
g_return_val_if_fail (binding->pspec, FALSE);
|
2011-12-20 21:36:18 +00:00
|
|
|
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
if ((old = gst_object_find_control_binding (object, binding->name))) {
|
2012-01-20 13:42:31 +00:00
|
|
|
GST_DEBUG_OBJECT (object, "controlled property %s removed", old->name);
|
2011-12-20 21:36:18 +00:00
|
|
|
object->control_bindings = g_list_remove (object->control_bindings, old);
|
2012-01-20 13:42:31 +00:00
|
|
|
gst_object_unparent (GST_OBJECT_CAST (old));
|
2011-12-20 21:36:18 +00:00
|
|
|
}
|
2012-01-20 13:42:31 +00:00
|
|
|
object->control_bindings = g_list_prepend (object->control_bindings, binding);
|
|
|
|
gst_object_set_parent (GST_OBJECT_CAST (binding), object);
|
|
|
|
GST_DEBUG_OBJECT (object, "controlled property %s added", binding->name);
|
2011-12-20 21:36:18 +00:00
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
|
2012-01-20 13:42:31 +00:00
|
|
|
return TRUE;
|
2011-12-20 21:36:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_get_control_binding:
|
|
|
|
* @object: the object
|
|
|
|
* @property_name: name of the property
|
|
|
|
*
|
|
|
|
* Gets the corresponding #GstControlBinding for the property. This should be
|
|
|
|
* unreferenced again after use.
|
|
|
|
*
|
2014-06-11 22:21:34 +00:00
|
|
|
* Returns: (transfer full) (nullable): the #GstControlBinding for
|
|
|
|
* @property_name or %NULL if the property is not controlled.
|
2011-12-20 21:36:18 +00:00
|
|
|
*/
|
|
|
|
GstControlBinding *
|
|
|
|
gst_object_get_control_binding (GstObject * object, const gchar * property_name)
|
|
|
|
{
|
|
|
|
GstControlBinding *binding;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
|
|
|
g_return_val_if_fail (property_name, NULL);
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
if ((binding = gst_object_find_control_binding (object, property_name))) {
|
2012-04-12 12:58:47 +00:00
|
|
|
gst_object_ref (binding);
|
2011-12-20 21:36:18 +00:00
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
|
|
|
|
return binding;
|
|
|
|
}
|
|
|
|
|
2012-01-20 13:42:31 +00:00
|
|
|
/**
|
|
|
|
* gst_object_remove_control_binding:
|
|
|
|
* @object: the object
|
|
|
|
* @binding: the binding
|
|
|
|
*
|
|
|
|
* Removes the corresponding #GstControlBinding. If it was the
|
|
|
|
* last ref of the binding, it will be disposed.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the binding could be removed.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_object_remove_control_binding (GstObject * object,
|
|
|
|
GstControlBinding * binding)
|
|
|
|
{
|
|
|
|
GList *node;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_CONTROL_BINDING (binding), FALSE);
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
if ((node = g_list_find (object->control_bindings, binding))) {
|
|
|
|
GST_DEBUG_OBJECT (object, "controlled property %s removed", binding->name);
|
|
|
|
object->control_bindings =
|
|
|
|
g_list_delete_link (object->control_bindings, node);
|
|
|
|
gst_object_unparent (GST_OBJECT_CAST (binding));
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
/**
|
|
|
|
* gst_object_get_value:
|
|
|
|
* @object: the object that has controlled properties
|
|
|
|
* @property_name: the name of the property to get
|
|
|
|
* @timestamp: the time the control-change should be read from
|
|
|
|
*
|
2011-12-22 22:48:30 +00:00
|
|
|
* Gets the value for the given controlled property at the requested time.
|
2011-11-10 17:37:28 +00:00
|
|
|
*
|
2014-06-11 22:21:34 +00:00
|
|
|
* Returns: (nullable): the GValue of the property at the given time,
|
|
|
|
* or %NULL if the property isn't controlled.
|
2011-11-10 17:37:28 +00:00
|
|
|
*/
|
2011-11-04 10:34:11 +00:00
|
|
|
GValue *
|
|
|
|
gst_object_get_value (GstObject * object, const gchar * property_name,
|
|
|
|
GstClockTime timestamp)
|
|
|
|
{
|
2011-12-20 21:36:18 +00:00
|
|
|
GstControlBinding *binding;
|
2011-11-10 17:37:28 +00:00
|
|
|
GValue *val = NULL;
|
|
|
|
|
2011-11-04 10:34:11 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), NULL);
|
|
|
|
g_return_val_if_fail (property_name, NULL);
|
2011-11-10 17:37:28 +00:00
|
|
|
g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), NULL);
|
2011-11-04 10:34:11 +00:00
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2011-12-20 21:36:18 +00:00
|
|
|
if ((binding = gst_object_find_control_binding (object, property_name))) {
|
2011-12-22 22:48:30 +00:00
|
|
|
val = gst_control_binding_get_value (binding, timestamp);
|
2011-11-10 17:37:28 +00:00
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
|
|
|
|
return val;
|
2011-11-04 10:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_get_value_array:
|
|
|
|
* @object: the object that has controlled properties
|
2011-12-06 07:35:57 +00:00
|
|
|
* @property_name: the name of the property to get
|
2011-11-04 10:34:11 +00:00
|
|
|
* @timestamp: the time that should be processed
|
2011-12-06 07:35:57 +00:00
|
|
|
* @interval: the time spacing between subsequent values
|
|
|
|
* @n_values: the number of values
|
|
|
|
* @values: array to put control-values in
|
2011-11-04 10:34:11 +00:00
|
|
|
*
|
2012-04-25 07:47:10 +00:00
|
|
|
* Gets a number of values for the given controlled property starting at the
|
2011-12-06 07:35:57 +00:00
|
|
|
* requested time. The array @values need to hold enough space for @n_values of
|
|
|
|
* the same type as the objects property's type.
|
2011-11-04 10:34:11 +00:00
|
|
|
*
|
2011-12-06 07:35:57 +00:00
|
|
|
* This function is useful if one wants to e.g. draw a graph of the control
|
|
|
|
* curve or apply a control curve sample by sample.
|
2011-11-04 10:34:11 +00:00
|
|
|
*
|
2012-04-25 07:47:10 +00:00
|
|
|
* The values are unboxed and ready to be used. The similar function
|
|
|
|
* gst_object_get_g_value_array() returns the array as #GValues and is
|
|
|
|
* better suites for bindings.
|
|
|
|
*
|
2011-12-06 07:35:57 +00:00
|
|
|
* Returns: %TRUE if the given array could be filled, %FALSE otherwise
|
2011-11-04 10:34:11 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2011-12-06 07:35:57 +00:00
|
|
|
gst_object_get_value_array (GstObject * object, const gchar * property_name,
|
|
|
|
GstClockTime timestamp, GstClockTime interval, guint n_values,
|
2012-04-25 07:47:10 +00:00
|
|
|
gpointer values)
|
2011-11-04 10:34:11 +00:00
|
|
|
{
|
2011-11-10 17:37:28 +00:00
|
|
|
gboolean res = FALSE;
|
2011-12-20 21:36:18 +00:00
|
|
|
GstControlBinding *binding;
|
2011-11-10 17:37:28 +00:00
|
|
|
|
2011-11-04 10:34:11 +00:00
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
2011-12-06 07:35:57 +00:00
|
|
|
g_return_val_if_fail (property_name, FALSE);
|
2011-11-04 10:34:11 +00:00
|
|
|
g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), FALSE);
|
2011-12-06 07:35:57 +00:00
|
|
|
g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (interval), FALSE);
|
|
|
|
g_return_val_if_fail (values, FALSE);
|
2011-11-04 10:34:11 +00:00
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
GST_OBJECT_LOCK (object);
|
2011-12-20 21:36:18 +00:00
|
|
|
if ((binding = gst_object_find_control_binding (object, property_name))) {
|
2011-12-22 22:48:30 +00:00
|
|
|
res = gst_control_binding_get_value_array (binding, timestamp, interval,
|
|
|
|
n_values, values);
|
2011-11-10 17:37:28 +00:00
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
return res;
|
2011-11-04 10:34:11 +00:00
|
|
|
}
|
|
|
|
|
2012-04-25 07:47:10 +00:00
|
|
|
/**
|
|
|
|
* gst_object_get_g_value_array:
|
|
|
|
* @object: the object that has controlled properties
|
|
|
|
* @property_name: the name of the property to get
|
|
|
|
* @timestamp: the time that should be processed
|
|
|
|
* @interval: the time spacing between subsequent values
|
|
|
|
* @n_values: the number of values
|
|
|
|
* @values: array to put control-values in
|
|
|
|
*
|
|
|
|
* Gets a number of #GValues for the given controlled property starting at the
|
|
|
|
* requested time. The array @values need to hold enough space for @n_values of
|
|
|
|
* #GValue.
|
|
|
|
*
|
|
|
|
* This function is useful if one wants to e.g. draw a graph of the control
|
|
|
|
* curve or apply a control curve sample by sample.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the given array could be filled, %FALSE otherwise
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_object_get_g_value_array (GstObject * object, const gchar * property_name,
|
|
|
|
GstClockTime timestamp, GstClockTime interval, guint n_values,
|
|
|
|
GValue * values)
|
|
|
|
{
|
|
|
|
gboolean res = FALSE;
|
|
|
|
GstControlBinding *binding;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
|
|
|
g_return_val_if_fail (property_name, FALSE);
|
|
|
|
g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), FALSE);
|
|
|
|
g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (interval), FALSE);
|
|
|
|
g_return_val_if_fail (values, FALSE);
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
if ((binding = gst_object_find_control_binding (object, property_name))) {
|
|
|
|
res = gst_control_binding_get_g_value_array (binding, timestamp, interval,
|
|
|
|
n_values, values);
|
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-12-20 21:36:18 +00:00
|
|
|
|
2011-11-04 10:34:11 +00:00
|
|
|
/**
|
|
|
|
* gst_object_get_control_rate:
|
|
|
|
* @object: the object that has controlled properties
|
|
|
|
*
|
|
|
|
* Obtain the control-rate for this @object. Audio processing #GstElement
|
|
|
|
* objects will use this rate to sub-divide their processing loop and call
|
|
|
|
* gst_object_sync_values() inbetween. The length of the processing segment
|
|
|
|
* should be up to @control-rate nanoseconds.
|
|
|
|
*
|
|
|
|
* If the @object is not under property control, this will return
|
|
|
|
* %GST_CLOCK_TIME_NONE. This allows the element to avoid the sub-dividing.
|
|
|
|
*
|
|
|
|
* The control-rate is not expected to change if the element is in
|
|
|
|
* %GST_STATE_PAUSED or %GST_STATE_PLAYING.
|
|
|
|
*
|
|
|
|
* Returns: the control rate in nanoseconds
|
|
|
|
*/
|
|
|
|
GstClockTime
|
|
|
|
gst_object_get_control_rate (GstObject * object)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_IS_OBJECT (object), FALSE);
|
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
return object->control_rate;
|
2011-11-04 10:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_object_set_control_rate:
|
|
|
|
* @object: the object that has controlled properties
|
|
|
|
* @control_rate: the new control-rate in nanoseconds.
|
|
|
|
*
|
|
|
|
* Change the control-rate for this @object. Audio processing #GstElement
|
|
|
|
* objects will use this rate to sub-divide their processing loop and call
|
|
|
|
* gst_object_sync_values() inbetween. The length of the processing segment
|
|
|
|
* should be up to @control-rate nanoseconds.
|
|
|
|
*
|
|
|
|
* The control-rate should not change if the element is in %GST_STATE_PAUSED or
|
|
|
|
* %GST_STATE_PLAYING.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_object_set_control_rate (GstObject * object, GstClockTime control_rate)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_OBJECT (object));
|
|
|
|
|
2011-11-10 17:37:28 +00:00
|
|
|
object->control_rate = control_rate;
|
2011-11-04 10:34:11 +00:00
|
|
|
}
|