summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-04-10 15:30:26 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-04-10 15:30:26 -0600
commit24cce2e43d2c5dc3852f8d3747650311a8cbf18e (patch)
tree949666ae0425709c0c955e53339a8b5fc5072d6a /libs
parent92b59c1df9e527320b6b9f54b25eec4efb3ac6cb (diff)
use cout not cerr for some temporary debugging messages
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/disk_reader.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/ardour/disk_reader.cc b/libs/ardour/disk_reader.cc
index 237ccd2214..5596c23d18 100644
--- a/libs/ardour/disk_reader.cc
+++ b/libs/ardour/disk_reader.cc
@@ -1720,8 +1720,7 @@ DiskReader::maybe_xfade_loop (Sample* buf, samplepos_t read_start, samplepos_t r
* see also DiskReader::Declicker::run()
*/
- cerr << "maybe_xfade, overlap style: " << enum_2_string (Evoral::coverage (fade_start, fade_end, read_start, read_end)) << endl;
-
+ cout << "maybe_xfade, overlap style: " << enum_2_string (Evoral::coverage (fade_start, fade_end, read_start, read_end)) << endl;
switch (Evoral::coverage (fade_start, fade_end, read_start, read_end)) {
case Evoral::OverlapInternal:
@@ -1774,7 +1773,7 @@ DiskReader::maybe_xfade_loop (Sample* buf, samplepos_t read_start, samplepos_t r
return;
}
- cerr << "maybe xfade, bo = " << bo << " vo " << vo << " n " << n << endl;
+ cout << "maybe xfade, bo = " << bo << " vo " << vo << " n " << n << endl;
Sample* b = &buf[bo]; /* data to be faded out */
Sample* sbuf = &chan->pre_loop_buffer[vo]; /* pre-loop (maybe silence) to be faded in */