summaryrefslogtreecommitdiff
path: root/gst/smooth
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-11-23 16:01:35 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-11-23 16:03:15 +0000
commitda43e59aabfbb7e684bea27ce34734c4ee62fda1 (patch)
tree38b75b40776bf610f3baaf31c0de986edb89180f /gst/smooth
parent4286414e002016e6f3837696b0dec708d59787dc (diff)
downloadgstreamer-plugins-bad-da43e59aabfbb7e684bea27ce34734c4ee62fda1.tar.gz
smooth: fix printf format compiler warning in debug message
https://bugzilla.gnome.org/show_bug.cgi?id=664631
Diffstat (limited to 'gst/smooth')
-rw-r--r--gst/smooth/gstsmooth.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gst/smooth/gstsmooth.c b/gst/smooth/gstsmooth.c
index 66eade1d7..2ac87d6fc 100644
--- a/gst/smooth/gstsmooth.c
+++ b/gst/smooth/gstsmooth.c
@@ -188,9 +188,8 @@ gst_smooth_transform (GstBaseTransform * btrans, GstBuffer * inbuf,
GstBuffer * outbuf)
{
GstSmooth *smooth;
- guchar *idata, *odata;
- gulong size;
- gint lumsize, chromsize;
+ guint8 *idata, *odata;
+ guint size, lumsize, chromsize;
smooth = GST_SMOOTH (btrans);
idata = GST_BUFFER_DATA (inbuf);