mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
docs: enable docs for GstObjectClass to fix links
This commit is contained in:
parent
f1d39627f6
commit
309187c2ce
2 changed files with 11 additions and 3 deletions
|
@ -1262,6 +1262,7 @@ gst_param_spec_mini_object_get_type
|
|||
<FILE>gstobject</FILE>
|
||||
<TITLE>GstObject</TITLE>
|
||||
GstObject
|
||||
GstObjectClass
|
||||
GstObjectFlags
|
||||
GST_OBJECT_FLAGS
|
||||
GST_OBJECT_FLAG_IS_SET
|
||||
|
@ -1304,7 +1305,6 @@ gst_object_get_path_string
|
|||
gst_class_signal_connect
|
||||
gst_class_signal_emit_by_name
|
||||
<SUBSECTION Standard>
|
||||
GstObjectClass
|
||||
GST_OBJECT
|
||||
GST_IS_OBJECT
|
||||
GST_OBJECT_CLASS
|
||||
|
|
|
@ -239,12 +239,20 @@ struct _GstObject {
|
|||
*/
|
||||
#define GST_CLASS_UNLOCK(obj) (g_static_rec_mutex_unlock(GST_CLASS_GET_LOCK(obj)))
|
||||
|
||||
/*
|
||||
/**
|
||||
* GstObjectClass:
|
||||
*
|
||||
* @parent_class: parent
|
||||
* @path_string_separator: separator used by gst_object_get_path_string()
|
||||
* @signal_object: is used to signal to the whole class
|
||||
* @lock: class lock to be used with GST_CLASS_GET_LOCK(), GST_CLASS_LOCK(), GST_CLASS_UNLOCK() and others.
|
||||
* @parent_set: default signal handler
|
||||
* @parent_unset: default signal handler
|
||||
* @object_saved: default signal handler
|
||||
* @deep_notify: default signal handler
|
||||
* @save_thyself: xml serialisation
|
||||
* @restore_thyself: xml de-serialisation
|
||||
*
|
||||
* GStreamer base object class.
|
||||
*/
|
||||
struct _GstObjectClass {
|
||||
GObjectClass parent_class;
|
||||
|
|
Loading…
Reference in a new issue