From 80279df2a13dcdd23e45431df9ce629367ab933e Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Sun, 14 Jun 2015 11:22:36 -0400 Subject: [PATCH] doc: Include and fix GstControlPoint --- docs/libs/gstreamer-libs-sections.txt | 1 + libs/gst/controller/gsttimedvaluecontrolsource.h | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/libs/gstreamer-libs-sections.txt b/docs/libs/gstreamer-libs-sections.txt index 3ace1b7..4182efe 100644 --- a/docs/libs/gstreamer-libs-sections.txt +++ b/docs/libs/gstreamer-libs-sections.txt @@ -58,6 +58,7 @@ gst_direct_control_binding_get_type GstTimedValueControlSource libs/controller/gsttimedvaluecontrolsource.h 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 diff --git a/libs/gst/controller/gsttimedvaluecontrolsource.h b/libs/gst/controller/gsttimedvaluecontrolsource.h index cb92cd9..b661da9 100644 --- a/libs/gst/controller/gsttimedvaluecontrolsource.h +++ b/libs/gst/controller/gsttimedvaluecontrolsource.h @@ -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 ... */ -- 2.7.4