gst: Documentation fixes

* Fix copy-paste error for GstParamSpecArray documentation
* Use proper field name for tracer utils documentation
This commit is contained in:
Edward Hervey 2018-04-02 12:42:30 +02:00 committed by Edward Hervey
parent 09791e859c
commit f5b962cd0d
2 changed files with 6 additions and 7 deletions

View file

@ -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;

View file

@ -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".