From e72e12d4bab557bbbc9d9cfa2a574ad06c3e8170 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 15 Feb 2007 16:30:11 +0000 Subject: [PATCH] remove debug output from sndfilesource git-svn-id: svn://localhost/ardour2/trunk@1465 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/sndfilesource.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/ardour/sndfilesource.cc b/libs/ardour/sndfilesource.cc index 296f7471ad..6ac2c82aea 100644 --- a/libs/ardour/sndfilesource.cc +++ b/libs/ardour/sndfilesource.cc @@ -389,8 +389,6 @@ SndFileSource::nondestructive_write_unlocked (Sample *data, nframes_t cnt) nframes_t oldlen; int32_t frame_pos = _length; - cerr << _name << " write " << cnt << " floats to " << frame_pos << endl; - if (write_float (data, frame_pos, cnt) != cnt) { return 0; } @@ -398,8 +396,6 @@ SndFileSource::nondestructive_write_unlocked (Sample *data, nframes_t cnt) oldlen = _length; update_length (oldlen, cnt); - cerr << "\t length is now " << _length << endl; - if (_build_peakfiles) { PeakBuildRecord *pbr = 0;