]> git.sesse.net Git - kdenlive/blob - src/gentime.cpp
Reindent all source files
[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     m_time = 0.0;
25 }
26
27 /** Creates a time object, with time given in seconds. */
28 GenTime::GenTime(double seconds) {
29     m_time = seconds;
30 }
31
32 /** Creates a time object, by passing number of frames and how many frames per second */
33 GenTime::GenTime(int frames, double framesPerSecond) {
34     m_time = (double) frames / framesPerSecond;
35 }
36
37 /** Returns the time, in milliseconds */
38 double GenTime::ms() const {
39     return m_time * 1000;
40 }
41
42 /** Returns the time in frames, after being given the number of frames per second */
43 double GenTime::frames(double framesPerSecond) const {
44     return (int) floor(m_time * framesPerSecond + 0.5);
45 }
46
47 GenTime::~GenTime() {
48 }