summaryrefslogtreecommitdiff
path: root/libs/ardour/session_process.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-12-14 16:18:47 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-12-14 16:18:47 +0000
commitc9c94ca1c247adfc1a78fda0eda185a9a7589696 (patch)
tree52d520020e7ff2455b8abf83fbcc69a4ba02b9ca /libs/ardour/session_process.cc
parentfd1414f6668712c641da6c7d51f4b3e2bf6fae5a (diff)
merge robin gareus' libltc into ardour source tree for convenience
git-svn-id: svn://localhost/ardour2/branches/3.0@13665 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_process.cc')
-rw-r--r--libs/ardour/session_process.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc
index bd5cc66451..05b800fead 100644
--- a/libs/ardour/session_process.cc
+++ b/libs/ardour/session_process.cc
@@ -116,9 +116,7 @@ Session::no_roll (pframes_t nframes)
_click_io->silence (nframes);
}
-#ifdef HAVE_LTC
ltc_tx_send_time_code_for_cycle (_transport_frame, end_frame, _target_transport_speed, _transport_speed, nframes);
-#endif
if (_process_graph) {
DEBUG_TRACE(DEBUG::ProcessThreads,"calling graph/no-roll\n");
@@ -793,9 +791,7 @@ Session::process_without_events (pframes_t nframes)
if (!_exporting && _slave) {
if (!follow_slave (nframes)) {
-#ifdef HAVE_LTC
ltc_tx_send_time_code_for_cycle (_transport_frame, _transport_frame, 0, 0 , nframes);
-#endif
return;
}
}
@@ -817,9 +813,7 @@ Session::process_without_events (pframes_t nframes)
send_midi_time_code_for_cycle (_transport_frame, _transport_frame + frames_moved, nframes);
}
-#ifdef HAVE_LTC
ltc_tx_send_time_code_for_cycle (_transport_frame, _transport_frame + frames_moved, _target_transport_speed, _transport_speed, nframes);
-#endif
framepos_t const stop_limit = compute_stop_limit ();