summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-11-01 01:20:53 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-11-01 01:20:53 +0000
commitcfe9ae636e0ee61cafdff43b3bd6967d835ef629 (patch)
tree223f4dbd7fa1fcba75095764618983ff1d7d6c23 /libs/ardour/route.cc
parentfb5485261acdafcb0ca118d6f1cf62caa344b162 (diff)
remove useless debugging output
git-svn-id: svn://localhost/ardour2/branches/3.0@10370 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index b624410a27..d0dca37e0a 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -404,6 +404,15 @@ Route::process_output_buffers (BufferSet& bufs,
bufs.is_silent (false);
+#if 0
+ cerr << name() << " POB, buffers: count: " << bufs.count() << " avail " << bufs.available() << endl;
+ int na = bufs.count().n_audio();
+ for (int nn = 0; nn < na; ++nn) {
+ AudioBuffer& ab (bufs.get_audio (nn));
+ cerr << "\tAudio buffer " << nn << " @ " << &ab << " data @ " << ab.data() << endl;
+ }
+#endif
+
/* figure out if we're going to use gain automation */
if (gain_automation_ok) {
_amp->setup_gain_automation (start_frame, end_frame, nframes);