diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2015-09-28 16:19:40 +0200 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2015-09-28 16:23:41 +0200 |
commit | d4f81fb4e62d34a4c1dabc65b23ede7ce7694c63 (patch) | |
tree | 6d2e221c808f1307d63413c0c66af68c9aa4d5c1 /libs/gst/controller | |
parent | d5ded1588920c4471eefe055d09095d9e5e989b5 (diff) |
controller: add the missing abi padding
While this technically is an abi break, we decided to do this:
1) the struct is documented to be internal
2) the struct is alloced and freed inside the library
3) there are no public methods that receive or return instances
4) the only code known to use this struct are classes containd here
Diffstat (limited to 'libs/gst/controller')
-rw-r--r-- | libs/gst/controller/gsttimedvaluecontrolsource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/gst/controller/gsttimedvaluecontrolsource.h b/libs/gst/controller/gsttimedvaluecontrolsource.h index 7bc901e9e..d161ecbf8 100644 --- a/libs/gst/controller/gsttimedvaluecontrolsource.h +++ b/libs/gst/controller/gsttimedvaluecontrolsource.h @@ -55,7 +55,7 @@ typedef struct _GstControlPoint GstControlPoint; * @timestamp: timestamp of the value change * @value: the new value * - * a internal structure for value+time and various temporary + * An internal structure for value+time and various temporary * values used for interpolation. This "inherits" from * GstTimedValue. */ @@ -77,8 +77,8 @@ struct _GstControlPoint struct { gdouble c1s, c2s, c3s; } cubic_mono; + gpointer _gst_reserved[GST_PADDING]; } cache; - }; GType gst_control_point_get_type (void); |