Basic test that we (roughly) hit average J2K bandwidth targets.
[dcpomatic.git] / test / j2k_bandwidth_test.cc
1 /*
2     Copyright (C) 2016 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 "test.h"
22 #include "lib/dcp_content_type.h"
23 #include "lib/film.h"
24 #include "lib/image_content.h"
25 #include "lib/video_content.h"
26 #include <dcp/raw_convert.h>
27 #include <boost/test/unit_test.hpp>
28 #include <boost/shared_ptr.hpp>
29
30 using std::string;
31 using boost::shared_ptr;
32
33 static void
34 check (int target_bits_per_second)
35 {
36         int const duration = 10;
37
38         string const name = "j2k_bandwidth_test_" + dcp::raw_convert<string> (target_bits_per_second);
39         shared_ptr<Film> film = new_test_film (name);
40         film->set_name (name);
41         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
42         film->set_j2k_bandwidth (target_bits_per_second);
43         shared_ptr<ImageContent> content (new ImageContent (film, private_data / "prophet_frame.tiff"));
44         film->examine_and_add_content (content);
45         wait_for_jobs ();
46         content->video->set_length (24 * duration);
47         film->make_dcp ();
48         wait_for_jobs ();
49
50         boost::filesystem::directory_iterator i (boost::filesystem::path ("build") / "test" / name / "video");
51         boost::filesystem::path test = *i++;
52         BOOST_REQUIRE (i == boost::filesystem::directory_iterator ());
53
54         double actual_bits_per_second = boost::filesystem::file_size(test) * 8.0 / duration;
55
56         /* Check that we're within 85% to 115% of target on average */
57         BOOST_CHECK ((actual_bits_per_second / target_bits_per_second) > 0.85);
58         BOOST_CHECK ((actual_bits_per_second / target_bits_per_second) < 1.15);
59 }
60
61 BOOST_AUTO_TEST_CASE (j2k_bandwidth_test)
62 {
63         check (50000000);
64         check (100000000);
65         check (150000000);
66         check (200000000);
67         check (250000000);
68 }