]> git.sesse.net Git - kdenlive/blob - src/gentime.cpp
Reindent the codebase using 'linux' bracket placement.
[kdenlive] / src / gentime.cpp
1 /***************************************************************************
2                           time.cpp  -  description
3                              -------------------
4     begin                : Sat Sep 14 2002
5     copyright            : (C) 2002 by Jason Wood
6     email                : jasonwood@blueyonder.co.uk
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #include "gentime.h"
19
20 double GenTime::s_delta = 0.00001;
21
22 /** Creates a time object, with a time of 0 seconds. */
23 GenTime::GenTime()
24 {
25     m_time = 0.0;
26 }
27
28 /** Creates a time object, with time given in seconds. */
29 GenTime::GenTime(double seconds)
30 {
31     m_time = seconds;
32 }
33
34 /** Creates a time object, by passing number of frames and how many frames per second */
35 GenTime::GenTime(int frames, double framesPerSecond)
36 {
37     m_time = (double) frames / framesPerSecond;
38 }
39
40 /** Returns the time, in milliseconds */
41 double GenTime::ms() const
42 {
43     return m_time * 1000;
44 }
45
46 /** Returns the time in frames, after being given the number of frames per second */
47 double GenTime::frames(double framesPerSecond) const
48 {
49     return floor(m_time * framesPerSecond + 0.5);
50 }
51
52 GenTime::~GenTime()
53 {
54 }