set latency of sidechain port
[ardour.git] / libs / ardour / ardour / plugin_insert.h
index bd726826925ffc71bebc55004a39ea280280b4a1..2905f012bfd2b95a0ebd70d1b081f958301c8210 100644 (file)
@@ -93,6 +93,8 @@ 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 output_map () const; ///< combined (all instances) output map
        bool has_midi_bypass () const;
@@ -144,12 +146,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!
 
@@ -163,6 +167,10 @@ 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 ();
@@ -178,15 +186,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). */
@@ -197,10 +203,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;
@@ -297,6 +303,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;
 
@@ -312,6 +320,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;
@@ -337,6 +346,8 @@ class LIBARDOUR_API PluginInsert : public Processor
 
        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 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);