X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Ftime_calculation_test.cc;h=6c7d69b25dedee9f9cf85e9a9b964c95084e507b;hb=a4c5a9ff48c4cec51e3488f4f8692bf2a2f82dca;hp=e9aa37f1e34b3149e581d2b93c25c66a14779f7b;hpb=0aa823f1a0a418a5345af1907effaab51e225274;p=dcpomatic.git diff --git a/test/time_calculation_test.cc b/test/time_calculation_test.cc index e9aa37f1e..6c7d69b25 100644 --- a/test/time_calculation_test.cc +++ b/test/time_calculation_test.cc @@ -1,19 +1,20 @@ /* Copyright (C) 2015-2016 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 . */ @@ -42,7 +43,7 @@ static string const xml = "" "1280" "720" "25" - "0" + "2d" "0" "0" "0" @@ -157,7 +158,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_time_calculation_test) BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds (1)); /* 25fps content, 24fps DCP; length should be increased */ film->set_video_frame_rate (24); - BOOST_CHECK_SMALL (abs (content->full_length().get() - DCPTime::from_seconds(25.0 / 24).get()), 2); + BOOST_CHECK_SMALL (labs (content->full_length().get() - DCPTime::from_seconds(25.0 / 24).get()), 2L); /* 25fps content, 30fps DCP; length should be decreased */ film->set_video_frame_rate (30); BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds (25.0 / 30));