summaryrefslogtreecommitdiff
path: root/libs/ardour/session_process.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-07-28 11:11:33 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-18 11:40:53 -0400
commit9836cd39432d3b2258d2a016d4c8c9c30b2d5f2f (patch)
tree7927ccb1eaf8ee697c42076c4f40ee4e71d3a585 /libs/ardour/session_process.cc
parent7149d726251fd69556d09a8d0e7894c993849ab7 (diff)
more verbose debug output for slave debugging
Diffstat (limited to 'libs/ardour/session_process.cc')
-rw-r--r--libs/ardour/session_process.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc
index b59248cf0c..a6c877e705 100644
--- a/libs/ardour/session_process.cc
+++ b/libs/ardour/session_process.cc
@@ -859,6 +859,7 @@ Session::process_without_events (pframes_t nframes)
}
if (locate_pending()) {
+ cerr << "p-WO-E: locate still pending\n";
frames_moved = 0;
} else {
if (_transport_speed == 1.0) {
@@ -867,9 +868,12 @@ Session::process_without_events (pframes_t nframes)
interpolation.set_target_speed (_target_transport_speed);
interpolation.set_speed (_transport_speed);
frames_moved = (framecnt_t) interpolation.interpolate (0, nframes, 0, 0);
+ cerr << "p-WO-E: current speed : " << _transport_speed << " interpolate says " << frames_moved << endl;
}
}
+ cerr << "p-WO-E: will move " << frames_moved << endl;
+
if (!_exporting && !timecode_transmission_suspended()) {
send_midi_time_code_for_cycle (_transport_frame, _transport_frame + frames_moved, nframes);
}