fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / slave.cc
1 /*
2     Copyright (C) 2002 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 "ardour/audioengine.h"
21 #include "ardour/session.h"
22 #include "ardour/slave.h"
23
24 namespace ARDOUR {
25
26 TempoMap&
27 SlaveSessionProxy::tempo_map() const
28 {
29         return session.tempo_map();
30 }
31
32 framecnt_t
33 SlaveSessionProxy::frame_rate() const
34 {
35         return session.frame_rate();
36 }
37
38 pframes_t
39 SlaveSessionProxy::frames_per_cycle() const
40 {
41         return session.engine().samples_per_cycle();
42 }
43
44 framepos_t
45 SlaveSessionProxy::audible_frame() const
46 {
47         return session.audible_frame();
48 }
49
50 framepos_t
51 SlaveSessionProxy::transport_frame() const
52 {
53         return session.transport_frame();
54 }
55
56 pframes_t
57 SlaveSessionProxy::frames_since_cycle_start() const
58 {
59         return session.engine().samples_since_cycle_start();
60 }
61
62 framepos_t
63 SlaveSessionProxy::sample_time_at_cycle_start() const
64 {
65         return session.engine().sample_time_at_cycle_start();
66 }
67
68
69 framepos_t
70 SlaveSessionProxy::frame_time() const
71 {
72         return session.engine().sample_time();
73 }
74
75 void
76 SlaveSessionProxy::request_locate(framepos_t frame, bool with_roll)
77 {
78         session.request_locate(frame, with_roll);
79 }
80
81 void
82 SlaveSessionProxy::request_transport_speed(double speed)
83 {
84         session.request_transport_speed(speed);
85 }
86
87 } // namespace ARDOUR