d7fed6dd0b45d05c87954f0eea1e8ee835633cac
[dcpomatic.git] / src / lib / frame_rate_change.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic 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     DCP-o-matic 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
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #ifndef DCPOMATIC_FRAME_RATE_CHANGE_H
22 #define DCPOMATIC_FRAME_RATE_CHANGE_H
23
24
25 #include <memory>
26 #include <string>
27
28
29 class Film;
30 class Content;
31
32 class FrameRateChange
33 {
34 public:
35         FrameRateChange ();
36         FrameRateChange (double, int);
37         FrameRateChange (std::shared_ptr<const Film> film, std::shared_ptr<const Content> content);
38         FrameRateChange (std::shared_ptr<const Film> film, Content const * content);
39
40         /** @return factor by which to multiply a source frame rate
41             to get the effective rate after any skip or repeat has happened.
42         */
43         double factor () const {
44                 if (skip) {
45                         return 0.5;
46                 }
47
48                 return repeat;
49         }
50
51         double source;
52         int dcp;
53
54         /** true to skip every other frame */
55         bool skip;
56         /** number of times to use each frame (e.g. 1 is normal, 2 means repeat each frame once, and so on) */
57         int repeat;
58         /** true if this DCP will run its video faster or slower than the source
59          *  without taking into account `repeat' nor `skip'.
60          *  (e.g. change_speed will be true if
61          *          source is 29.97fps, DCP is 30fps
62          *          source is 14.50fps, DCP is 30fps
63          *  but not if
64          *          source is 15.00fps, DCP is 30fps
65          *          source is 12.50fps, DCP is 25fps)
66          */
67         bool change_speed;
68
69         /** Amount by which the video is being sped-up in the DCP; e.g. for a
70          *  24fps source in a 25fps DCP this would be 25/24.
71          */
72         double speed_up;
73
74         std::string description () const;
75
76 private:
77         void construct (double source_, int dcp_);
78 };
79
80 #endif