c48191abe84ac932a3cfded6e1df9e77e0cc8ac9
[ardour.git] / libs / timecode / src / bbt_time.cc
1 /*
2   Copyright (C) 2002-2010 Paul Davis
3
4   This program is free software; you can redistribute it and/or modify it
5   under the terms of the GNU Lesser General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or (at your
7   option) any later version.
8   
9   This program is distributed in the hope that it will be useful, but WITHOUT
10   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
12   License for more details.
13   
14   You should have received a copy of the GNU Lesser General Public License
15   along with this program; if not, write to the Free Software Foundation,
16   Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <cmath>
20 #include <cassert>
21
22 #include "timecode/bbt_time.h"
23
24 using namespace Timecode;
25
26 const double BBT_Time::ticks_per_beat = 1920.0;
27
28 BBT_Time::BBT_Time (double dbeats)
29 {
30         /* NOTE: this does not construct a BBT time in a canonical form,
31            in that beats may be a very large number, and bars will
32            always be zero.
33         */
34
35         assert (dbeats >= 0);
36
37         bars = 0;
38         beats = rint (floor (dbeats));
39         ticks = rint (floor (BBT_Time::ticks_per_beat * fmod (dbeats, 1.0)));
40 }