summaryrefslogtreecommitdiff
path: root/gst/gstcontrolsource.h
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2011-12-06 14:23:12 +0100
committerStefan Sauer <ensonic@users.sf.net>2011-12-06 14:40:35 +0100
commiteb1259b98399cb8d0cd17dfee4d786faae4eb662 (patch)
tree11824d6c0cd9532f469d980ad34fd9e50f890747 /gst/gstcontrolsource.h
parentc0e3974aa768316babdfd65052e94dabdf80a5df (diff)
controller: fix gpointer vs. gpointer* mess up
Diffstat (limited to 'gst/gstcontrolsource.h')
-rw-r--r--gst/gstcontrolsource.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstcontrolsource.h b/gst/gstcontrolsource.h
index a46a7c9f4..5cd2dc6eb 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);