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

« back to all changes in this revision

Viewing changes to libs/ardour/ardour/capturing_processor.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) 2011 Paul Davis
 
3
    Author: Sakari Bergen
 
4
 
 
5
    This program is free software; you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation; either version 2 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program; if not, write to the Free Software
 
17
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
*/
 
19
 
 
20
#ifndef __ardour_capturing_processor_h__
 
21
#define __ardour_capturing_processor_h__
 
22
 
 
23
#include "ardour/processor.h"
 
24
 
 
25
namespace ARDOUR {
 
26
 
 
27
class CapturingProcessor : public Processor
 
28
{
 
29
  public:
 
30
        CapturingProcessor (Session & session);
 
31
        ~CapturingProcessor();
 
32
 
 
33
  public: // main interface
 
34
        BufferSet const & get_capture_buffers() const { return capture_buffers; }
 
35
 
 
36
  public: // Processor overrides
 
37
        bool display_to_user() const { return false; }
 
38
        int set_block_size (pframes_t nframes);
 
39
        void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool result_required);
 
40
        bool configure_io (ChanCount in, ChanCount out);
 
41
        bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
 
42
        virtual XMLNode& state (bool);
 
43
 
 
44
  private:
 
45
 
 
46
        void realloc_buffers();
 
47
 
 
48
        framecnt_t block_size;
 
49
        BufferSet capture_buffers;
 
50
};
 
51
 
 
52
} // namespace ARDOUR
 
53
 
 
54
#endif // __ardour_capturing_processor_h__