X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fframe_rate_change.cc;h=a1ff2ae650a93d7ec19782763f359b4b6a0c883a;hp=d0b302bb402a84d76f7c448d4d0405594a32b1e8;hb=4e2ff7851127cd85c3e7d78b42eb884d0cda0ac3;hpb=75cb27e8fc24c1b526802289dbddd67127142379 diff --git a/src/lib/frame_rate_change.cc b/src/lib/frame_rate_change.cc index d0b302bb4..a1ff2ae65 100644 --- a/src/lib/frame_rate_change.cc +++ b/src/lib/frame_rate_change.cc @@ -1,71 +1,55 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2021 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 . */ -#include + #include "frame_rate_change.h" +#include "types.h" +#include "content.h" +#include "film.h" #include "compose.hpp" +#include #include "i18n.h" -using std::string; - -static bool -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 - film at (f + d) FPS it will last F(f + d) seconds. - - Hence the difference in length over the length of the film will - be F(f + d) - Ff frames - = 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 +using std::string; +using std::shared_ptr; - 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 - */ +FrameRateChange::FrameRateChange () +{ - return (fabs (a - b) < 1e-4); } FrameRateChange::FrameRateChange (double source_, int dcp_) - : source (source_) - , dcp (dcp_) - , skip (false) - , repeat (1) - , change_speed (false) { - if (fabs (source / 2.0 - dcp) < fabs (source - dcp)) { + source = source_; + dcp = dcp_; + + if (fabs(source / 2.0 - dcp) < fabs(source - dcp)) { /* The difference between source and DCP frame rate will be lower (i.e. better) if we skip. */ skip = true; - } else if (fabs (source * 2 - dcp) < fabs (source - dcp)) { + } else if (fabs(source * 2 - dcp) < fabs(source - dcp)) { /* The difference between source and DCP frame rate would be better if we repeated each frame once; it may be better still if we repeated more than once. Work out the required repeat. @@ -74,9 +58,29 @@ FrameRateChange::FrameRateChange (double source_, int dcp_) } speed_up = dcp / (source * factor()); + + auto about_equal = [](double a, double b) { + return (fabs (a - b) < VIDEO_FRAME_RATE_EPSILON); + }; + change_speed = !about_equal (speed_up, 1.0); } + +FrameRateChange::FrameRateChange (shared_ptr film, shared_ptr content) + : FrameRateChange (content->active_video_frame_rate(film), film->video_frame_rate()) +{ + +} + + +FrameRateChange::FrameRateChange (shared_ptr film, Content const * content) + : FrameRateChange (content->active_video_frame_rate(film), film->video_frame_rate()) +{ + +} + + string FrameRateChange::description () const { @@ -95,7 +99,9 @@ FrameRateChange::description () const if (change_speed) { double const pc = dcp * 100 / (source * factor()); - description += String::compose (_("DCP will run at %1%% of the content speed.\n"), pc); + char buffer[256]; + snprintf (buffer, sizeof(buffer), _("DCP will run at %.1f%% of the content speed.\n"), pc); + description += buffer; } }