fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / engine_slave.cc
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
39 Engine_Slave::~Engine_Slave ()
40 {
41 }
42
43 bool
44 Engine_Slave::locked() const
45 {
46         return true;
47 }
48
49 bool
50 Engine_Slave::ok() const
51 {
52         return true;
53 }
54
55 bool
56 Engine_Slave::speed_and_position (double& sp, framepos_t& position)
57 {
58         boost::shared_ptr<AudioBackend> backend = engine.current_backend();
59
60         if (backend) {
61                 _starting = backend->speed_and_position (sp, position);
62         } else {
63                 _starting = false;
64         }
65
66         return true;
67 }