From dcf4df2a026e73eb67b9c94208250fd1261d6bca Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 25 Aug 2005 14:51:18 +0000 Subject: show some info on what's left in the queue Original commit message from CVS: show some info on what's left in the queue --- gst/audioresample/resample_ref.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gst/audioresample/resample_ref.c b/gst/audioresample/resample_ref.c index 3fc9d2e8..187f72c4 100644 --- a/gst/audioresample/resample_ref.c +++ b/gst/audioresample/resample_ref.c @@ -88,6 +88,8 @@ resample_scale_ref (ResampleState * r) } RESAMPLE_DEBUG ("asked to resample %d bytes", r->o_size); + RESAMPLE_DEBUG ("%d bytes in queue", + audioresample_buffer_queue_get_depth (r->queue)); while (r->o_size >= r->sample_size) { double midpoint; @@ -95,8 +97,10 @@ resample_scale_ref (ResampleState * r) int j; midpoint = r->i_start + (r->filter_length - 1) * 0.5 * r->i_inc; - RESAMPLE_DEBUG ("still need to output %d bytes, i_start %g, midpoint %f", - r->o_size, r->i_start, midpoint); + RESAMPLE_DEBUG + ("still need to output %d bytes, %d input left, i_start %g, midpoint %f", + r->o_size, audioresample_buffer_queue_get_depth (r->queue), r->i_start, + midpoint); if (midpoint > 0.5 * r->i_inc) { RESAMPLE_ERROR ("inconsistent state"); } -- cgit v1.2.1