mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-27 08:57:41 +01:00
stop transport when process_routes fails, even when using the parallel graph execution model
This commit is contained in:
parent
104a74f93a
commit
d697bf5388
1 changed files with 4 additions and 1 deletions
|
|
@ -159,7 +159,10 @@ Session::process_routes (pframes_t nframes, bool& need_butler)
|
|||
|
||||
if (_process_graph) {
|
||||
DEBUG_TRACE(DEBUG::ProcessThreads,"calling graph/process-routes\n");
|
||||
_process_graph->process_routes (nframes, start_frame, end_frame, declick, need_butler);
|
||||
if (_process_graph->process_routes (nframes, start_frame, end_frame, declick, need_butler) < 0) {
|
||||
stop_transport ();
|
||||
return -1;
|
||||
}
|
||||
} else {
|
||||
|
||||
for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue