Fix crash with sub-sample push parts in AudioMerger.
[dcpomatic.git] / test / content_test.cc
1 /*
2     Copyright (C) 2017-2018 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/content_test.cc
22  *  @brief Tests which expose problems with certain pieces of content.
23  *  @ingroup completedcp
24  */
25
26 #include "lib/film.h"
27 #include "lib/dcp_content_type.h"
28 #include "lib/content_factory.h"
29 #include "lib/content.h"
30 #include "lib/ratio.h"
31 #include "test.h"
32 #include <boost/test/unit_test.hpp>
33
34 using boost::shared_ptr;
35 using namespace dcpomatic;
36
37 /** There has been garbled audio with this piece of content */
38 BOOST_AUTO_TEST_CASE (content_test1)
39 {
40         shared_ptr<Film> film = new_test_film ("content_test1");
41         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
42         film->set_name ("content_test1");
43         film->set_container (Ratio::from_id ("185"));
44
45         shared_ptr<Content> content = content_factory(private_data / "demo_sound_bug.mkv").front ();
46         film->examine_and_add_content (content);
47         BOOST_REQUIRE (!wait_for_jobs ());
48         film->make_dcp ();
49         BOOST_REQUIRE (!wait_for_jobs ());
50
51         boost::filesystem::path check;
52
53         for (
54                 boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator("build/test/content_test1/" + film->dcp_name());
55                 i != boost::filesystem::directory_iterator();
56                 ++i) {
57
58                 if (i->path().leaf().string().substr(0, 4) == "pcm_") {
59                         check = *i;
60                 }
61         }
62
63         check_mxf_audio_file ("test/data/content_test1.mxf", check);
64 }
65
66 /** Taking some 23.976fps content and trimming 0.5s (in content time) from the start
67  *  has failed in the past; ensure that this is fixed.
68  */
69 BOOST_AUTO_TEST_CASE (content_test2)
70 {
71         shared_ptr<Film> film = new_test_film2 ("content_test2");
72
73         shared_ptr<Content> content = content_factory("test/data/red_23976.mp4").front();
74         film->examine_and_add_content (content);
75         BOOST_REQUIRE (!wait_for_jobs ());
76         content->set_trim_start(ContentTime::from_seconds(0.5));
77         film->make_dcp ();
78         BOOST_REQUIRE (!wait_for_jobs ());
79 }
80
81 /** Check that position and start trim of video content is forced to a frame boundary */
82 BOOST_AUTO_TEST_CASE (content_test3)
83 {
84         shared_ptr<Film> film = new_test_film2 ("content_test3");
85         film->set_sequence (false);
86
87         shared_ptr<Content> content = content_factory("test/data/red_24.mp4").front();
88         film->examine_and_add_content (content);
89         BOOST_REQUIRE (!wait_for_jobs ());
90
91         /* Trim */
92
93         /* 12 frames */
94         content->set_trim_start (ContentTime::from_seconds (12.0 / 24.0));
95         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (12.0 / 24.0));
96
97         /* 11.2 frames */
98         content->set_trim_start (ContentTime::from_seconds (11.2 / 24.0));
99         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (11.0 / 24.0));
100
101         /* 13.9 frames */
102         content->set_trim_start (ContentTime::from_seconds (13.9 / 24.0));
103         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (14.0 / 24.0));
104
105         /* Position */
106
107         /* 12 frames */
108         content->set_position (film, DCPTime::from_seconds(12.0 / 24.0));
109         BOOST_CHECK (content->position() == DCPTime::from_seconds (12.0 / 24.0));
110
111         /* 11.2 frames */
112         content->set_position (film, DCPTime::from_seconds(11.2 / 24.0));
113         BOOST_CHECK (content->position() == DCPTime::from_seconds (11.0 / 24.0));
114
115         /* 13.9 frames */
116         content->set_position (film, DCPTime::from_seconds(13.9 / 24.0));
117         BOOST_CHECK (content->position() == DCPTime::from_seconds (14.0 / 24.0));
118
119         content->set_video_frame_rate (25);
120
121         /* Check that trim is fixed when the content's video frame rate is `forced' */
122
123         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (15.0 / 25.0));
124 }