summaryrefslogtreecommitdiff
path: root/libs/ardour/session_process.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-04-04 16:41:20 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-04-04 16:41:20 +0000
commit040e016137ff15ebfa446f7e1de321d17be45dcd (patch)
tree4c7fda0e1dc3407b50a33166b7bb44b9453852d5 /libs/ardour/session_process.cc
parent1052bc39bf09922a26b2d308f9f06ce29989f71e (diff)
move some DEBUG::Graph traces to DEBUG::ProcessThreads ; remove Diskstream::rename_write_sources() which is no longer relevant (sources are not created on disk until needed); fixup calling Diskstream::non_realtime_input_change() when calling Diskstream::set_track() with a track that doesn't yet have any I/O (i.e. typical case)
git-svn-id: svn://localhost/ardour2/branches/3.0@9281 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_process.cc')
-rw-r--r--libs/ardour/session_process.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc
index 5d2cbb6180..e05240e6e3 100644
--- a/libs/ardour/session_process.cc
+++ b/libs/ardour/session_process.cc
@@ -108,7 +108,7 @@ Session::no_roll (pframes_t nframes)
}
if (route_graph->threads_in_use() > 0) {
- DEBUG_TRACE(DEBUG::Graph,"calling graph/no-roll\n");
+ DEBUG_TRACE(DEBUG::ProcessThreads,"calling graph/no-roll\n");
route_graph->routes_no_roll( nframes, _transport_frame, end_frame, non_realtime_work_pending(), actively_recording(), declick);
} else {
for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
@@ -154,7 +154,7 @@ Session::process_routes (pframes_t nframes, bool& need_butler)
tracks, the graph never gets updated.
*/
if (1 || route_graph->threads_in_use() > 0) {
- DEBUG_TRACE(DEBUG::Graph,"calling graph/process-routes\n");
+ DEBUG_TRACE(DEBUG::ProcessThreads,"calling graph/process-routes\n");
route_graph->process_routes( nframes, start_frame, end_frame, declick, record_active, rec_monitors, need_butler);
} else {