remove debug output from sndfilesource

git-svn-id: svn://localhost/ardour2/trunk@1465 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2007-02-15 16:30:11 +00:00
parent 7e277f96d7
commit e72e12d4ba

View file

@ -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;