X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fsend.h;h=002397f0cd139ac3500ee9a2f636f0c854982272;hb=79abf3dfa6d649fbf1fb6fd16cd489f434d0b909;hp=df9afad55c9d30edd45b9ab589e68a9410bf2d49;hpb=601a34521c2ce1d0167ed2f3c66f2fa6eeeb6b8e;p=ardour.git diff --git a/libs/ardour/ardour/send.h b/libs/ardour/ardour/send.h index df9afad55c..002397f0cd 100644 --- a/libs/ardour/ardour/send.h +++ b/libs/ardour/ardour/send.h @@ -32,6 +32,7 @@ namespace ARDOUR { class PeakMeter; class Amp; +class GainControl; class LIBARDOUR_API Send : public Delivery { @@ -43,7 +44,9 @@ class LIBARDOUR_API Send : public Delivery bool display_to_user() const; + boost::shared_ptr amp() const { return _amp; } boost::shared_ptr meter() const { return _meter; } + boost::shared_ptr gain_control() const { return _gain_control; } bool metering() const { return _metering; } void set_metering (bool yn) { _metering = yn; } @@ -52,9 +55,13 @@ class LIBARDOUR_API Send : public Delivery XMLNode& get_state (); int set_state(const XMLNode&, int version); + PBD::Signal0 SelfDestruct; + void set_remove_on_disconnect (bool b) { _remove_on_disconnect = b; } + bool remove_on_disconnect () const { return _remove_on_disconnect; } + uint32_t pans_required() const { return _configured_input.n_audio(); } - void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool); + void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, double speed, pframes_t nframes, bool); bool can_support_io_configuration (const ChanCount& in, ChanCount& out); bool configure_io (ChanCount in, ChanCount out); @@ -70,13 +77,13 @@ class LIBARDOUR_API Send : public Delivery bool set_name (const std::string& str); - std::string value_as_string (boost::shared_ptr) const; - static uint32_t how_many_sends(); static std::string name_and_id_new_send (Session&, Delivery::Role r, uint32_t&, bool); protected: bool _metering; + boost::shared_ptr _gain_control; + boost::shared_ptr _amp; boost::shared_ptr _meter; boost::shared_ptr _delayline; @@ -84,6 +91,7 @@ class LIBARDOUR_API Send : public Delivery /* disallow copy construction */ Send (const Send&); void panshell_changed (); + void snd_output_changed (IOChange, void*); int set_state_2X (XMLNode const &, int); @@ -91,6 +99,7 @@ class LIBARDOUR_API Send : public Delivery framecnt_t _delay_in; framecnt_t _delay_out; + bool _remove_on_disconnect; }; } // namespace ARDOUR