summaryrefslogtreecommitdiff
path: root/libs/ardour/session_transport.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/session_transport.cc')
-rw-r--r--libs/ardour/session_transport.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc
index f09f3ac253..dee6e97c17 100644
--- a/libs/ardour/session_transport.cc
+++ b/libs/ardour/session_transport.cc
@@ -583,7 +583,6 @@ Session::non_realtime_locate ()
}
- microseconds_t begin = get_microseconds ();
framepos_t tf;
{
@@ -593,19 +592,12 @@ Session::non_realtime_locate ()
gint sc = g_atomic_int_get (&_seek_counter);
tf = _transport_frame;
- cerr << "\n\n >>> START Non-RT locate on routes to " << tf << " counter = " << sc << "\n\n";
-
for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
(*i)->non_realtime_locate (tf);
- //::usleep (250000);
- cerr << "\t\tcounter after track: " << g_atomic_int_get (&_seek_counter) << endl;
if (sc != g_atomic_int_get (&_seek_counter)) {
- cerr << "\n\n RESTART locate, new seek delivered\n";
goto restart;
}
}
-
- cerr << "\n\n <<< DONE Non-RT locate on routes\n\n";
}
{
@@ -620,9 +612,6 @@ Session::non_realtime_locate ()
}
}
- microseconds_t end = get_microseconds ();
- cerr << "Locate took " << setprecision (3) << ((end - begin) /1000000.0) << " secs\n";
-
_scene_changer->locate (_transport_frame);
/* XXX: it would be nice to generate the new clicks here (in the non-RT thread)