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 16e84a8b4aeec02f27ece5d4cf3ddad4fd63adeb..2a76e46482f9ad737b2b61d12a450817a49e00c1 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 a46a7c9f49469c53d33bf17aebd5b1a3a2d7e05f..5cd2dc6ebd9cd7af3889e1acd9d96356861be7fc 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 e5390e4d2e9ac9e9a053ac2a3c303770e82c178e..21c3126f0bc10ea31d9f6e866c5915e4e24df562 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 d8ac54e8a8f571605dfbc902044a477b8389729e..08eafb6ab9b56842ee1ce121e405f546779b8df4 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);