mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 06:06:25 +01:00
fix midi output on audio-tracks (e.g. audio->midi plugins)
This commit is contained in:
parent
b3faccc805
commit
b48fb4b5c0
1 changed files with 7 additions and 0 deletions
|
|
@ -369,6 +369,13 @@ AudioTrack::roll (pframes_t nframes, framepos_t start_frame, framepos_t end_fram
|
||||||
|
|
||||||
process_output_buffers (bufs, start_frame, end_frame, nframes, declick, (!diskstream->record_enabled() && _session.transport_rolling()));
|
process_output_buffers (bufs, start_frame, end_frame, nframes, declick, (!diskstream->record_enabled() && _session.transport_rolling()));
|
||||||
|
|
||||||
|
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
|
||||||
|
boost::shared_ptr<Delivery> d = boost::dynamic_pointer_cast<Delivery> (*i);
|
||||||
|
if (d) {
|
||||||
|
d->flush_buffers (nframes);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
need_butler = diskstream->commit (playback_distance);
|
need_butler = diskstream->commit (playback_distance);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue