From: Wim Taymans Date: Tue, 6 Dec 2011 12:39:05 +0000 (+0100) Subject: fix compilation X-Git-Tag: RELEASE-0.11.2~326 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ac716003144c3a086a21e63e6b4379c6df54597;p=platform%2Fupstream%2Fgstreamer.git fix compilation --- 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; \