ardour
engine_slave.cc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2004 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 #include <iostream>
21 #include <cerrno>
22 
23 #include "ardour/audioengine.h"
24 #include "ardour/audio_backend.h"
25 #include "ardour/slave.h"
26 
27 using namespace std;
28 using namespace ARDOUR;
29 
30 Engine_Slave::Engine_Slave (AudioEngine& e)
31  : engine (e)
32 {
33  double x;
34  framepos_t p;
35  /* call this to initialize things */
36  speed_and_position (x, p);
37 }
38 
40 {
41 }
42 
43 bool
45 {
46  return true;
47 }
48 
49 bool
51 {
52  return true;
53 }
54 
55 bool
57 {
59 
60  if (backend) {
61  _starting = backend->speed_and_position (sp, position);
62  } else {
63  _starting = false;
64  }
65 
66  return true;
67 }
virtual bool speed_and_position(double &speed, framepos_t &position)
boost::shared_ptr< AudioBackend > current_backend() const
Definition: audioengine.h:73
Definition: Beats.hpp:239
bool locked() const
Definition: engine_slave.cc:44
Definition: amp.h:29
bool ok() const
Definition: engine_slave.cc:50
int64_t framepos_t
Definition: types.h:66
LIBARDOUR_API PBD::PropertyDescriptor< framepos_t > position
Definition: region.cc:65
AudioEngine & engine
Definition: slave.h:510
bool speed_and_position(double &speed, framepos_t &pos)
Definition: engine_slave.cc:56