X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Finternal_send.cc;h=4c3b385304e88c54f6c871c677d90f787937850c;hb=04724c21b66fd6e81fd0fbf0ac7cae9c7d9b3b8a;hp=8ec543030870a76c09a37892572e7ebe0af8519e;hpb=f4290fc09c9ba03dd2c3d4f8fc6754bab29fa724;p=ardour.git diff --git a/libs/ardour/internal_send.cc b/libs/ardour/internal_send.cc index 8ec5430308..4c3b385304 100644 --- a/libs/ardour/internal_send.cc +++ b/libs/ardour/internal_send.cc @@ -32,8 +32,8 @@ using namespace PBD; using namespace ARDOUR; using namespace std; -InternalSend::InternalSend (Session& s, boost::shared_ptr mm, boost::shared_ptr sendto, Delivery::Role role) - : Send (s, mm, role) +InternalSend::InternalSend (Session& s, boost::shared_ptr p, boost::shared_ptr mm, boost::shared_ptr sendto, Delivery::Role role) + : Send (s, p, mm, role) , target (0) { if (sendto) { @@ -81,7 +81,7 @@ InternalSend::send_to_going_away () } void -InternalSend::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, nframes_t nframes, bool) +InternalSend::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool) { if ((!_active && !_pending_active) || !target || !_send_to) { _meter->reset (); @@ -147,7 +147,7 @@ InternalSend::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame } int -InternalSend::set_block_size (nframes_t nframes) +InternalSend::set_block_size (pframes_t nframes) { mixbufs.ensure_buffers (_configured_input, nframes);