gst/gstobject.*: Documentation fixes.

Original commit message from CVS:
* gst/gstobject.c: (gst_object_class_init):
* gst/gstobject.h:
Documentation fixes.
This commit is contained in:
Wim Taymans 2005-11-09 17:32:10 +00:00
parent acf209c871
commit 8eb4781bdd
3 changed files with 128 additions and 109 deletions

View file

@ -1,3 +1,9 @@
2005-11-09 Wim Taymans <wim@fluendo.com>
* gst/gstobject.c: (gst_object_class_init):
* gst/gstobject.h:
Documentation fixes.
2005-11-09 Edward Hervey <edward@fluendo.com> 2005-11-09 Edward Hervey <edward@fluendo.com>
* gst/gsttypefindfactory.c: * gst/gsttypefindfactory.c:

View file

@ -25,27 +25,26 @@
* SECTION:gstobject * SECTION:gstobject
* @short_description: Base class for the GStreamer object hierarchy * @short_description: Base class for the GStreamer object hierarchy
* *
* GstObject provides a root for the object hierarchy tree filed in by the * #GstObject provides a root for the object hierarchy tree filed in by the
* GST library. It is currently a thin wrapper on top of * GStreamer library. It is currently a thin wrapper on top of
* #GObject. It is an abstract class that is not very usable on its own. * #GObject. It is an abstract class that is not very usable on its own.
* *
* GstObject gives us basic refcounting, parenting functionality and locking. * #GstObject gives us basic refcounting, parenting functionality and locking.
* Most of the function are just extended for special gstreamer needs and can be * Most of the function are just extended for special GStreamer needs and can be
* found under the same name in the base class of GstObject which is GObject * found under the same name in the base class of #GstObject which is #GObject
* (e.g. g_object_ref() becomes gst_object_ref()). * (e.g. g_object_ref() becomes gst_object_ref()).
* *
* The most interesting difference between GstObject and GObject is the * The most interesting difference between #GstObject and #GObject is the
* "floating" reference count. A GObject is created with a reference count of * "floating" reference count. A #GObject is created with a reference count of
* 1, owned by the creator of the GObject. (The owner of a reference is the * 1, owned by the creator of the #GObject. (The owner of a reference is the
* code section that has the right to call gst_object_unref() in order to * code section that has the right to call gst_object_unref() in order to
* remove that reference.) A GstObject is created with a reference count of 1 * remove that reference.) A #GstObject is created with a reference count of 1
* also, but it isn't owned by anyone; calling gst_object_unref() on the * also, but it isn't owned by anyone; Instead, the initial reference count
* newly-created GtkObject is incorrect. Instead, the initial reference count * of a #GstObject is "floating". The floating reference can be removed by
* of a GstObject is "floating". The floating reference can be removed by
* anyone at any time, by calling gst_object_sink(). gst_object_sink() does * anyone at any time, by calling gst_object_sink(). gst_object_sink() does
* nothing if an object is already sunk (has no floating reference). * nothing if an object is already sunk (has no floating reference).
* *
* When you add a GstElement to its parent container, the parent container will * When you add a #GstElement to its parent container, the parent container will
* do this: * do this:
* <informalexample> * <informalexample>
* <programlisting> * <programlisting>
@ -58,7 +57,8 @@
* reference. * reference.
* *
* The purpose of the floating reference is to keep the child element alive * The purpose of the floating reference is to keep the child element alive
* until you add it to a parent container: * until you add it to a parent container, which then manages the lifetime of
* the object itself:
* <informalexample> * <informalexample>
* <programlisting> * <programlisting>
* element = gst_element_factory_make (factoryname, name); * element = gst_element_factory_make (factoryname, name);
@ -69,12 +69,18 @@
* </informalexample> * </informalexample>
* *
* Another effect of this is, that calling gst_object_unref() on a bin object, * Another effect of this is, that calling gst_object_unref() on a bin object,
* will also destoy all the GstElement objects in it. The same is true for * will also destoy all the #GstElement objects in it. The same is true for
* calling gst_bin_remove(). * calling gst_bin_remove().
* *
* In contrast to GObject instances GstObject add a name property. The functions * Special care has to be taken for all methods that gst_object_sink() an object
* since if the caller of those functions had a floating reference to the object,
* the object reference is now invalid.
*
* In contrast to #GObject instances, #GstObject adds a name property. The functions
* gst_object_set_name() and gst_object_get_name() are used to set/get the name * gst_object_set_name() and gst_object_get_name() are used to set/get the name
* of the object. * of the object.
*
* Last reviewed on 2005-11-09 (0.9.4)
*/ */
#include "gst_private.h" #include "gst_private.h"
@ -226,10 +232,10 @@ gst_object_class_init (GstObjectClass * klass)
/** /**
* GstObject::parent-set: * GstObject::parent-set:
* @gstobject: the object which received the signal. * @gstobject: a #GstObject
* @parent: the new parent * @parent: the new parent
* *
* Is emitted when the parent of an object is set. * Emitted when the parent of an object is set.
*/ */
gst_object_signals[PARENT_SET] = gst_object_signals[PARENT_SET] =
g_signal_new ("parent-set", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, g_signal_new ("parent-set", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
@ -238,10 +244,10 @@ gst_object_class_init (GstObjectClass * klass)
/** /**
* GstObject::parent-unset: * GstObject::parent-unset:
* @gstobject: the object which received the signal. * @gstobject: a #GstObject
* @parent: the old parent * @parent: the old parent
* *
* Is emitted when the parent of an object is unset. * Emitted when the parent of an object is unset.
*/ */
gst_object_signals[PARENT_UNSET] = gst_object_signals[PARENT_UNSET] =
g_signal_new ("parent-unset", G_TYPE_FROM_CLASS (klass), g_signal_new ("parent-unset", G_TYPE_FROM_CLASS (klass),
@ -251,10 +257,10 @@ gst_object_class_init (GstObjectClass * klass)
#ifndef GST_DISABLE_LOADSAVE_REGISTRY #ifndef GST_DISABLE_LOADSAVE_REGISTRY
/** /**
* GstObject::object-saved: * GstObject::object-saved:
* @gstobject: the object which received the signal. * @gstobject: a #GstObject
* @xml_node: the xmlNodePtr of the parent node * @xml_node: the xmlNodePtr of the parent node
* *
* Is trigered whenever a new object is saved to XML. You can connect to this * Trigered whenever a new object is saved to XML. You can connect to this
* signal to insert custom XML tags into the core XML. * signal to insert custom XML tags into the core XML.
*/ */
/* FIXME This should be the GType of xmlNodePtr instead of G_TYPE_POINTER /* FIXME This should be the GType of xmlNodePtr instead of G_TYPE_POINTER
@ -270,7 +276,7 @@ gst_object_class_init (GstObjectClass * klass)
/** /**
* GstObject::deep-notify: * GstObject::deep-notify:
* @gstobject: the object which received the signal. * @gstobject: a #GstObject
* @prop_object: the object that originated the signal * @prop_object: the object that originated the signal
* @prop: the property that changed * @prop: the property that changed
* *
@ -323,17 +329,17 @@ gst_object_init (GTypeInstance * instance, gpointer g_class)
/** /**
* gst_object_ref: * gst_object_ref:
* @object: GstObject to reference * @object: a #GstObject to reference
* *
* Increments the refence count on the object. This function * Increments the refence count on @object. This function
* does not take the lock on the object because it relies on * does not take the lock on @object because it relies on
* atomic refcounting. * atomic refcounting.
* *
* This object returns the input parameter to ease writing * This object returns the input parameter to ease writing
* constructs like : * constructs like :
* result = gst_object_ref (object->parent); * result = gst_object_ref (object->parent);
* *
* Returns: A pointer to the object * Returns: A pointer to @object
*/ */
gpointer gpointer
gst_object_ref (gpointer object) gst_object_ref (gpointer object)
@ -365,11 +371,11 @@ gst_object_ref (gpointer object)
/** /**
* gst_object_unref: * gst_object_unref:
* @object: GstObject to unreference * @object: a #GstObject to unreference
* *
* Decrements the refence count on the object. If reference count hits * Decrements the refence count on @object. If reference count hits
* zero, destroy the object. This function does not take the lock * zero, destroy @object. This function does not take the lock
* on the object as it relies on atomic refcounting. * on @object as it relies on atomic refcounting.
* *
* The unref method should never be called with the LOCK held since * The unref method should never be called with the LOCK held since
* this might deadlock the dispose function. * this might deadlock the dispose function.
@ -411,14 +417,20 @@ gst_object_unref (gpointer object)
/** /**
* gst_object_sink: * gst_object_sink:
* @object: GstObject to sink * @object: a #GstObject to sink
* *
* Removes floating reference on an object. Any newly created object has * If @object was floating, the #GST_OBJECT_FLOATING flag is removed
* a refcount of 1 and is FLOATING. This function should be used when * and @object is unreffed. When @object was not floating,
* creating a new object to symbolically 'take ownership' of the object. * this function does nothing.
* Use #gst_object_set_parent to have this done for you.
* *
* MT safe. This function grabs and releases the object lock. * Any newly created object has a refcount of 1 and is floating.
* This function should be used when creating a new object to
* symbolically 'take ownership' of @object. This done by first doing a
* gst_object_ref() to keep a reference to @object and then gst_object_sink()
* to remove and unref any floating references to @object.
* Use gst_object_set_parent() to have this done for you.
*
* MT safe. This function grabs and releases @object lock.
*/ */
void void
gst_object_sink (gpointer object) gst_object_sink (gpointer object)
@ -439,16 +451,16 @@ gst_object_sink (gpointer object)
/** /**
* gst_object_replace: * gst_object_replace:
* @oldobj: pointer to place of old GstObject * @oldobj: pointer to a place of a #GstObject to replace
* @newobj: new GstObject * @newobj: a new #GstObject
* *
* Unrefs the object pointer to by oldobj, refs the newobj and * Unrefs the #GstObject pointed to by @oldobj, refs @newobj and
* puts the newobj in *oldobj. Be carefull when calling this * puts @newobj in *@oldobj. Be carefull when calling this
* function, it does not take any locks. You might want to lock * function, it does not take any locks. You might want to lock
* the object owning the oldobj pointer before calling this * the object owning @oldobj pointer before calling this
* function. * function.
* *
* Make sure not to LOCK the oldobj because it might be unreffed * Make sure not to LOCK @oldobj because it might be unreffed
* which could cause a deadlock when it is disposed. * which could cause a deadlock when it is disposed.
*/ */
void void
@ -527,8 +539,8 @@ gst_object_finalize (GObject * object)
* top-level bin to catch property-change notifications for all contained * top-level bin to catch property-change notifications for all contained
* elements. * elements.
* *
* This function is not MT safe in glib so we need to lock it with a * This function is not MT safe in glib < 2.8 so we need to lock it with a
* classwide mutex. * classwide mutex in that case.
* *
* MT safe. * MT safe.
*/ */
@ -605,13 +617,13 @@ gst_object_dispatch_properties_changed (GObject * object,
* @excluded_props: a set of user-specified properties to exclude or * @excluded_props: a set of user-specified properties to exclude or
* NULL to show all changes. * NULL to show all changes.
* *
* A default deep_notify signal callback for an element. The user data * A default deep_notify signal callback for an object. The user data
* should contain a pointer to an array of strings that should be excluded * 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 * from the notify. The default handler will print the new value of the property
* using g_print. * using g_print.
* *
* MT safe. This function grabs and releases the object's LOCK or getting the * MT safe. This function grabs and releases @object's LOCK for getting its
* path string of the object. * path string.
*/ */
void void
gst_object_default_deep_notify (GObject * object, GstObject * orig, gst_object_default_deep_notify (GObject * object, GstObject * orig,
@ -692,18 +704,19 @@ gst_object_set_name_default (GstObject * object, const gchar * type_name)
/** /**
* gst_object_set_name: * gst_object_set_name:
* @object: a #GstObject to set the name of * @object: a #GstObject
* @name: new name of object * @name: new name of object
* *
* Sets the name of the object, or gives the object a guaranteed unique * Sets the name of @object, or gives @object a guaranteed unique
* name (if @name is NULL). * name (if @name is NULL).
* This function makes a copy of the provided name, so the caller * This function makes a copy of the provided name, so the caller
* retains ownership of the name it sent. * retains ownership of the name it sent.
* *
* Returns: TRUE if the name could be set. Objects that have * Returns: TRUE if the name could be set. Since Objects that have
* a parent cannot be renamed. * a parent cannot be renamed, this function returns FALSE in those
* cases.
* *
* MT safe. This function grabs and releases the object's LOCK. * MT safe. This function grabs and releases @object's LOCK.
*/ */
gboolean gboolean
gst_object_set_name (GstObject * object, const gchar * name) gst_object_set_name (GstObject * object, const gchar * name)
@ -739,16 +752,16 @@ had_parent:
/** /**
* gst_object_get_name: * gst_object_get_name:
* @object: a #GstObject to get the name of * @object: a #GstObject
* *
* Returns a copy of the name of the object. * Returns a copy of the name of @object.
* Caller should g_free() the return value after usage. * Caller should g_free() the return value after usage.
* For a nameless object, this returns NULL, which you can safely g_free() * For a nameless object, this returns NULL, which you can safely g_free()
* as well. * as well.
* *
* Returns: the name of the object. g_free() after usage. * Returns: the name of @object. g_free() after usage.
* *
* MT safe. This function grabs and releases the object's LOCK. * MT safe. This function grabs and releases @object's LOCK.
*/ */
gchar * gchar *
gst_object_get_name (GstObject * object) gst_object_get_name (GstObject * object)
@ -766,14 +779,14 @@ gst_object_get_name (GstObject * object)
/** /**
* gst_object_set_name_prefix: * gst_object_set_name_prefix:
* @object: a #GstObject to set the name prefix of * @object: a #GstObject
* @name_prefix: new name prefix of object * @name_prefix: new name prefix of @object
* *
* Sets the name prefix of the object. * Sets the name prefix of @object to @name_prefix.
* This function makes a copy of the provided name prefix, so the caller * This function makes a copy of the provided name prefix, so the caller
* retains ownership of the name prefix it sent. * retains ownership of the name prefix it sent.
* *
* MT safe. This function grabs and releases the object's LOCK. * MT safe. This function grabs and releases @object's LOCK.
*/ */
void void
gst_object_set_name_prefix (GstObject * object, const gchar * name_prefix) gst_object_set_name_prefix (GstObject * object, const gchar * name_prefix)
@ -788,16 +801,16 @@ gst_object_set_name_prefix (GstObject * object, const gchar * name_prefix)
/** /**
* gst_object_get_name_prefix: * gst_object_get_name_prefix:
* @object: a #GstObject to get the name prefix of * @object: a #GstObject
* *
* Returns a copy of the name prefix of the object. * Returns a copy of the name prefix of @object.
* Caller should g_free() the return value after usage. * Caller should g_free() the return value after usage.
* For a prefixless object, this returns NULL, which you can safely g_free() * For a prefixless object, this returns NULL, which you can safely g_free()
* as well. * as well.
* *
* Returns: the name prefix of the object. g_free() after usage. * Returns: the name prefix of @object. g_free() after usage.
* *
* MT safe. This function grabs and releases the object's LOCK. * MT safe. This function grabs and releases @object's LOCK.
*/ */
gchar * gchar *
gst_object_get_name_prefix (GstObject * object) gst_object_get_name_prefix (GstObject * object)
@ -815,19 +828,19 @@ gst_object_get_name_prefix (GstObject * object)
/** /**
* gst_object_set_parent: * gst_object_set_parent:
* @object: GstObject to set parent of * @object: a #GstObject
* @parent: new parent of object * @parent: new parent of object
* *
* Sets the parent of @object. The object's reference count will be incremented, * Sets the parent of @object to @parent. The object's reference count will
* and any floating reference will be removed (see gst_object_sink()). * be incremented, and any floating reference will be removed (see gst_object_sink()).
* *
* Causes the parent-set signal to be emitted. * This function causes the parent-set signal to be emitted when the parent
* was successfully set.
* *
* Returns: TRUE if the parent could be set or FALSE when the object * Returns: TRUE if @parent could be set or FALSE when @object
* already had a parent, the object and parent are the same or wrong * already had a parent or @object and @parent are the same.
* parameters were provided.
* *
* MT safe. Grabs and releases the object's LOCK. * MT safe. Grabs and releases @object's LOCK.
*/ */
gboolean gboolean
gst_object_set_parent (GstObject * object, GstObject * parent) gst_object_set_parent (GstObject * object, GstObject * parent)
@ -870,15 +883,15 @@ had_parent:
/** /**
* gst_object_get_parent: * gst_object_get_parent:
* @object: GstObject to get parent of * @object: a #GstObject
* *
* Returns the parent of @object. This function increases the refcount * Returns the parent of @object. This function increases the refcount
* of the parent object so you should gst_object_unref() it after usage. * of the parent object so you should gst_object_unref() it after usage.
* *
* Returns: parent of the object, this can be NULL if the object has no * Returns: parent of @object, this can be NULL if @object has no
* parent. unref after usage. * parent. unref after usage.
* *
* MT safe. Grabs and releases the object's LOCK. * MT safe. Grabs and releases @object's LOCK.
*/ */
GstObject * GstObject *
gst_object_get_parent (GstObject * object) gst_object_get_parent (GstObject * object)
@ -898,13 +911,12 @@ gst_object_get_parent (GstObject * object)
/** /**
* gst_object_unparent: * gst_object_unparent:
* @object: GstObject to unparent * @object: a #GstObject to unparent
* *
* Clear the parent of @object, removing the associated reference. * Clear the parent of @object, removing the associated reference.
* This function decreases the refcount of the object so the object * This function decreases the refcount of @object.
* might not point to valid memory anymore after calling this function.
* *
* MT safe. Grabs and releases the object's lock. * MT safe. Grabs and releases @object's lock.
*/ */
void void
gst_object_unparent (GstObject * object) gst_object_unparent (GstObject * object)
@ -932,15 +944,15 @@ gst_object_unparent (GstObject * object)
/** /**
* gst_object_has_ancestor: * gst_object_has_ancestor:
* @object: GstObject to check * @object: a #GstObject to check
* @ancestor: GstObject to check as ancestor * @ancestor: a #GstObject to check as ancestor
* *
* Check if @object has an ancestor @ancestor somewhere up in * Check if @object has an ancestor @ancestor somewhere up in
* the hierarchy. * the hierarchy.
* *
* Returns: TRUE if @ancestor is an ancestor of @object. * Returns: TRUE if @ancestor is an ancestor of @object.
* *
* MT safe. Grabs and releases the object's locks. * MT safe. Grabs and releases @object's locks.
*/ */
gboolean gboolean
gst_object_has_ancestor (GstObject * object, GstObject * ancestor) gst_object_has_ancestor (GstObject * object, GstObject * ancestor)
@ -970,10 +982,11 @@ gst_object_has_ancestor (GstObject * object, GstObject * ancestor)
* Checks to see if there is any object named @name in @list. This function * 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 * 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 * provided list with the lock of the owner of the list. This function
* will lock each GstObject in the list to compare the name, so be * will lock each #GstObject in the list to compare the name, so be
* carefull when passing a list with a locked object. * carefull when passing a list with a locked object.
* *
* Returns: TRUE if the name does not appear in the list, FALSE if it does. * Returns: TRUE if a #GstObject named @name does not appear in @list,
* FALSE if it does.
* *
* MT safe. Grabs and releases the LOCK of each object in the list. * MT safe. Grabs and releases the LOCK of each object in the list.
*/ */
@ -1006,10 +1019,10 @@ gst_object_check_uniqueness (GList * list, const gchar * name)
#ifndef GST_DISABLE_LOADSAVE_REGISTRY #ifndef GST_DISABLE_LOADSAVE_REGISTRY
/** /**
* gst_object_save_thyself: * gst_object_save_thyself:
* @object: GstObject to save * @object: a #GstObject to save
* @parent: The parent XML node to save the object into * @parent: The parent XML node to save @object into
* *
* Saves the given object into the parent XML node. * Saves @object into the parent XML node.
* *
* Returns: the new xmlNodePtr with the saved object * Returns: the new xmlNodePtr with the saved object
*/ */
@ -1034,10 +1047,10 @@ gst_object_save_thyself (GstObject * object, xmlNodePtr parent)
/** /**
* gst_object_restore_thyself: * gst_object_restore_thyself:
* @object: GstObject to load into * @object: a #GstObject to load into
* @self: The XML node to load the object from * @self: The XML node to load @object from
* *
* Restores the given object with the data from the parent XML node. * Restores @object with the data from the parent XML node.
*/ */
void void
gst_object_restore_thyself (GstObject * object, xmlNodePtr self) gst_object_restore_thyself (GstObject * object, xmlNodePtr self)
@ -1101,15 +1114,15 @@ gst_object_get_property (GObject * object, guint prop_id,
/** /**
* gst_object_get_path_string: * gst_object_get_path_string:
* @object: GstObject to get the path from * @object: a #GstObject
* *
* Generates a string describing the path of the object in * Generates a string describing the path of @object in
* the object hierarchy. Only useful (or used) for debugging. * the object hierarchy. Only useful (or used) for debugging.
* *
* Returns: a string describing the path of the object. You must * Returns: a string describing the path of @object. You must
* g_free() the string after usage. * g_free() the string after usage.
* *
* MT safe. Grabs and releases the object's LOCK for all objects * MT safe. Grabs and releases the #GstObject's LOCK for all objects
* in the hierarchy. * in the hierarchy.
*/ */
gchar * gchar *
@ -1238,7 +1251,7 @@ gst_signal_object_init (GstSignalObject * object)
/** /**
* gst_class_signal_connect * gst_class_signal_connect
* @klass: the GstObjectClass to attach the signal to * @klass: a #GstObjectClass to attach the signal to
* @name: the name of the signal to attach to * @name: the name of the signal to attach to
* @func: the signal function * @func: the signal function
* @func_data: a pointer to user data * @func_data: a pointer to user data
@ -1257,7 +1270,7 @@ gst_class_signal_connect (GstObjectClass * klass,
#ifndef GST_DISABLE_LOADSAVE_REGISTRY #ifndef GST_DISABLE_LOADSAVE_REGISTRY
/** /**
* gst_class_signal_emit_by_name: * gst_class_signal_emit_by_name:
* @object: the object that sends the signal * @object: a #GstObject that emits the signal
* @name: the name of the signal to emit * @name: the name of the signal to emit
* @self: data for the signal * @self: data for the signal
* *

View file

@ -87,14 +87,14 @@ typedef enum
/** /**
* GST_GET_LOCK: * GST_GET_LOCK:
* @obj: Object to get the mutex of. * @obj: a #GstObject
* *
* Acquire a reference to the mutex of this object. * Acquire a reference to the mutex of this object.
*/ */
#define GST_GET_LOCK(obj) (GST_OBJECT_CAST(obj)->lock) #define GST_GET_LOCK(obj) (GST_OBJECT_CAST(obj)->lock)
/** /**
* GST_LOCK: * GST_LOCK:
* @obj: Object to lock. * @obj: a #GstObject to lock
* *
* This macro will obtain a lock on the object, making serialization possible. * This macro will obtain a lock on the object, making serialization possible.
* It blocks until the lock can be obtained. * It blocks until the lock can be obtained.
@ -102,7 +102,7 @@ typedef enum
#define GST_LOCK(obj) g_mutex_lock(GST_GET_LOCK(obj)) #define GST_LOCK(obj) g_mutex_lock(GST_GET_LOCK(obj))
/** /**
* GST_TRYLOCK: * GST_TRYLOCK:
* @obj: Object to try to get a lock on. * @obj: a #Object.
* *
* This macro will try to obtain a lock on the object, but will return with * This macro will try to obtain a lock on the object, but will return with
* FALSE if it can't get it immediately. * FALSE if it can't get it immediately.
@ -110,7 +110,7 @@ typedef enum
#define GST_TRYLOCK(obj) g_mutex_trylock(GST_GET_LOCK(obj)) #define GST_TRYLOCK(obj) g_mutex_trylock(GST_GET_LOCK(obj))
/** /**
* GST_UNLOCK: * GST_UNLOCK:
* @obj: Object to unlock. * @obj: a #GstObject to unlock.
* *
* This macro releases a lock on the object. * This macro releases a lock on the object.
*/ */
@ -119,14 +119,14 @@ typedef enum
/** /**
* GST_OBJECT_NAME: * GST_OBJECT_NAME:
* @obj: Object to get the name of. * @obj: a #GstObject
* *
* Get the name of this object * Get the name of this object
*/ */
#define GST_OBJECT_NAME(obj) (GST_OBJECT_CAST(obj)->name) #define GST_OBJECT_NAME(obj) (GST_OBJECT_CAST(obj)->name)
/** /**
* GST_OBJECT_PARENT: * GST_OBJECT_PARENT:
* @obj: Object to get the parent of. * @obj: a #GstObject
* *
* Get the parent of this object * Get the parent of this object
*/ */
@ -135,14 +135,14 @@ typedef enum
/** /**
* GST_OBJECT_FLAGS: * GST_OBJECT_FLAGS:
* @obj: Object to return flags for. * @obj: a #GstObject
* *
* This macro returns the entire set of flags for the object. * This macro returns the entire set of flags for the object.
*/ */
#define GST_OBJECT_FLAGS(obj) (GST_OBJECT_CAST (obj)->flags) #define GST_OBJECT_FLAGS(obj) (GST_OBJECT_CAST (obj)->flags)
/** /**
* GST_OBJECT_FLAG_IS_SET: * GST_OBJECT_FLAG_IS_SET:
* @obj: Object to check for flags. * @obj: a #GstObject
* @flag: Flag to check for * @flag: Flag to check for
* *
* This macro checks to see if the given flag is set. * This macro checks to see if the given flag is set.
@ -150,7 +150,7 @@ typedef enum
#define GST_OBJECT_FLAG_IS_SET(obj,flag) ((GST_OBJECT_FLAGS (obj) & (flag)) == (flag)) #define GST_OBJECT_FLAG_IS_SET(obj,flag) ((GST_OBJECT_FLAGS (obj) & (flag)) == (flag))
/** /**
* GST_OBJECT_FLAG_SET: * GST_OBJECT_FLAG_SET:
* @obj: Object to set flag in. * @obj: a #GstObject
* @flag: Flag to set * @flag: Flag to set
* *
* This macro sets the given bits. * This macro sets the given bits.
@ -158,7 +158,7 @@ typedef enum
#define GST_OBJECT_FLAG_SET(obj,flag) (GST_OBJECT_FLAGS (obj) |= (flag)) #define GST_OBJECT_FLAG_SET(obj,flag) (GST_OBJECT_FLAGS (obj) |= (flag))
/** /**
* GST_OBJECT_FLAG_UNSET: * GST_OBJECT_FLAG_UNSET:
* @obj: Object to unset flag in. * @obj: a #GstObject
* @flag: Flag to set * @flag: Flag to set
* *
* This macro usets the given bits. * This macro usets the given bits.
@ -168,14 +168,14 @@ typedef enum
/** /**
* GST_OBJECT_IS_DISPOSING: * GST_OBJECT_IS_DISPOSING:
* @obj: Object to check * @obj: a #GstObject
* *
* Check if the given object is beeing destroyed. * Check if the given object is beeing destroyed.
*/ */
#define GST_OBJECT_IS_DISPOSING(obj) (GST_OBJECT_FLAG_IS_SET (obj, GST_OBJECT_DISPOSING)) #define GST_OBJECT_IS_DISPOSING(obj) (GST_OBJECT_FLAG_IS_SET (obj, GST_OBJECT_DISPOSING))
/** /**
* GST_OBJECT_IS_FLOATING: * GST_OBJECT_IS_FLOATING:
* @obj:Object to check * @obj: a #GstObject
* *
* Check if the given object is floating (has no owner). * Check if the given object is floating (has no owner).
*/ */