From eb1259b98399cb8d0cd17dfee4d786faae4eb662 Mon Sep 17 00:00:00 2001 From: Stefan Sauer Date: Tue, 6 Dec 2011 14:23:12 +0100 Subject: [PATCH] controller: fix gpointer vs. gpointer* mess up --- gst/gstcontrolsource.c | 2 +- gst/gstcontrolsource.h | 4 ++-- gst/gstobject.c | 2 +- gst/gstobject.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gst/gstcontrolsource.c b/gst/gstcontrolsource.c index 16e84a8..2a76e46 100644 --- a/gst/gstcontrolsource.c +++ b/gst/gstcontrolsource.c @@ -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); diff --git a/gst/gstcontrolsource.h b/gst/gstcontrolsource.h index a46a7c9..5cd2dc6 100644 --- a/gst/gstcontrolsource.h +++ b/gst/gstcontrolsource.h @@ -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); diff --git a/gst/gstobject.c b/gst/gstobject.c index e5390e4..21c3126 100644 --- a/gst/gstobject.c +++ b/gst/gstobject.c @@ -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; diff --git a/gst/gstobject.h b/gst/gstobject.h index d8ac54e..08eafb6 100644 --- a/gst/gstobject.h +++ b/gst/gstobject.h @@ -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); -- 2.7.4