mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
DEBUG fixes
Original commit message from CVS: DEBUG fixes
This commit is contained in:
parent
a8b1136da3
commit
6a76cca81a
1 changed files with 7 additions and 5 deletions
|
@ -268,7 +268,7 @@ gst_cutter_chain (GstPad *pad, GstBuffer *buf)
|
||||||
/* g_print ("DEBUG: cutter: start from here, turning on out\n"); */
|
/* g_print ("DEBUG: cutter: start from here, turning on out\n"); */
|
||||||
/* first of all, flush current buffer */
|
/* first of all, flush current buffer */
|
||||||
g_signal_emit (G_OBJECT (filter), gst_cutter_signals[CUT_START], 0);
|
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)
|
while (filter->pre_buffer)
|
||||||
{
|
{
|
||||||
g_print (".");
|
g_print (".");
|
||||||
|
@ -324,7 +324,8 @@ gst_cutter_set_property (GObject *object, guint prop_id, const GValue *value, GP
|
||||||
case ARG_THRESHOLD:
|
case ARG_THRESHOLD:
|
||||||
/* set the level */
|
/* set the level */
|
||||||
filter->threshold_level = g_value_get_double (value);
|
filter->threshold_level = g_value_get_double (value);
|
||||||
g_print ("DEBUG: cutter: set threshold level to %f\n",
|
GST_DEBUG (GST_CAT_PLUGIN_INFO,
|
||||||
|
"DEBUG: cutter: set threshold level to %f\n",
|
||||||
filter->threshold_level);
|
filter->threshold_level);
|
||||||
break;
|
break;
|
||||||
case ARG_THRESHOLD_DB:
|
case ARG_THRESHOLD_DB:
|
||||||
|
@ -333,7 +334,8 @@ gst_cutter_set_property (GObject *object, guint prop_id, const GValue *value, GP
|
||||||
* values in dB < 0 result in values between 0 and 1
|
* values in dB < 0 result in values between 0 and 1
|
||||||
*/
|
*/
|
||||||
filter->threshold_level = pow (10, g_value_get_double (value) / 20);
|
filter->threshold_level = pow (10, g_value_get_double (value) / 20);
|
||||||
g_print ("DEBUG: cutter: set threshold level to %f\n",
|
GST_DEBUG (GST_CAT_PLUGIN_INFO,
|
||||||
|
"DEBUG: cutter: set threshold level to %f\n",
|
||||||
filter->threshold_level);
|
filter->threshold_level);
|
||||||
break;
|
break;
|
||||||
case ARG_RUN_LENGTH:
|
case ARG_RUN_LENGTH:
|
||||||
|
|
Loading…
Reference in a new issue