controller: assorted minor introspection fixes

This commit is contained in:
Evan Nemerson 2012-06-19 19:55:02 -07:00
parent 74c74fd119
commit 9b3d8523d2
3 changed files with 10 additions and 8 deletions

View file

@ -478,7 +478,7 @@ gst_direct_control_binding_get_g_value_array (GstControlBinding * _self,
* gst_direct_control_binding_new: * gst_direct_control_binding_new:
* @object: the object of the property * @object: the object of the property
* @property_name: the property-name to attach the control source * @property_name: the property-name to attach the control source
* @csource: the control source * @cs: the control source
* *
* Create a new control-binding that attaches the #GstControlSource to the * Create a new control-binding that attaches the #GstControlSource to the
* #GObject property. * #GObject property.

View file

@ -556,7 +556,7 @@ gst_lfo_control_source_class_init (GstLFOControlSourceClass * klass)
gobject_class->get_property = gst_lfo_control_source_get_property; gobject_class->get_property = gst_lfo_control_source_get_property;
/** /**
* GstLFOControlSource:waveform * GstLFOControlSource:waveform:
* *
* Specifies the waveform that should be used for this #GstLFOControlSource. * Specifies the waveform that should be used for this #GstLFOControlSource.
*/ */
@ -566,7 +566,7 @@ gst_lfo_control_source_class_init (GstLFOControlSourceClass * klass)
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/** /**
* GstLFOControlSource:frequency * GstLFOControlSource:frequency:
* *
* Specifies the frequency that should be used for the waveform * Specifies the frequency that should be used for the waveform
* of this #GstLFOControlSource. It should be large enough * of this #GstLFOControlSource. It should be large enough
@ -578,7 +578,7 @@ gst_lfo_control_source_class_init (GstLFOControlSourceClass * klass)
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
/** /**
* GstLFOControlSource:timeshift * GstLFOControlSource:timeshift:
* *
* Specifies the timeshift to the right that should be used for the waveform * Specifies the timeshift to the right that should be used for the waveform
* of this #GstLFOControlSource in nanoseconds. * of this #GstLFOControlSource in nanoseconds.
@ -593,7 +593,7 @@ gst_lfo_control_source_class_init (GstLFOControlSourceClass * klass)
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
/** /**
* GstLFOControlSource:amplitude * GstLFOControlSource:amplitude:
* *
* Specifies the amplitude for the waveform of this #GstLFOControlSource. * Specifies the amplitude for the waveform of this #GstLFOControlSource.
*/ */
@ -603,7 +603,7 @@ gst_lfo_control_source_class_init (GstLFOControlSourceClass * klass)
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
/** /**
* GstLFOControlSource:offset * GstLFOControlSource:offset:
* *
* Specifies the value offset for the waveform of this #GstLFOControlSource. * Specifies the value offset for the waveform of this #GstLFOControlSource.
*/ */

View file

@ -48,6 +48,7 @@ G_BEGIN_DECLS
typedef struct _GstTimedValueControlSource GstTimedValueControlSource; typedef struct _GstTimedValueControlSource GstTimedValueControlSource;
typedef struct _GstTimedValueControlSourceClass GstTimedValueControlSourceClass; typedef struct _GstTimedValueControlSourceClass GstTimedValueControlSourceClass;
typedef struct _GstTimedValueControlSourcePrivate GstTimedValueControlSourcePrivate; typedef struct _GstTimedValueControlSourcePrivate GstTimedValueControlSourcePrivate;
typedef struct _GstControlPoint GstControlPoint;
/** /**
* GstControlPoint: * GstControlPoint:
@ -56,7 +57,7 @@ typedef struct _GstTimedValueControlSourcePrivate GstTimedValueControlSourcePriv
* values used for interpolation. This "inherits" from * values used for interpolation. This "inherits" from
* GstTimedValue. * GstTimedValue.
*/ */
typedef struct _GstControlPoint struct _GstControlPoint
{ {
/* fields from GstTimedValue. DO NOT CHANGE! */ /* fields from GstTimedValue. DO NOT CHANGE! */
GstClockTime timestamp; /* timestamp of the value change */ GstClockTime timestamp; /* timestamp of the value change */
@ -73,7 +74,7 @@ typedef struct _GstControlPoint
} cubic; } cubic;
} cache; } cache;
} GstControlPoint; };
/** /**
* GstTimedValueControlSource: * GstTimedValueControlSource:
@ -90,6 +91,7 @@ struct _GstTimedValueControlSource {
gint nvalues; /* Number of control points */ gint nvalues; /* Number of control points */
gboolean valid_cache; gboolean valid_cache;
/*< private >*/
GstTimedValueControlSourcePrivate *priv; GstTimedValueControlSourcePrivate *priv;
gpointer _gst_reserved[GST_PADDING]; gpointer _gst_reserved[GST_PADDING];
}; };