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

« back to all changes in this revision

Viewing changes to libs/ardour/slave.cc

  • 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) 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
framepos_t
 
39
SlaveSessionProxy::audible_frame() const
 
40
{
 
41
        return session.audible_frame();
 
42
}
 
43
 
 
44
framepos_t
 
45
SlaveSessionProxy::transport_frame() const
 
46
{
 
47
        return session.transport_frame();
 
48
}
 
49
 
 
50
pframes_t
 
51
SlaveSessionProxy::frames_since_cycle_start() const
 
52
{
 
53
        return session.engine().frames_since_cycle_start();
 
54
}
 
55
 
 
56
framepos_t
 
57
SlaveSessionProxy::frame_time() const
 
58
{
 
59
        return session.engine().frame_time();
 
60
}
 
61
 
 
62
void
 
63
SlaveSessionProxy::request_locate(framepos_t frame, bool with_roll)
 
64
{
 
65
        session.request_locate(frame, with_roll);
 
66
}
 
67
 
 
68
void
 
69
SlaveSessionProxy::request_transport_speed(double speed)
 
70
{
 
71
        session.request_transport_speed(speed);
 
72
}
 
73
 
 
74
} // namespace ARDOUR