mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
doc: Fix annoation for GstMiniObject
Replacing reprecated "Ref Func:", "Unref Fun:" etc. comment block with appropriate (ref-func name) etc. annotation.
This commit is contained in:
parent
b09a7bb5af
commit
54f6540f16
1 changed files with 1 additions and 5 deletions
|
@ -185,7 +185,7 @@ typedef enum {
|
|||
#define GST_MINI_OBJECT_REFCOUNT_VALUE(obj) (g_atomic_int_get (&(GST_MINI_OBJECT_CAST(obj))->refcount))
|
||||
|
||||
/**
|
||||
* GstMiniObject:
|
||||
* GstMiniObject: (ref-func gst_mini_object_ref) (unref-func gst_mini_object_unref) (set-value-func g_value_set_boxed) (get-value-func g_value_get_boxed)
|
||||
* @type: the GType of the object
|
||||
* @refcount: atomic refcount
|
||||
* @lockstate: atomic state of the locks
|
||||
|
@ -195,10 +195,6 @@ typedef enum {
|
|||
* @free: the free function
|
||||
*
|
||||
* Base class for refcounted lightweight objects.
|
||||
* Ref Func: gst_mini_object_ref
|
||||
* Unref Func: gst_mini_object_unref
|
||||
* Set Value Func: g_value_set_boxed
|
||||
* Get Value Func: g_value_get_boxed
|
||||
*/
|
||||
struct _GstMiniObject {
|
||||
GType type;
|
||||
|
|
Loading…
Reference in a new issue