Supporters update.
[dcpomatic.git] / test / content_test.cc
1 /*
2     Copyright (C) 2017-2021 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
22 /** @file  test/content_test.cc
23  *  @brief Tests which expose problems with certain pieces of content.
24  *  @ingroup completedcp
25  */
26
27
28 #include "lib/audio_content.h"
29 #include "lib/film.h"
30 #include "lib/dcp_content_type.h"
31 #include "lib/content_factory.h"
32 #include "lib/content.h"
33 #include "lib/ratio.h"
34 #include "test.h"
35 #include <boost/test/unit_test.hpp>
36
37
38 using namespace dcpomatic;
39
40
41 /** There has been garbled audio with this piece of content */
42 BOOST_AUTO_TEST_CASE (content_test1)
43 {
44         auto film = new_test_film ("content_test1");
45         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
46         film->set_name ("content_test1");
47         film->set_container (Ratio::from_id ("185"));
48         film->set_audio_channels(16);
49
50         auto content = content_factory(TestPaths::private_data() / "demo_sound_bug.mkv")[0];
51         film->examine_and_add_content (content);
52         BOOST_REQUIRE (!wait_for_jobs ());
53         make_and_verify_dcp (
54                 film,
55                 { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE }
56                 );
57
58         check_mxf_audio_file(TestPaths::private_data() / "content_test1.mxf", dcp_file(film, "pcm_"));
59 }
60
61
62 /** Taking some 23.976fps content and trimming 0.5s (in content time) from the start
63  *  has failed in the past; ensure that this is fixed.
64  */
65 BOOST_AUTO_TEST_CASE (content_test2)
66 {
67         auto content = content_factory("test/data/red_23976.mp4")[0];
68         auto film = new_test_film2 ("content_test2", {content});
69         content->set_trim_start(film, ContentTime::from_seconds(0.5));
70         make_and_verify_dcp (film);
71 }
72
73
74 /** Check that position and start trim of video content is forced to a frame boundary */
75 BOOST_AUTO_TEST_CASE (content_test3)
76 {
77         auto content = content_factory("test/data/red_24.mp4")[0];
78         auto film = new_test_film2 ("content_test3", {content});
79         film->set_sequence (false);
80
81         /* Trim */
82
83         /* 12 frames */
84         content->set_trim_start(film, ContentTime::from_seconds (12.0 / 24.0));
85         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (12.0 / 24.0));
86
87         /* 11.2 frames */
88         content->set_trim_start(film, ContentTime::from_seconds (11.2 / 24.0));
89         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (11.0 / 24.0));
90
91         /* 13.9 frames */
92         content->set_trim_start(film, ContentTime::from_seconds (13.9 / 24.0));
93         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (14.0 / 24.0));
94
95         /* Position */
96
97         /* 12 frames */
98         content->set_position (film, DCPTime::from_seconds(12.0 / 24.0));
99         BOOST_CHECK (content->position() == DCPTime::from_seconds (12.0 / 24.0));
100
101         /* 11.2 frames */
102         content->set_position (film, DCPTime::from_seconds(11.2 / 24.0));
103         BOOST_CHECK (content->position() == DCPTime::from_seconds (11.0 / 24.0));
104
105         /* 13.9 frames */
106         content->set_position (film, DCPTime::from_seconds(13.9 / 24.0));
107         BOOST_CHECK (content->position() == DCPTime::from_seconds (14.0 / 24.0));
108
109         content->set_video_frame_rate(film, 25);
110
111         /* Check that trim is fixed when the content's video frame rate is `forced' */
112
113         BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (15.0 / 25.0));
114 }
115
116
117 /** Content containing video will have its length rounded to the nearest video frame */
118 BOOST_AUTO_TEST_CASE (content_test4)
119 {
120         auto film = new_test_film2 ("content_test4");
121
122         auto video = content_factory("test/data/count300bd24.m2ts")[0];
123         film->examine_and_add_content (video);
124         BOOST_REQUIRE (!wait_for_jobs());
125
126         video->set_trim_end (dcpomatic::ContentTime(3000));
127         BOOST_CHECK (video->length_after_trim(film) == DCPTime::from_frames(299, 24));
128 }
129
130
131 /** Content containing no video will not have its length rounded to the nearest video frame */
132 BOOST_AUTO_TEST_CASE (content_test5)
133 {
134         auto audio = content_factory("test/data/sine_16_48_220_10.wav");
135         auto film = new_test_film2 ("content_test5", audio);
136
137         audio[0]->set_trim_end(dcpomatic::ContentTime(3000));
138
139         BOOST_CHECK(audio[0]->length_after_trim(film) == DCPTime(957000));
140 }
141
142
143 /** Sync error #1833 */
144 BOOST_AUTO_TEST_CASE (content_test6)
145 {
146         Cleanup cl;
147
148         auto film = new_test_film2 (
149                 "content_test6",
150                 content_factory(TestPaths::private_data() / "fha.mkv"),
151                 &cl
152                 );
153
154         film->set_audio_channels(16);
155
156         make_and_verify_dcp (film);
157         check_dcp (TestPaths::private_data() / "fha", film);
158
159         cl.run ();
160 }
161
162
163 /** Reel length error when making the test for #1833 */
164 BOOST_AUTO_TEST_CASE (content_test7)
165 {
166         auto content = content_factory(TestPaths::private_data() / "clapperboard.mp4");
167         auto film = new_test_film2 ("content_test7", content);
168         content[0]->audio->set_delay(-1000);
169         make_and_verify_dcp (film, { dcp::VerificationNote::Code::INVALID_PICTURE_FRAME_RATE_FOR_2K });
170 }
171
172
173 /** WAVs with markers (I think) can end up making audio packets with no channels and no frames (#2617) */
174 BOOST_AUTO_TEST_CASE(wav_with_markers_zero_channels_test)
175 {
176         auto content = content_factory(TestPaths::private_data() / "wav_with_markers.wav");
177         auto film = new_test_film2("wav_with_markers_zero_channels_test", content);
178         make_and_verify_dcp(film, { dcp::VerificationNote::Code::MISSING_CPL_METADATA });
179 }