summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-02-15 16:30:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-02-15 16:30:11 +0000
commite72e12d4bab557bbbc9d9cfa2a574ad06c3e8170 (patch)
tree6bbdd97ecf74b353894b8289f7d922b324f67a08 /libs
parent7e277f96d78f56073cd2021dc1c0305cdabd3d90 (diff)
remove debug output from sndfilesource
git-svn-id: svn://localhost/ardour2/trunk@1465 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/sndfilesource.cc4
1 files changed, 0 insertions, 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;