diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-05-01 01:31:35 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-05-01 01:31:35 +0200 |
| commit | 8963f0007af1a312017b9627c18b82ec2a577591 (patch) | |
| tree | baeb6f2c17da72248408b8c1d695242b44edda9e /src/lib/frame_interval_checker.cc | |
| parent | 29f84e2b8785585885e0658bdf9938967547460f (diff) | |
C++11 tidying.
Diffstat (limited to 'src/lib/frame_interval_checker.cc')
| -rw-r--r-- | src/lib/frame_interval_checker.cc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/frame_interval_checker.cc b/src/lib/frame_interval_checker.cc index dcb9aeaf5..e40958a42 100644 --- a/src/lib/frame_interval_checker.cc +++ b/src/lib/frame_interval_checker.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2020 Carl Hetherington <cth@carlh.net> + Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -18,12 +18,16 @@ */ + #include "frame_interval_checker.h" + using namespace dcpomatic; + int const FrameIntervalChecker::_frames = 16; + void FrameIntervalChecker::feed (ContentTime time, double frame_rate) { @@ -39,6 +43,7 @@ FrameIntervalChecker::feed (ContentTime time, double frame_rate) _last = time; } + FrameIntervalChecker::Guess FrameIntervalChecker::guess () const { @@ -46,7 +51,7 @@ FrameIntervalChecker::guess () const /* How soon can you land? * I can't tell. * You can tell me, I'm a doctor. - * Nom I mean I'm just not sure. + * No I mean I'm just not sure. * Can't you take a guess? * Well, not for another two hours. * You can't take a guess for another two hours? |
