summaryrefslogtreecommitdiffstats
path: root/gst/videofilter
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-09-14 11:50:14 +0000
committerDavid Schleef <ds@schleef.org>2003-09-14 11:50:14 +0000
commitaa0c086a442e7d84942d26f407e333366f505a0c (patch)
tree5ed4bc51f9c203999ee3e594b03f5e8b484e1d2f /gst/videofilter
parentea1f88abb680c699b40a9f3ee8905cf70b405859 (diff)
Change some g_prints to GST_DEBUG
Original commit message from CVS: Change some g_prints to GST_DEBUG
Diffstat (limited to 'gst/videofilter')
-rw-r--r--gst/videofilter/gstvideofilter.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gst/videofilter/gstvideofilter.c b/gst/videofilter/gstvideofilter.c
index d56d39e4..f9c0b8d8 100644
--- a/gst/videofilter/gstvideofilter.c
+++ b/gst/videofilter/gstvideofilter.c
@@ -304,7 +304,7 @@ gst_videofilter_sink_link (GstPad *pad, GstCaps *caps)
}
videofilter->format = gst_videofilter_find_format_by_caps (videofilter,caps);
- g_print("sink_link: %s\n",gst_caps_to_string(caps));
+ GST_DEBUG("sink_link: %s\n",gst_caps_to_string(caps));
g_return_val_if_fail(videofilter->format, GST_PAD_LINK_REFUSED);
gst_caps_get_int (caps, "width", &videofilter->from_width);
@@ -319,7 +319,7 @@ gst_videofilter_sink_link (GstPad *pad, GstCaps *caps)
gst_caps_set(peercaps, "height", GST_PROPS_INT (videofilter->to_height));
gst_caps_set(peercaps, "framerate", GST_PROPS_FLOAT (videofilter->framerate));
- g_print("setting %s\n",gst_caps_to_string(peercaps));
+ GST_DEBUG("setting %s\n",gst_caps_to_string(peercaps));
ret = gst_pad_try_set_caps (videofilter->srcpad, peercaps);
@@ -333,8 +333,6 @@ gst_videofilter_sink_link (GstPad *pad, GstCaps *caps)
//gst_videofilter_setup(videofilter);
}
- g_print("returning %d\n",ret);
-
return ret;
}