doc: Include and fix GstControlPoint
authorNicolas Dufresne <nicolas.dufresne@collabora.co.uk>
Sun, 14 Jun 2015 15:22:36 +0000 (11:22 -0400)
committerNicolas Dufresne <nicolas.dufresne@collabora.co.uk>
Sun, 14 Jun 2015 15:22:36 +0000 (11:22 -0400)
docs/libs/gstreamer-libs-sections.txt
libs/gst/controller/gsttimedvaluecontrolsource.h

index 3ace1b7..4182efe 100644 (file)
@@ -58,6 +58,7 @@ gst_direct_control_binding_get_type
 <TITLE>GstTimedValueControlSource</TITLE>
 <INCLUDE>libs/controller/gsttimedvaluecontrolsource.h</INCLUDE>
 GstTimedValueControlSource
+GstControlPoint
 gst_timed_value_control_source_find_control_point_iter
 gst_timed_value_control_source_set
 gst_timed_value_control_source_set_from_list
index cb92cd9..b661da9 100644 (file)
@@ -52,6 +52,8 @@ typedef struct _GstControlPoint GstControlPoint;
 
 /**
  * GstControlPoint:
+ * @timestamp: timestamp of the value change
+ * @value: the new value
  *
  * a internal structure for value+time and various temporary
  * values used for interpolation. This "inherits" from
@@ -60,10 +62,10 @@ typedef struct _GstControlPoint GstControlPoint;
 struct _GstControlPoint
 {
   /* fields from GstTimedValue. DO NOT CHANGE! */
-  GstClockTime timestamp;       /* timestamp of the value change */
-  gdouble value;                /* the new value */
+  GstClockTime timestamp;
+  gdouble value;
 
-  /* internal fields */
+  /*< private >*/
 
   /* Caches for the interpolators */
   /* FIXME: we should not have this here already ... */