controller: fix gpointer vs. gpointer* mess up

This commit is contained in:
Stefan Sauer 2011-12-06 14:23:12 +01:00
parent c0e3974aa7
commit eb1259b983
4 changed files with 5 additions and 5 deletions

View file

@ -121,7 +121,7 @@ gst_control_source_get_value (GstControlSource * self, GstClockTime timestamp,
gboolean
gst_control_source_get_value_array (GstControlSource * self,
GstClockTime timestamp, GstClockTime interval, guint n_values,
gpointer * values)
gpointer values)
{
g_return_val_if_fail (GST_IS_CONTROL_SOURCE (self), FALSE);

View file

@ -90,7 +90,7 @@ typedef gboolean (* GstControlSourceGetValue) (GstControlSource *self,
*
*/
typedef gboolean (* GstControlSourceGetValueArray) (GstControlSource *self,
GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer *values);
GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer values);
/**
* GstControlSourceBind
@ -147,7 +147,7 @@ gboolean gst_control_source_get_value (GstControlSource *self,
GValue *value);
gboolean gst_control_source_get_value_array (GstControlSource *self, GstClockTime timestamp,
GstClockTime interval, guint n_values,
gpointer *values);
gpointer values);
gboolean gst_control_source_bind (GstControlSource *self, GParamSpec *pspec);

View file

@ -1448,7 +1448,7 @@ gst_object_get_value (GstObject * object, const gchar * property_name,
gboolean
gst_object_get_value_array (GstObject * object, const gchar * property_name,
GstClockTime timestamp, GstClockTime interval, guint n_values,
gpointer * values)
gpointer values)
{
gboolean res = FALSE;
GstControlledProperty *prop;

View file

@ -252,7 +252,7 @@ GValue * gst_object_get_value (GstObject * object, const gchar
GstClockTime timestamp);
gboolean gst_object_get_value_array (GstObject * object, const gchar * property_name,
GstClockTime timestamp, GstClockTime interval,
guint n_values, gpointer *values);
guint n_values, gpointer values);
GstClockTime gst_object_get_control_rate (GstObject * object);
void gst_object_set_control_rate (GstObject * object, GstClockTime control_rate);