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