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