summaryrefslogtreecommitdiff
path: root/libs/ardour/send.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-06 00:09:53 +0000
committerDavid Robillard <d@drobilla.net>2007-07-06 00:09:53 +0000
commit19273e824d40534a4e31259fb8b83122b24aa4e9 (patch)
tree1ee44d60b2776dcd05b3eede0d9f8b5c21ac89ca /libs/ardour/send.cc
parent40f353f1519e334a15721d7bc64fd5e7ef9e5437 (diff)
Midi CC automation sending (send points only, no linear interpolation yet).
Split buffer.cc into buffer.cc audio_buffer.cc midi_buffer.cc. Renamed 'send_buffers' to 'mix_buffers'. This is the first revision of Ardour where clicking around and drawing things can send MIDI and thus generate wonderful world-changing music. Break out the champagne. git-svn-id: svn://localhost/ardour2/trunk@2115 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/send.cc')
-rw-r--r--libs/ardour/send.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc
index 5567649c9a..929b1fc9a8 100644
--- a/libs/ardour/send.cc
+++ b/libs/ardour/send.cc
@@ -120,7 +120,7 @@ Send::run_in_place (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame,
// we have to copy the input, because IO::deliver_output may alter the buffers
// in-place, which a send must never do.
- BufferSet& sendbufs = _session.get_send_buffers(bufs.count());
+ BufferSet& sendbufs = _session.get_mix_buffers(bufs.count());
sendbufs.read_from(bufs, nframes);
assert(sendbufs.count() == bufs.count());