X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fdelivery.h;h=314b223538fa75c7aa6b508a8e40cd081ca5fbfe;hb=5bc4e54b7da3eb139d699c6e371d43540c69b519;hp=95ef485527ae458756528b25b22657c35c11cda2;hpb=2726184f42652a84816096887948658177ea24f8;p=ardour.git diff --git a/libs/ardour/ardour/delivery.h b/libs/ardour/ardour/delivery.h index 95ef485527..314b223538 100644 --- a/libs/ardour/ardour/delivery.h +++ b/libs/ardour/ardour/delivery.h @@ -30,7 +30,9 @@ namespace ARDOUR { class BufferSet; class IO; class MuteMaster; +class PannerShell; class Panner; +class Pannable; class Delivery : public IOProcessor { @@ -50,13 +52,15 @@ public: static bool role_requires_output_ports (Role r) { return r == Main || r == Send || r == Insert; } + bool does_routing() const { return true; } + /* Delivery to an existing output */ - Delivery (Session& s, boost::shared_ptr io, boost::shared_ptr mm, const std::string& name, Role); + Delivery (Session& s, boost::shared_ptr io, boost::shared_ptr, boost::shared_ptr mm, const std::string& name, Role); /* Delivery to a new output owned by this object */ - Delivery (Session& s, boost::shared_ptr mm, const std::string& name, Role); + Delivery (Session& s, boost::shared_ptr, boost::shared_ptr mm, const std::string& name, Role); ~Delivery (); bool set_name (const std::string& name); @@ -66,66 +70,58 @@ public: bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const; bool configure_io (ChanCount in, ChanCount out); - void run (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes, bool); + void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool); /* supplemental method used with MIDI */ - void flush (nframes_t nframes, nframes64_t time); - void transport_stopped (); - + void flush_buffers (framecnt_t nframes); void no_outs_cuz_we_no_monitor(bool); - - void set_solo_level (int32_t sl) { _solo_level = sl; } - void set_solo_isolated (bool yn) { _solo_isolated = yn; } - - void cycle_start (nframes_t); - void increment_output_offset (nframes_t); - void transport_stopped (sframes_t frame); + void transport_stopped (framepos_t frame); + void realtime_locate (); BufferSet& output_buffers() { return *_output_buffers; } PBD::Signal0 MuteChange; - static PBD::Signal1 CycleStart; - XMLNode& state (bool full); int set_state (const XMLNode&, int version); /* Panning */ static int disable_panners (void); - static int reset_panners (void); + static void reset_panners (); - boost::shared_ptr panner() const { return _panner; } + boost::shared_ptr panner_shell() const { return _panshell; } + boost::shared_ptr panner() const; + void unpan (); void reset_panner (); void defer_pan_reset (); void allow_pan_reset (); uint32_t pans_required() const { return _configured_input.n_audio(); } - void start_pan_touch (uint32_t which); - void end_pan_touch (uint32_t which); + virtual uint32_t pan_outs() const; protected: Role _role; BufferSet* _output_buffers; gain_t _current_gain; - nframes_t _output_offset; + boost::shared_ptr _panshell; + + gain_t target_gain (); + + private: bool _no_outs_cuz_we_no_monitor; - uint32_t _solo_level; - bool _solo_isolated; boost::shared_ptr _mute_master; - bool no_panner_reset; - boost::shared_ptr _panner; - + static bool panners_legal; - static PBD::Signal0 PannersLegal; + static PBD::Signal0 PannersLegal; - int panners_became_legal (); + void panners_became_legal (); PBD::ScopedConnection panner_legal_c; void output_changed (IOChange, void*); - gain_t target_gain (); + bool _no_panner_reset; };