mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 23:22:54 +00:00
gst: Documentation fixes
* Fix copy-paste error for GstParamSpecArray documentation * Use proper field name for tracer utils documentation
This commit is contained in:
parent
09791e859c
commit
f5b962cd0d
2 changed files with 6 additions and 7 deletions
|
@ -118,10 +118,9 @@ struct _GstParamSpecFraction {
|
|||
/**
|
||||
* GstParamSpecArray:
|
||||
* @parent_instance: super class
|
||||
* @value_array: the array of values
|
||||
* @element_spec: the #GParamSpec of the type of values in the array
|
||||
*
|
||||
* A GParamSpec derived structure that contains the meta data for fractional
|
||||
* properties.
|
||||
* A GParamSpec derived structure for arrays of values.
|
||||
*/
|
||||
struct _GstParamSpecArray {
|
||||
GParamSpec parent_instance;
|
||||
|
|
|
@ -600,7 +600,7 @@ typedef void (*GstTracerHookMiniObjectDestroyed) (GObject *self, GstClockTime ts
|
|||
* @self: the tracer instance
|
||||
* @ts: the current timestamp
|
||||
* @object: the object being unreffed
|
||||
* @refcount: the new refcount after unrefing @object
|
||||
* @new_refcount: the new refcount after unrefing @object
|
||||
*
|
||||
* Hook called when a #GstObject is being unreffed named
|
||||
* "object-unreffed"
|
||||
|
@ -617,7 +617,7 @@ typedef void (*GstTracerHookObjectUnreffed) (GObject *self, GstClockTime ts,
|
|||
* @self: the tracer instance
|
||||
* @ts: the current timestamp
|
||||
* @object: the object being reffed
|
||||
* @refcount: the new refcount after refing @object
|
||||
* @new_refcount: the new refcount after refing @object
|
||||
*
|
||||
* Hook called when a #GstObject is being reffed named
|
||||
* "object-reffed".
|
||||
|
@ -634,7 +634,7 @@ typedef void (*GstTracerHookObjectReffed) (GObject *self, GstClockTime ts,
|
|||
* @self: the tracer instance
|
||||
* @ts: the current timestamp
|
||||
* @object: the mini object being unreffed
|
||||
* @refcount: the new refcount after unrefing @object
|
||||
* @new_refcount: the new refcount after unrefing @object
|
||||
*
|
||||
* Hook called when a #GstMiniObject is being unreffed named
|
||||
* "mini-object-unreffed".
|
||||
|
@ -651,7 +651,7 @@ typedef void (*GstTracerHookMiniObjectUnreffed) (GObject *self, GstClockTime ts,
|
|||
* @self: the tracer instance
|
||||
* @ts: the current timestamp
|
||||
* @object: the mini object being reffed
|
||||
* @refcount: the new refcount after refing @object
|
||||
* @new_refcount: the new refcount after refing @object
|
||||
*
|
||||
* Hook called when a #GstMiniObject is being reffed named
|
||||
* "mini-object-reffed".
|
||||
|
|
Loading…
Reference in a new issue