X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fframe_rate_change.cc;h=8b2d6cf99c54411d95008f0bc2d29835000d6dec;hb=bef83c247541a6a3063964db9c0bd7ede3ec868a;hp=31fce6b6d71182625ebc0a43bc4609d1e7f5ab8c;hpb=0b6c6de07f9a3aa28c2e8ca8ef30340e3fa1bfc6;p=dcpomatic.git diff --git a/src/lib/frame_rate_change.cc b/src/lib/frame_rate_change.cc index 31fce6b6d..8b2d6cf99 100644 --- a/src/lib/frame_rate_change.cc +++ b/src/lib/frame_rate_change.cc @@ -1,19 +1,20 @@ /* - Copyright (C) 2012-2014 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -26,7 +27,7 @@ using std::string; static bool -about_equal (float a, float b) +about_equal (double a, double b) { /* A film of F seconds at f FPS will be Ff frames; Consider some delta FPS d, so if we run the same @@ -37,14 +38,14 @@ about_equal (float a, float b) = Ff + Fd - Ff frames = Fd frames = Fd/f seconds - + So if we accept a difference of 1 frame, ie 1/f seconds, we can say that 1/f = Fd/f ie 1 = Fd ie d = 1/F - + So for a 3hr film, ie F = 3 * 60 * 60 = 10800, the acceptable FPS error is 1/F ~= 0.0001 ~= 10-e4 */ @@ -53,7 +54,7 @@ about_equal (float a, float b) } -FrameRateChange::FrameRateChange (float source_, int dcp_) +FrameRateChange::FrameRateChange (double source_, int dcp_) : source (source_) , dcp (dcp_) , skip (false) @@ -81,7 +82,7 @@ string FrameRateChange::description () const { string description; - + if (!skip && repeat == 1 && !change_speed) { description = _("Content and DCP have the same rate.\n"); } else { @@ -94,7 +95,7 @@ FrameRateChange::description () const } if (change_speed) { - float const pc = dcp * 100 / (source * factor()); + double const pc = dcp * 100 / (source * factor()); description += String::compose (_("DCP will run at %1%% of the content speed.\n"), pc); } }