remove reference "const int32_t&" -> const int32_t"
[ardour.git] / libs / ardour / ardour / port_insert.h
index 657c2c0de6f5dedbd69526e7517db4d20b472d92..fee1f4694c7e2463d6ca1ae5257a710428f5d2fa 100644 (file)
@@ -26,6 +26,7 @@
 
 #include "ardour/ardour.h"
 #include "ardour/io_processor.h"
+#include "ardour/libardour_visibility.h"
 #include "ardour/types.h"
 
 class XMLNode;
@@ -41,7 +42,7 @@ class Pannable;
 
 /** Port inserts: send output to a Jack port, pick up input at a Jack port
  */
-class PortInsert : public IOProcessor
+class LIBARDOUR_API PortInsert : public IOProcessor
 {
   public:
        PortInsert (Session&, boost::shared_ptr<Pannable>, boost::shared_ptr<MuteMaster> mm);
@@ -51,18 +52,20 @@ class PortInsert : public IOProcessor
        XMLNode& get_state(void);
        int set_state (const XMLNode&, int version);
 
-       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);
 
        framecnt_t signal_latency () const;
 
        bool set_name (const std::string& name);
 
-       bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
+       bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
        bool configure_io (ChanCount in, ChanCount out);
 
        void activate ();
        void deactivate ();
 
+       void set_pre_fader (bool);
+
        uint32_t bit_slot() const { return _bitslot; }
 
        void start_latency_detection ();