From a83157de45d79dbd17721d729f3ac014e84e9573 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 13 Apr 2010 21:05:59 +0000 Subject: remove babbling torrent of debug output git-svn-id: svn://localhost/ardour2/branches/3.0@6889 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/buffer_manager.cc | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'libs/ardour/buffer_manager.cc') diff --git a/libs/ardour/buffer_manager.cc b/libs/ardour/buffer_manager.cc index 3436dac72d..edaf0907e8 100644 --- a/libs/ardour/buffer_manager.cc +++ b/libs/ardour/buffer_manager.cc @@ -34,21 +34,10 @@ BufferManager::init (uint32_t size) /* and populate with actual ThreadBuffers */ - std::cerr << "BM: initial read space: " << thread_buffers->read_space() << std::endl; - for (uint32_t n = 0; n < size; ++n) { ThreadBuffers* ts = new ThreadBuffers; thread_buffers->write (&ts, 1); - std::cerr << "BM: added one, read = " << thread_buffers->read_space() - << " write = " << thread_buffers->write_space() - << std::endl; } - - std::cerr << "BM: final, read = " << thread_buffers->read_space() - << " write = " << thread_buffers->write_space() - << std::endl; - - std::cerr << "BUFFER MANAGER INITIALIZED WITH " << size << " BUFFERs\n"; } ThreadBuffers* @@ -74,8 +63,6 @@ BufferManager::ensure_buffers (ChanCount howmany) { /* this is protected by the audioengine's process lock: we do not */ - std::cerr << "BufMgr: ensure " << thread_buffers->bufsize() - 1 << " buffers match " << howmany << std::endl; - for (uint32_t n = 0; n < thread_buffers->bufsize() - 1; ++n) { thread_buffers->buffer()[n]->ensure_buffers (howmany); } -- cgit v1.2.3