mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
smooth: fix printf format compiler warning in debug message
https://bugzilla.gnome.org/show_bug.cgi?id=664631
This commit is contained in:
parent
4286414e00
commit
da43e59aab
1 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue