mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 15:15:41 +01:00
fix routing midi data on export:
MidiPort::cycle_end() was never called, hence after the first cycle all midi buffers were assumed to be “mixed down” already. this fixes Midi-track 1 -[midi]-> Midi-track2 synth -[audio]-> out on export.
This commit is contained in:
parent
60bb5986e2
commit
105ecfa464
1 changed files with 2 additions and 0 deletions
|
|
@ -333,10 +333,12 @@ AudioEngine::process_callback (pframes_t nframes)
|
|||
}
|
||||
|
||||
if (_freewheeling) {
|
||||
PortManager::cycle_end (nframes);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!_running) {
|
||||
PortManager::cycle_end (nframes);
|
||||
_processed_frames = next_processed_frames;
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue