Robin Gareus
b40826792a
When the engine is restarted, ports are re-established, and previously queued port-connections need to be cleared. This caused a bug: * when the engine is stopped all ports are disconnected. _port_connection_queue contains all disconnections * engine is stopped so _port_connection_queue is not processed * engine-restart re-etablishes ports and appends those connections to _port_connection_queue * process-callback processes the list in **reverse** order ``` while (!_port_connection_queue.empty ()) { _port_connection_queue.pop_back (); } ``` * ARDOUR::PortManager::connect_callback() is first called with connected() and the disconnected() * All ports are assumed to not be connected Port::_externally_connected == 0 for all ports Result: * vari-speed playback resampling does not work (only external I/O is reampled), split cycles processing (looping) fails since AudioPort::get_audio_buffer() does not apply the _global_port_buffer_offset |
||
---|---|---|
doc | ||
gtk2_ardour | ||
headless | ||
libs | ||
luasession | ||
msvc_extra_headers | ||
MSVCardour3 | ||
MSVCMixbus3 | ||
MSVCvst_scan | ||
nutemp | ||
session_utils | ||
share | ||
tools | ||
vst | ||
.dir-locals.el | ||
.gitattributes | ||
.gitignore | ||
ardour.1 | ||
COPYING | ||
instant.xml.sae | ||
msvc32-fixup.pl | ||
PACKAGER_README | ||
README | ||
README-GITHUB.txt | ||
system_config | ||
testfile.flac | ||
testfile.ogg | ||
TRANSLATORS | ||
waf | ||
wscript |
Please see the Ardour web site at http://ardour.org/ for all documentation.. For information on building ardour: http://ardour.org/development.html