lua MidiBuffer bindings
[ardour.git] / libs / ardour / ardour / delayline.h
1 /*
2     Copyright (C) 2006, 2013 Paul Davis
3     Copyright (C) 2013, 2014 Robin Gareus <robin@gareus.org>
4
5     This program is free software; you can redistribute it and/or modify it
6     under the terms of the GNU General Public License as published by the Free
7     Software Foundation; either version 2 of the License, or (at your option)
8     any later version.
9
10     This program is distributed in the hope that it will be useful, but WITHOUT
11     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13     for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_delayline_h__
21 #define __ardour_delayline_h__
22
23 #include <boost/shared_ptr.hpp>
24 #include <boost/shared_array.hpp>
25
26 #include "ardour/types.h"
27 #include "ardour/processor.h"
28
29 namespace ARDOUR {
30
31 class BufferSet;
32 class ChanCount;
33 class Session;
34
35 /** Meters peaks on the input and stores them for access.
36  */
37 class LIBARDOUR_API DelayLine : public Processor {
38 public:
39
40   DelayLine (Session& s, const std::string& name);
41         ~DelayLine ();
42
43         bool display_to_user() const { return false; }
44
45         void run (BufferSet&, framepos_t, framepos_t, double, pframes_t, bool);
46         void set_delay(framecnt_t signal_delay);
47         framecnt_t get_delay() { return _pending_delay; }
48
49         bool configure_io (ChanCount in, ChanCount out);
50         bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
51
52         void flush();
53         void realtime_handle_transport_stopped () { flush(); }
54         void realtime_locate () { flush(); }
55         void monitoring_changed() { flush(); }
56
57         XMLNode& state (bool full);
58
59 private:
60         friend class IO;
61         framecnt_t _delay, _pending_delay;
62         framecnt_t _bsiz,  _pending_bsiz;
63         frameoffset_t _roff, _woff;
64         boost::shared_array<Sample> _buf;
65         boost::shared_array<Sample> _pending_buf;
66         boost::shared_ptr<MidiBuffer> _midi_buf;
67         bool _pending_flush;
68 };
69
70 } // namespace ARDOUR
71
72 #endif // __ardour_meter_h__