Use dcp::file_to_string().
[dcpomatic.git] / src / lib / frame_interval_checker.h
1 /*
2     Copyright (C) 2020-2021 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
22 #include "dcpomatic_time.h"
23 #include <boost/optional.hpp>
24 #include <vector>
25
26
27 class FrameIntervalChecker
28 {
29 public:
30         FrameIntervalChecker () {}
31         FrameIntervalChecker (FrameIntervalChecker const &) = delete;
32         FrameIntervalChecker& operator= (FrameIntervalChecker const &) = delete;
33
34         void feed (dcpomatic::ContentTime time, double frame_rate);
35
36         enum Guess
37         {
38                 AGAIN,
39                 PROBABLY_3D,
40                 PROBABLY_NOT_3D
41         };
42
43         Guess guess () const;
44
45 private:
46         boost::optional<dcpomatic::ContentTime> _last;
47         /** Intervals of last frames, in fractions of a frame; i.e. 1 in here
48          *  means the last two frames were one frame interval apart according
49          *  to the frame rate passed to ::feed().
50          */
51         std::vector<double> _intervals;
52
53         static int const _frames;
54 };
55