13
0

correct mistakenly left-in debugging condition that removed parallelism for PortManager::cycle_start()

This commit is contained in:
Paul Davis 2019-09-17 18:20:51 -06:00
parent b648b3a4b4
commit fc3e7623e7

View File

@ -803,7 +803,7 @@ PortManager::cycle_start (pframes_t nframes, Session* s)
* A single external source-port may be connected to many ardour
* input-ports. Currently re-sampling is per input.
*/
if (0 && s && s->rt_tasklist () && fabs (Port::speed_ratio ()) != 1.0) {
if (s && s->rt_tasklist () && fabs (Port::speed_ratio ()) != 1.0) {
RTTaskList::TaskList tl;
for (Ports::iterator p = _cycle_ports->begin(); p != _cycle_ports->end(); ++p) {
if (!(p->second->flags() & TransportMasterPort)) {