controller: fix gpointer vs. gpointer* mess up
authorStefan Sauer <ensonic@users.sf.net>
Tue, 6 Dec 2011 13:23:12 +0000 (14:23 +0100)
committerStefan Sauer <ensonic@users.sf.net>
Tue, 6 Dec 2011 13:40:35 +0000 (14:40 +0100)
gst/gstcontrolsource.c
gst/gstcontrolsource.h
gst/gstobject.c
gst/gstobject.h

index 16e84a8..2a76e46 100644 (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);
 
index a46a7c9..5cd2dc6 100644 (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);
 
index e5390e4..21c3126 100644 (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;
index d8ac54e..08eafb6 100644 (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);