X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fsend.h;h=9423791d821b6707249f64ac7e40ae90b4632e47;hb=6bd583803ea1daf19a1c088766122b5cdf340171;hp=77bb6d901710a9cb1b39d648e7f4ba5348d5914e;hpb=7183242b8c8d9296f94a035fb66b1eae06fd3496;p=ardour.git diff --git a/libs/ardour/ardour/send.h b/libs/ardour/ardour/send.h index 77bb6d9017..9423791d82 100644 --- a/libs/ardour/ardour/send.h +++ b/libs/ardour/ardour/send.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000 Paul Davis + Copyright (C) 2000 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,56 +20,94 @@ #ifndef __ardour_send_h__ #define __ardour_send_h__ -#include #include +#include "pbd/stateful.h" -#include "pbd/stateful.h" #include "ardour/ardour.h" -#include "ardour/audioengine.h" -#include "ardour/io_processor.h" +#include "ardour/delivery.h" namespace ARDOUR { -class Send : public IOProcessor +class PeakMeter; +class Amp; +class GainControl; +class DelayLine; + +class LIBARDOUR_API Send : public Delivery { - public: - Send (Session&); - Send (Session&, const XMLNode&); +public: + Send (Session&, boost::shared_ptr pannable, boost::shared_ptr, Delivery::Role r = Delivery::Send, bool ignore_bitslot = false); virtual ~Send (); - uint32_t bit_slot() const { return bitslot; } - - ChanCount output_streams() const; - ChanCount input_streams () const; - - void run_in_place (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes); - - void activate() {} - void deactivate () {} + uint32_t bit_slot() const { return _bitslot; } + + bool display_to_user() const; + bool is_personal () const { return _role == Personal; } + + boost::shared_ptr amp() const { return _amp; } + boost::shared_ptr meter() const { return _meter; } + boost::shared_ptr gain_control() const { return _gain_control; } + + bool metering() const { return _metering; } + void set_metering (bool yn) { _metering = yn; } - void set_metering (bool yn); + int set_state(const XMLNode&, int version); - XMLNode& state(bool full); - XMLNode& get_state(void); - int set_state(const XMLNode& node); + PBD::Signal0 SelfDestruct; + void set_remove_on_disconnect (bool b) { _remove_on_disconnect = b; } + bool remove_on_disconnect () const { return _remove_on_disconnect; } uint32_t pans_required() const { return _configured_input.n_audio(); } - void expect_inputs (const ChanCount&); - bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const; + void run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_sample, double speed, pframes_t nframes, bool); + + bool can_support_io_configuration (const ChanCount& in, ChanCount& out); bool configure_io (ChanCount in, ChanCount out); + /* latency compensation */ + void set_delay_in (samplecnt_t); // should only be called by Route::update_signal_latency + void set_delay_out (samplecnt_t); // should only be called by InternalReturn::set_playback_offset (via Route::update_signal_latency) + samplecnt_t get_delay_in () const { return _delay_in; } + samplecnt_t get_delay_out () const { return _delay_out; } + samplecnt_t signal_latency () const; + + static PBD::Signal0 ChangedLatency; + + void activate (); + void deactivate (); + + bool set_name (const std::string& str); + static uint32_t how_many_sends(); - static void make_unique (XMLNode &, Session &); + static std::string name_and_id_new_send (Session&, Delivery::Role r, uint32_t&, bool); + +protected: + XMLNode& state (); - private: + bool _metering; + boost::shared_ptr _gain_control; + boost::shared_ptr _amp; + boost::shared_ptr _meter; + boost::shared_ptr _send_delay; + boost::shared_ptr _thru_delay; + +private: /* disallow copy construction */ Send (const Send&); - - bool _metering; - ChanCount expected_inputs; - uint32_t bitslot; + + void panshell_changed (); + void snd_output_changed (IOChange, void*); + + void update_delaylines (); + + int set_state_2X (XMLNode const &, int); + + uint32_t _bitslot; + + samplecnt_t _delay_in; + samplecnt_t _delay_out; + bool _remove_on_disconnect; }; } // namespace ARDOUR