signed VCA numbers
[ardour.git] / libs / ardour / ardour / plugin_insert.h
index 5c7f403a0e67bf55849ff51a5d13be57aebf9049..6f7b10cd46d94a99acefc3e9af2668de578f83ea 100644 (file)
@@ -32,6 +32,7 @@
 #include "ardour/io.h"
 #include "ardour/types.h"
 #include "ardour/parameter_descriptor.h"
+#include "ardour/plugin.h"
 #include "ardour/processor.h"
 #include "ardour/sidechain.h"
 #include "ardour/automation_control.h"
@@ -60,13 +61,17 @@ class LIBARDOUR_API PluginInsert : public Processor
        void update_id (PBD::ID);
        void set_state_dir (const std::string& d = "");
 
-       void run (BufferSet& in, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
-       void silence (framecnt_t nframes);
+       void run (BufferSet& in, framepos_t start_frame, framepos_t end_frame, double speed, pframes_t nframes, bool);
+       void silence (framecnt_t nframes, framepos_t start_frame);
 
        void activate ();
        void deactivate ();
        void flush ();
 
+       void enable (bool yn);
+       bool enabled () const;
+       bool bypassable () const;
+
        bool reset_parameters_to_default ();
        bool can_reset_all_parameters ();
 
@@ -92,7 +97,10 @@ class LIBARDOUR_API PluginInsert : public Processor
                return _thru_map;
        }
 
+       bool pre_seed (const ChanCount&, const ChanCount&, const ChanMapping&, const ChanMapping&, const ChanMapping&);
+
        ChanMapping input_map () const; ///< combined (all instances) input map
+       ChanMapping no_sc_input_map () const; ///< combined (all instances) input map w/o sidechain sinks
        ChanMapping output_map () const; ///< combined (all instances) output map
        bool has_midi_bypass () const;
        bool has_midi_thru () const;
@@ -143,12 +151,14 @@ class LIBARDOUR_API PluginInsert : public Processor
        // only the owning route may call these (with process lock held)
        // route is not a friend class, it owns us
        bool set_count      (uint32_t num);
+       void set_sinks      (const ChanCount&); // reconfigurable I/O ONLY
        void set_outputs    (const ChanCount&);
        void set_strict_io  (bool b);
        void set_custom_cfg (bool b);
        bool set_preset_out (const ChanCount&);
        bool add_sidechain  (uint32_t n_audio = 1);
        bool del_sidechain ();
+       void set_sidechain_latency (uint32_t, uint32_t);
        boost::shared_ptr<SideChain> sidechain () const { return _sidechain; }
        // end C++ class slavery!
 
@@ -162,11 +172,17 @@ class LIBARDOUR_API PluginInsert : public Processor
        bool has_no_inputs() const;
        bool has_no_audio_inputs() const;
        bool needs_midi_input() const;
+       bool has_output_presets (
+                       ChanCount in = ChanCount (DataType::MIDI, 1),
+                       ChanCount out = ChanCount (DataType::AUDIO, 2)
+                       );
 
        void realtime_handle_transport_stopped ();
        void realtime_locate ();
        void monitoring_changed ();
 
+       bool load_preset (Plugin::PresetRecord);
+
        /** A control that manipulates a plugin parameter (control port). */
        struct PluginControl : public AutomationControl
        {
@@ -175,15 +191,13 @@ class LIBARDOUR_API PluginInsert : public Processor
                               const ParameterDescriptor&        desc,
                               boost::shared_ptr<AutomationList> list=boost::shared_ptr<AutomationList>());
 
-               void set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
-               void set_value_unchecked (double);
                double get_value (void) const;
                void catch_up_with_external_value (double val);
                XMLNode& get_state();
 
        private:
                PluginInsert* _plugin;
-               void _set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
+               void actually_set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
        };
 
        /** A control that manipulates a plugin property (message). */
@@ -194,10 +208,10 @@ class LIBARDOUR_API PluginInsert : public Processor
                                       const ParameterDescriptor&        desc,
                                       boost::shared_ptr<AutomationList> list=boost::shared_ptr<AutomationList>());
 
-               void set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
-               void set_value_unchecked (double);
                double get_value (void) const;
                XMLNode& get_state();
+        protected:
+               void actually_set_value (double value, PBD::Controllable::GroupControlDisposition);
 
        private:
                PluginInsert* _plugin;
@@ -294,6 +308,8 @@ class LIBARDOUR_API PluginInsert : public Processor
        Plugins _plugins;
 
        boost::shared_ptr<SideChain> _sidechain;
+       uint32_t _sc_playback_latency;
+       uint32_t _sc_capture_latency;
 
        boost::weak_ptr<Plugin> _impulseAnalysisPlugin;
 
@@ -309,6 +325,7 @@ class LIBARDOUR_API PluginInsert : public Processor
        ChanCount _configured_internal; // with side-chain
        ChanCount _configured_out;
        ChanCount _custom_out;
+       ChanCount _custom_sinks;
        ChanCount _preset_out;
        ChanCount _cached_sidechain_pins;
        ChanCount _required_buffers;
@@ -332,14 +349,19 @@ class LIBARDOUR_API PluginInsert : public Processor
        PinMappings _out_map;
        ChanMapping _thru_map; // out-idx <=  in-idx
 
-       void automation_run (BufferSet& bufs, framepos_t start, pframes_t nframes);
-       void connect_and_run (BufferSet& bufs, pframes_t nframes, framecnt_t offset, bool with_auto, framepos_t now = 0);
+       void automation_run (BufferSet& bufs, framepos_t start, framepos_t end, double speed, pframes_t nframes);
+       void connect_and_run (BufferSet& bufs, framepos_t start, framecnt_t end, double speed, pframes_t nframes, framecnt_t offset, bool with_auto);
+       void bypass (BufferSet& bufs, pframes_t nframes);
+       void inplace_silence_unconnected (BufferSet&, const PinMappings&, framecnt_t nframes, framecnt_t offset) const;
 
        void create_automatable_parameters ();
        void control_list_automation_state_changed (Evoral::Parameter, AutoState);
        void set_parameter_state_2X (const XMLNode& node, int version);
        void set_control_ids (const XMLNode&, int version);
 
+       void enable_changed ();
+       void bypassable_changed ();
+
        boost::shared_ptr<Plugin> plugin_factory (boost::shared_ptr<Plugin>);
        void add_plugin (boost::shared_ptr<Plugin>);
 
@@ -348,6 +370,7 @@ class LIBARDOUR_API PluginInsert : public Processor
 
        void latency_changed (framecnt_t, framecnt_t);
        bool _latency_changed;
+       uint32_t _bypass_port;
 };
 
 } // namespace ARDOUR