variable plugin port config.
[ardour.git] / libs / ardour / ardour / send.h
index 6e2775286daea24d5de0de712ea1b1e4c8838b2c..3b0e8a4309ae8ac51c83c9a5bcb0fa1388c20da7 100644 (file)
 
 #include "ardour/ardour.h"
 #include "ardour/delivery.h"
+#include "ardour/delayline.h"
 
 namespace ARDOUR {
 
 class PeakMeter;
 class Amp;
+class GainControl;
 
-class Send : public Delivery
+class LIBARDOUR_API Send : public Delivery
 {
   public:
        Send (Session&, boost::shared_ptr<Pannable> pannable, boost::shared_ptr<MuteMaster>, Delivery::Role r = Delivery::Send, bool ignore_bitslot = false);
@@ -44,6 +46,7 @@ class Send : public Delivery
 
        boost::shared_ptr<Amp> amp() const { return _amp; }
        boost::shared_ptr<PeakMeter> meter() const { return _meter; }
+       boost::shared_ptr<GainControl> gain_control() const { return _gain_control; }
 
        bool metering() const { return _metering; }
        void set_metering (bool yn) { _metering = yn; }
@@ -59,20 +62,28 @@ class Send : public Delivery
        bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
        bool configure_io (ChanCount in, ChanCount out);
 
+       /* latency compensation */
+       void set_delay_in (framecnt_t);
+       void set_delay_out (framecnt_t);
+       framecnt_t get_delay_in () const { return _delay_in; }
+       framecnt_t get_delay_out () const { return _delay_out; }
+
        void activate ();
        void deactivate ();
 
        bool set_name (const std::string& str);
 
        std::string value_as_string (boost::shared_ptr<AutomationControl>) 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<GainControl> _gain_control;
        boost::shared_ptr<Amp> _amp;
        boost::shared_ptr<PeakMeter> _meter;
+       boost::shared_ptr<DelayLine> _delayline;
 
   private:
        /* disallow copy construction */
@@ -82,6 +93,9 @@ class Send : public Delivery
        int set_state_2X (XMLNode const &, int);
 
        uint32_t  _bitslot;
+
+       framecnt_t _delay_in;
+       framecnt_t _delay_out;
 };
 
 } // namespace ARDOUR