Supporters update.
[dcpomatic.git] / test / no_use_video_test.cc
1 /*
2     Copyright (C) 2020-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/test_no_use_video.cc
23  *  @brief Test some cases where the video parts of inputs are ignored, to
24  *  check that the right DCPs are made.
25  *  @ingroup completedcp
26  */
27
28
29 #include "lib/audio_content.h"
30 #include "lib/content.h"
31 #include "lib/content_factory.h"
32 #include "lib/film.h"
33 #include "lib/dcp_content.h"
34 #include "lib/video_content.h"
35 #include "test.h"
36 #include <dcp/cpl.h>
37 #include <dcp/dcp.h>
38 #include <dcp/reel.h>
39 #include <dcp/reel_sound_asset.h>
40 #include <dcp/reel_picture_asset.h>
41 #include <boost/test/unit_test.hpp>
42
43
44 using std::dynamic_pointer_cast;
45 using std::make_shared;
46
47
48 /** Overlay two video-only bits of content, don't use the video on one and
49  *  make sure the other one is in the DCP.
50  */
51 BOOST_AUTO_TEST_CASE (no_use_video_test1)
52 {
53         auto film = new_test_film2 ("no_use_video_test1");
54         auto A = content_factory("test/data/flat_red.png")[0];
55         auto B = content_factory("test/data/flat_green.png")[0];
56         film->examine_and_add_content (A);
57         film->examine_and_add_content (B);
58         BOOST_REQUIRE (!wait_for_jobs());
59
60         A->set_position (film, dcpomatic::DCPTime());
61         B->set_position (film, dcpomatic::DCPTime());
62         A->video->set_use (false);
63
64         film->set_audio_channels(16);
65
66         make_and_verify_dcp (film);
67
68         check_dcp ("test/data/no_use_video_test1", film);
69 }
70
71
72 /** Overlay two muxed sources and disable the video on one */
73 BOOST_AUTO_TEST_CASE (no_use_video_test2)
74 {
75         auto film = new_test_film2 ("no_use_video_test2");
76         auto A = content_factory(TestPaths::private_data() / "dolby_aurora.vob")[0];
77         auto B = content_factory(TestPaths::private_data() / "big_buck_bunny_trailer_480p.mov")[0];
78         film->examine_and_add_content (A);
79         film->examine_and_add_content (B);
80         BOOST_REQUIRE (!wait_for_jobs());
81
82         A->set_position (film, dcpomatic::DCPTime());
83         B->set_position (film, dcpomatic::DCPTime());
84         A->video->set_use (false);
85
86         film->set_audio_channels(16);
87
88         make_and_verify_dcp (film);
89
90         check_dcp (TestPaths::private_data() / "no_use_video_test2", film);
91 }
92
93
94 /** Make two DCPs and make a VF with the audio from one and the video from another */
95 BOOST_AUTO_TEST_CASE (no_use_video_test3)
96 {
97         auto ov_a = new_test_film2 ("no_use_video_test3_ov_a");
98         auto ov_a_pic = content_factory("test/data/flat_red.png")[0];
99         BOOST_REQUIRE (ov_a_pic);
100         auto ov_a_snd = content_factory("test/data/sine_16_48_220_10.wav")[0];
101         BOOST_REQUIRE (ov_a_snd);
102         ov_a->examine_and_add_content (ov_a_pic);
103         ov_a->examine_and_add_content (ov_a_snd);
104         BOOST_REQUIRE (!wait_for_jobs());
105         make_and_verify_dcp (ov_a);
106
107         auto ov_b = new_test_film2("no_use_video_test3_ov_b");
108         auto ov_b_pic = content_factory("test/data/flat_green.png")[0];
109         BOOST_REQUIRE (ov_b_pic);
110         auto ov_b_snd = content_factory("test/data/sine_16_48_880_10.wav")[0];
111         BOOST_REQUIRE (ov_b_snd);
112         ov_b->examine_and_add_content (ov_b_pic);
113         ov_b->examine_and_add_content (ov_b_snd);
114         BOOST_REQUIRE (!wait_for_jobs());
115         make_and_verify_dcp (ov_b);
116
117         auto vf = new_test_film2 ("no_use_video_test3_vf");
118         auto A = make_shared<DCPContent>(ov_a->dir(ov_a->dcp_name()));
119         auto B = make_shared<DCPContent>(ov_b->dir(ov_b->dcp_name()));
120         vf->examine_and_add_content (A);
121         vf->examine_and_add_content (B);
122         BOOST_REQUIRE (!wait_for_jobs());
123
124         A->set_position (vf, dcpomatic::DCPTime());
125         A->video->set_use (false);
126         B->set_position (vf, dcpomatic::DCPTime());
127         AudioMapping mapping (16, 16);
128         mapping.make_zero ();
129         B->audio->set_mapping(mapping);
130
131         A->set_reference_audio (true);
132         B->set_reference_video (true);
133
134         make_and_verify_dcp(vf, {dcp::VerificationNote::Code::EXTERNAL_ASSET}, false);
135
136         dcp::DCP ov_a_check (ov_a->dir(ov_a->dcp_name()));
137         ov_a_check.read ();
138         BOOST_REQUIRE_EQUAL (ov_a_check.cpls().size(), 1U);
139         BOOST_REQUIRE_EQUAL (ov_a_check.cpls().front()->reels().size(), 1U);
140         auto ov_a_reel (ov_a_check.cpls().front()->reels().front());
141
142         dcp::DCP ov_b_check (ov_b->dir(ov_b->dcp_name()));
143         ov_b_check.read ();
144         BOOST_REQUIRE_EQUAL (ov_b_check.cpls().size(), 1U);
145         BOOST_REQUIRE_EQUAL (ov_b_check.cpls().front()->reels().size(), 1U);
146         auto ov_b_reel (ov_b_check.cpls().front()->reels().front());
147
148         dcp::DCP vf_check (vf->dir(vf->dcp_name()));
149         vf_check.read ();
150         BOOST_REQUIRE_EQUAL (vf_check.cpls().size(), 1U);
151         BOOST_REQUIRE_EQUAL (vf_check.cpls().front()->reels().size(), 1U);
152         auto vf_reel (vf_check.cpls().front()->reels().front());
153
154         BOOST_CHECK_EQUAL (vf_reel->main_picture()->asset_ref().id(), ov_b_reel->main_picture()->asset_ref().id());
155         BOOST_CHECK_EQUAL (vf_reel->main_sound()->asset_ref().id(), ov_a_reel->main_sound()->asset_ref().id());
156 }
157
158