|
| void | reference () const |
| | Increment the reference count for this object.
|
| void | unreference () const |
| | Decrement the reference count for this object.
|
| GstMiniObject* | gobj () |
| | Provides access to the underlying C instance.
|
| const GstMiniObject* | gobj () const |
| | Provides access to the underlying C instance.
|
| GstMiniObject* | gobj_copy () const |
| | Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
|
| | MiniObject ()=delete |
| | MiniObject (const MiniObject&)=delete |
| MiniObject& | operator= (const MiniObject&)=delete |
| | ~MiniObject () |
| guint | get_flags () const |
| void | set_flags (const guint& value) |
| gint | get_refcount () const |
| gint | get_lockstate () const |
| bool | lock (LockFlags flags) |
| | Lock the mini-object with the specified access mode in flags.
|
| void | unlock (LockFlags flags) |
| | Unlock the mini-object with the specified access mode in flags.
|
| bool | is_writable () const |
| | If mini_object has the LOCKABLE flag set, check if the current EXCLUSIVE lock on object is the only one, this means that changes to the object will not be visible to any other object.
|
| Glib::RefPtr< MiniObject > | create_writable () |
| | Checks if a mini-object is writable.
|
| void | set_qdata (GQuark quark, QuarkData*data) |
| | This sets an opaque, named pointer on a miniobject.
|
| QuarkData* | get_qdata (GQuark quark) const |
| | This function gets back user data pointers stored via set_qdata().
|
| QuarkData* | steal_qdata (GQuark quark) |
| | This function gets back user data pointers stored via set_qdata() and removes the data from object without invoking its destroy() function (if any was set).
|
| void | add_finalize_notifier (const SlotFinalizer& slot) |
| | Adds notifier when mini object is finalized.
|
| void | remove_finalize_notifier () |
| | Remove finalize notifier.
|
This is a base class for some gstreamermm objects.
It is similar to Glib::Object but has no GObject property or signal support.
| bool Gst::MiniObject::is_writable |
( |
| ) |
const |
If mini_object has the LOCKABLE flag set, check if the current EXCLUSIVE lock on object is the only one, this means that changes to the object will not be visible to any other object.
If the LOCKABLE flag is not set, check if the refcount of mini_object is exactly 1, meaning that no other reference exists to the object and that the object is therefore writable.
Modification of a mini-object should only be done after verifying that it is writable.
- Returns
- true if the object is writable.
| void Gst::MiniObject::set_qdata |
( |
GQuark | quark, |
|
|
QuarkData* | data ) |
This sets an opaque, named pointer on a miniobject.
The name is specified through a #GQuark (retrived e.g. via g_quark_from_static_string()), and the pointer can be gotten back with get_qdata(). Setting a previously set user data pointer, overrides (frees) the old pointer set, using NULL as pointer essentially removes the data stored.
- Parameters
-
| quark | a GQuark, naming the user data pointer. |
| data | an opaque user data pointer. |