Cleanup: test tidying.
[dcpomatic.git] / test / ffmpeg_audio_test.cc
1 /*
2     Copyright (C) 2013-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/ffmpeg_audio_test.cc
23  *  @brief Test reading audio from an FFmpeg file.
24  *  @ingroup feature
25  */
26
27
28 #include "lib/ffmpeg_content.h"
29 #include "lib/film.h"
30 #include "lib/dcp_content_type.h"
31 #include "lib/video_content.h"
32 #include "lib/ratio.h"
33 #include "lib/ffmpeg_content.h"
34 #include "lib/content_factory.h"
35 #include "lib/player.h"
36 #include "test.h"
37 #include <dcp/cpl.h>
38 #include <dcp/dcp.h>
39 #include <dcp/sound_asset.h>
40 #include <dcp/sound_frame.h>
41 #include <dcp/reel_sound_asset.h>
42 #include <dcp/sound_asset_reader.h>
43 #include <dcp/reel.h>
44 #include <boost/test/unit_test.hpp>
45
46
47 using std::make_shared;
48 using std::string;
49
50
51 BOOST_AUTO_TEST_CASE (ffmpeg_audio_test)
52 {
53         auto film = new_test_film ("ffmpeg_audio_test");
54         film->set_name ("ffmpeg_audio_test");
55         auto c = make_shared<FFmpegContent> ("test/data/staircase.mov");
56         film->examine_and_add_content (c);
57
58         BOOST_REQUIRE (!wait_for_jobs());
59
60         film->set_container (Ratio::from_id ("185"));
61         film->set_audio_channels (6);
62         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
63         make_and_verify_dcp (film);
64
65         boost::filesystem::path path = "build/test";
66         path /= "ffmpeg_audio_test";
67         path /= film->dcp_name ();
68         dcp::DCP check (path.string ());
69         check.read ();
70
71         auto sound_asset = check.cpls().front()->reels().front()->main_sound ();
72         BOOST_CHECK (sound_asset);
73         BOOST_CHECK_EQUAL (sound_asset->asset()->channels (), 6);
74
75         /* Sample index in the DCP */
76         int n = 0;
77         /* DCP sound asset frame */
78         int frame = 0;
79
80         while (n < sound_asset->asset()->intrinsic_duration()) {
81                 auto sound_frame = sound_asset->asset()->start_read()->get_frame (frame++);
82                 uint8_t const * d = sound_frame->data ();
83
84                 for (int i = 0; i < sound_frame->size(); i += (3 * sound_asset->asset()->channels())) {
85
86                         if (sound_asset->asset()->channels() > 0) {
87                                 /* L should be silent */
88                                 int const sample = d[i + 0] | (d[i + 1] << 8);
89                                 BOOST_CHECK_EQUAL (sample, 0);
90                         }
91
92                         if (sound_asset->asset()->channels() > 1) {
93                                 /* R should be silent */
94                                 int const sample = d[i + 2] | (d[i + 3] << 8);
95                                 BOOST_CHECK_EQUAL (sample, 0);
96                         }
97
98                         if (sound_asset->asset()->channels() > 2) {
99                                 /* Mono input so it will appear on centre */
100                                 int const sample = d[i + 7] | (d[i + 8] << 8);
101                                 BOOST_CHECK_EQUAL (sample, n);
102                         }
103
104                         if (sound_asset->asset()->channels() > 3) {
105                                 /* Lfe should be silent */
106                                 int const sample = d[i + 9] | (d[i + 10] << 8);
107                                 BOOST_CHECK_EQUAL (sample, 0);
108                         }
109
110                         if (sound_asset->asset()->channels() > 4) {
111                                 /* Ls should be silent */
112                                 int const sample = d[i + 11] | (d[i + 12] << 8);
113                                 BOOST_CHECK_EQUAL (sample, 0);
114                         }
115
116
117                         if (sound_asset->asset()->channels() > 5) {
118                                 /* Rs should be silent */
119                                 int const sample = d[i + 13] | (d[i + 14] << 8);
120                                 BOOST_CHECK_EQUAL (sample, 0);
121                         }
122
123                         ++n;
124                 }
125         }
126 }
127
128
129 /** Decode a file containing truehd so we can profile it; this is with the player set to normal */
130 BOOST_AUTO_TEST_CASE (ffmpeg_audio_test2)
131 {
132         auto film = new_test_film2 ("ffmpeg_audio_test2");
133         auto content = content_factory(TestPaths::private_data() / "wayne.mkv")[0];
134         film->examine_and_add_content (content);
135         BOOST_REQUIRE (!wait_for_jobs ());
136
137         auto player = make_shared<Player>(film, Image::Alignment::COMPACT);
138         while (!player->pass ()) {}
139 }
140
141
142 /** Decode a file containing truehd so we can profile it; this is with the player set to fast */
143 BOOST_AUTO_TEST_CASE (ffmpeg_audio_test3)
144 {
145         auto film = new_test_film2 ("ffmpeg_audio_test3");
146         auto content = content_factory(TestPaths::private_data() / "wayne.mkv")[0];
147         film->examine_and_add_content (content);
148         BOOST_REQUIRE (!wait_for_jobs ());
149
150         auto player = make_shared<Player>(film, Image::Alignment::COMPACT);
151         player->set_fast ();
152         while (!player->pass ()) {}
153 }
154
155
156 /** Decode a file whose audio previously crashed DCP-o-matic (#1857) */
157 BOOST_AUTO_TEST_CASE (ffmpeg_audio_test4)
158 {
159         auto film = new_test_film2 ("ffmpeg_audio_test4");
160         auto content = content_factory(TestPaths::private_data() / "Actuellement aout 2020.wmv")[0];
161         film->examine_and_add_content (content);
162         BOOST_REQUIRE (!wait_for_jobs ());
163
164         auto player = make_shared<Player>(film, Image::Alignment::COMPACT);
165         player->set_fast ();
166         BOOST_CHECK_NO_THROW (while (!player->pass()) {});
167 }
168