summaryrefslogtreecommitdiffstats
path: root/gst/cutter
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-07-15 12:30:17 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-07-15 12:30:17 +0000
commit6a76cca81a095ff4d08f4294006e7ceb09319137 (patch)
treea1b42022cbd63245fcd5fdd65a6737c35eca3f52 /gst/cutter
parenta8b1136da3a8206610f9d7da82039d632a09c7dd (diff)
DEBUG fixes
Original commit message from CVS: DEBUG fixes
Diffstat (limited to 'gst/cutter')
-rw-r--r--gst/cutter/gstcutter.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/gst/cutter/gstcutter.c b/gst/cutter/gstcutter.c
index 4b400c65..823b5125 100644
--- a/gst/cutter/gstcutter.c
+++ b/gst/cutter/gstcutter.c
@@ -268,7 +268,7 @@ gst_cutter_chain (GstPad *pad, GstBuffer *buf)
/* g_print ("DEBUG: cutter: start from here, turning on out\n"); */
/* first of all, flush current buffer */
g_signal_emit (G_OBJECT (filter), gst_cutter_signals[CUT_START], 0);
- g_print ("DEBUG: cutter: flushing buffer ");
+ GST_DEBUG (GST_CAT_PLUGIN_INFO, "DEBUG: cutter: flushing buffer");
while (filter->pre_buffer)
{
g_print (".");
@@ -324,8 +324,9 @@ gst_cutter_set_property (GObject *object, guint prop_id, const GValue *value, GP
case ARG_THRESHOLD:
/* set the level */
filter->threshold_level = g_value_get_double (value);
- g_print ("DEBUG: cutter: set threshold level to %f\n",
- filter->threshold_level);
+ GST_DEBUG (GST_CAT_PLUGIN_INFO,
+ "DEBUG: cutter: set threshold level to %f\n",
+ filter->threshold_level);
break;
case ARG_THRESHOLD_DB:
/* set the level given in dB
@@ -333,8 +334,9 @@ gst_cutter_set_property (GObject *object, guint prop_id, const GValue *value, GP
* values in dB < 0 result in values between 0 and 1
*/
filter->threshold_level = pow (10, g_value_get_double (value) / 20);
- g_print ("DEBUG: cutter: set threshold level to %f\n",
- filter->threshold_level);
+ GST_DEBUG (GST_CAT_PLUGIN_INFO,
+ "DEBUG: cutter: set threshold level to %f\n",
+ filter->threshold_level);
break;
case ARG_RUN_LENGTH:
/* set the minimum length of the silent run required */