use a note tracker to resolve notes cut off during render by the end of the region
[ardour.git] / libs / ardour / export_timespan.cc
1 /*
2  * Copyright (C) 2008-2009 Sakari Bergen <sakari.bergen@beatwaves.net>
3  * Copyright (C) 2008-2017 Paul Davis <paul@linuxaudiosystems.com>
4  * Copyright (C) 2009-2012 David Robillard <d@drobilla.net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20
21 #include "ardour/export_timespan.h"
22
23 namespace ARDOUR
24 {
25
26 ExportTimespan::ExportTimespan (ExportStatusPtr status, samplecnt_t sample_rate) :
27         status (status),
28         start_sample (0),
29         end_sample (0),
30         position (0),
31         sample_rate (sample_rate),
32         _realtime (false)
33 {
34
35 }
36
37 ExportTimespan::~ExportTimespan ()
38 {
39 }
40
41 void
42 ExportTimespan::set_range (samplepos_t start, samplepos_t end)
43 {
44         start_sample = start;
45         position = start_sample;
46         end_sample = end;
47 }
48
49 } // namespace ARDOUR