13
0

fix midi output on audio-tracks (e.g. audio->midi plugins)

This commit is contained in:
Robin Gareus 2014-05-15 01:17:20 +02:00
parent 16cbecf193
commit 4c2f1489f4

View File

@ -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()));
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);
return 0;