mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 22:55:44 +01:00
handle internal-sends from audio to midi busses
This commit is contained in:
parent
20e216afcc
commit
b64a6b658e
1 changed files with 3 additions and 1 deletions
|
|
@ -144,7 +144,9 @@ InternalSend::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame
|
|||
// in-place, which a send must never do.
|
||||
|
||||
if (_panshell && !_panshell->bypassed() && role() != Listen) {
|
||||
_panshell->run (bufs, mixbufs, start_frame, end_frame, nframes);
|
||||
if (mixbufs.count ().n_audio () > 0) {
|
||||
_panshell->run (bufs, mixbufs, start_frame, end_frame, nframes);
|
||||
}
|
||||
|
||||
/* non-audio data will not have been copied by the panner, do it now
|
||||
* if there are more buffers available than send buffers, ignore them,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue