From: Nicolas Dufresne Date: Sun, 14 Jun 2015 15:22:36 +0000 (-0400) Subject: doc: Include and fix GstControlPoint X-Git-Tag: 1.6.1~195 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80279df2a13dcdd23e45431df9ce629367ab933e;p=platform%2Fupstream%2Fgstreamer.git doc: Include and fix GstControlPoint --- diff --git a/docs/libs/gstreamer-libs-sections.txt b/docs/libs/gstreamer-libs-sections.txt index 3ace1b78c1..4182efe11b 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 cb92cd938f..b661da9ba9 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 ... */