~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/ardour/ardour/port_insert.h

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (C) 2000,2007 Paul Davis
 
3
 
 
4
    This program is free software; you can redistribute it and/or modify
 
5
    it under the terms of the GNU General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or
 
7
    (at your option) any later version.
 
8
 
 
9
    This program is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
    GNU General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU General Public License
 
15
    along with this program; if not, write to the Free Software
 
16
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 
 
18
*/
 
19
 
 
20
#ifndef __ardour_port_insert_h__
 
21
#define __ardour_port_insert_h__
 
22
 
 
23
#include <vector>
 
24
#include <string>
 
25
#include <exception>
 
26
 
 
27
#include "ardour/ardour.h"
 
28
#include "ardour/io_processor.h"
 
29
#include "ardour/types.h"
 
30
 
 
31
class XMLNode;
 
32
class MTDM;
 
33
 
 
34
namespace ARDOUR {
 
35
 
 
36
class Session;
 
37
class IO;
 
38
class Delivery;
 
39
class MuteMaster;
 
40
class Pannable;
 
41
 
 
42
/** Port inserts: send output to a Jack port, pick up input at a Jack port
 
43
 */
 
44
class PortInsert : public IOProcessor
 
45
{
 
46
  public:
 
47
        PortInsert (Session&, boost::shared_ptr<Pannable>, boost::shared_ptr<MuteMaster> mm);
 
48
        ~PortInsert ();
 
49
 
 
50
        XMLNode& state(bool full);
 
51
        XMLNode& get_state(void);
 
52
        int set_state (const XMLNode&, int version);
 
53
 
 
54
        void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
 
55
 
 
56
        framecnt_t signal_latency () const;
 
57
 
 
58
        bool set_name (const std::string& name);
 
59
 
 
60
        bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
 
61
        bool configure_io (ChanCount in, ChanCount out);
 
62
 
 
63
        void activate ();
 
64
        void deactivate ();
 
65
 
 
66
        uint32_t bit_slot() const { return _bitslot; }
 
67
 
 
68
        void start_latency_detection ();
 
69
        void stop_latency_detection ();
 
70
 
 
71
        MTDM* mtdm () const { return _mtdm; }
 
72
        void set_measured_latency (framecnt_t);
 
73
        framecnt_t latency () const;
 
74
 
 
75
        static std::string name_and_id_new_insert (Session&, uint32_t&);
 
76
 
 
77
  private:
 
78
        /* disallow copy construction */
 
79
        PortInsert (const PortInsert&);
 
80
 
 
81
        boost::shared_ptr<Delivery> _out;
 
82
 
 
83
        uint32_t   _bitslot;
 
84
        MTDM*      _mtdm;
 
85
        bool       _latency_detect;
 
86
        framecnt_t _latency_flush_frames;
 
87
        framecnt_t _measured_latency;
 
88
};
 
89
 
 
90
} // namespace ARDOUR
 
91
 
 
92
#endif /* __ardour_port_insert_h__ */