From 1ac716003144c3a086a21e63e6b4379c6df54597 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 6 Dec 2011 13:39:05 +0100 Subject: [PATCH] fix compilation --- libs/gst/controller/gstinterpolation.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/gst/controller/gstinterpolation.c b/libs/gst/controller/gstinterpolation.c index 3735191..40bdb6a 100644 --- a/libs/gst/controller/gstinterpolation.c +++ b/libs/gst/controller/gstinterpolation.c @@ -135,7 +135,7 @@ interpolate_none_get_##type (GstInterpolationControlSource *self, GstClockTime t \ static gboolean \ interpolate_none_get_##type##_value_array (GstInterpolationControlSource *self, \ - GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer *_values) \ + GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer _values) \ { \ guint i; \ GstClockTime ts = timestamp; \ @@ -294,7 +294,7 @@ interpolate_trigger_get_##type (GstInterpolationControlSource *self, GstClockTim \ static gboolean \ interpolate_trigger_get_##type##_value_array (GstInterpolationControlSource *self, \ - GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer *_values) \ + GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer _values) \ { \ guint i; \ GstClockTime ts = timestamp; \ @@ -455,7 +455,7 @@ interpolate_linear_get_##vtype (GstInterpolationControlSource *self, GstClockTim \ static gboolean \ interpolate_linear_get_##vtype##_value_array (GstInterpolationControlSource *self, \ - GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer *_values) \ + GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer _values) \ { \ guint i; \ GstClockTime ts = timestamp; \ @@ -709,7 +709,7 @@ interpolate_cubic_get_##vtype (GstInterpolationControlSource *self, GstClockTime \ static gboolean \ interpolate_cubic_get_##vtype##_value_array (GstInterpolationControlSource *self, \ - GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer *_values) \ + GstClockTime timestamp, GstClockTime interval, guint n_values, gpointer _values) \ { \ guint i; \ GstClockTime ts = timestamp; \ -- 2.7.4