diff options
Diffstat (limited to 'ext/gdk_pixbuf/pixbufscale.c')
-rw-r--r-- | ext/gdk_pixbuf/pixbufscale.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/gdk_pixbuf/pixbufscale.c b/ext/gdk_pixbuf/pixbufscale.c index 3cfa17ee..1cecdab6 100644 --- a/ext/gdk_pixbuf/pixbufscale.c +++ b/ext/gdk_pixbuf/pixbufscale.c @@ -206,8 +206,12 @@ gst_pixbufscale_link (GstPad * pad, const GstCaps * caps) GstPad *otherpad; GstStructure *structure; int height, width; + gchar *caps_string; + + caps_string = gst_caps_to_string (caps); + GST_DEBUG ("gst_pixbufscale_link %s\n", caps_string); + g_free (caps_string); - GST_DEBUG ("gst_pixbufscale_link %s\n", gst_caps_to_string (caps)); pixbufscale = GST_PIXBUFSCALE (gst_pad_get_parent (pad)); otherpad = (pad == pixbufscale->srcpad) ? pixbufscale->sinkpad : |