std::shared_ptr
[dcpomatic.git] / test / silence_padding_test.cc
1 /*
2     Copyright (C) 2013-2014 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/silence_padding_test.cc
22  *  @brief Test the padding (with silence) of a mono source to a 6-channel DCP.
23  *  @ingroup feature
24  */
25
26 #include "lib/ffmpeg_content.h"
27 #include "lib/film.h"
28 #include "lib/dcp_content_type.h"
29 #include "lib/ratio.h"
30 #include "test.h"
31 #include <dcp/cpl.h>
32 #include <dcp/dcp.h>
33 #include <dcp/sound_asset.h>
34 #include <dcp/sound_frame.h>
35 #include <dcp/reel.h>
36 #include <dcp/reel_sound_asset.h>
37 #include <dcp/sound_asset_reader.h>
38 #include <boost/test/unit_test.hpp>
39
40 using std::string;
41 using boost::lexical_cast;
42 using std::shared_ptr;
43
44 static void
45 test_silence_padding (int channels)
46 {
47         string const film_name = "silence_padding_test_" + lexical_cast<string> (channels);
48         shared_ptr<Film> film = new_test_film (film_name);
49         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
50         film->set_container (Ratio::from_id ("185"));
51         film->set_name (film_name);
52
53         shared_ptr<FFmpegContent> content (new FFmpegContent("test/data/staircase.wav"));
54         film->examine_and_add_content (content);
55         BOOST_REQUIRE (!wait_for_jobs());
56
57         film->set_audio_channels (channels);
58         film->make_dcp ();
59         BOOST_REQUIRE (!wait_for_jobs());
60
61         boost::filesystem::path path = "build/test";
62         path /= film_name;
63         path /= film->dcp_name ();
64         dcp::DCP check (path.string ());
65         check.read ();
66
67         shared_ptr<const dcp::ReelSoundAsset> sound_asset = check.cpls().front()->reels().front()->main_sound ();
68         BOOST_CHECK (sound_asset);
69         BOOST_CHECK_EQUAL (sound_asset->asset()->channels (), channels);
70
71         /* Sample index in the DCP */
72         int n = 0;
73         /* DCP sound asset frame */
74         int frame = 0;
75
76         while (n < sound_asset->asset()->intrinsic_duration()) {
77                 shared_ptr<const dcp::SoundFrame> sound_frame = sound_asset->asset()->start_read()->get_frame (frame++);
78                 uint8_t const * d = sound_frame->data ();
79
80                 for (int i = 0; i < sound_frame->size(); i += (3 * sound_asset->asset()->channels())) {
81
82                         if (sound_asset->asset()->channels() > 0) {
83                                 /* L should be silent */
84                                 int const sample = d[i + 1] | (d[i + 2] << 8);
85                                 BOOST_CHECK_EQUAL (sample, 0);
86                         }
87
88                         if (sound_asset->asset()->channels() > 1) {
89                                 /* R should be silent */
90                                 int const sample = d[i + 4] | (d[i + 5] << 8);
91                                 BOOST_CHECK_EQUAL (sample, 0);
92                         }
93
94                         if (sound_asset->asset()->channels() > 2) {
95                                 /* Mono input so it will appear on centre */
96                                 int const sample = d[i + 7] | (d[i + 8] << 8);
97                                 BOOST_CHECK_EQUAL (sample, n);
98                         }
99
100                         if (sound_asset->asset()->channels() > 3) {
101                                 /* Lfe should be silent */
102                                 int const sample = d[i + 10] | (d[i + 11] << 8);
103                                 BOOST_CHECK_EQUAL (sample, 0);
104                         }
105
106                         if (sound_asset->asset()->channels() > 4) {
107                                 /* Ls should be silent */
108                                 int const sample = d[i + 13] | (d[i + 14] << 8);
109                                 BOOST_CHECK_EQUAL (sample, 0);
110                         }
111
112
113                         if (sound_asset->asset()->channels() > 5) {
114                                 /* Rs should be silent */
115                                 int const sample = d[i + 16] | (d[i + 17] << 8);
116                                 BOOST_CHECK_EQUAL (sample, 0);
117                         }
118
119                         ++n;
120                 }
121         }
122
123 }
124
125 BOOST_AUTO_TEST_CASE (silence_padding_test)
126 {
127         for (int i = 1; i < MAX_DCP_AUDIO_CHANNELS; ++i) {
128                 test_silence_padding (i);
129         }
130 }
131
132 /** Test a situation that used to crash because of a sub-sample rounding confusion
133  *  caused by a trim.
134  */
135
136 BOOST_AUTO_TEST_CASE (silence_padding_test2)
137 {
138         shared_ptr<Film> film = new_test_film2 ("silence_padding_test2");
139         shared_ptr<FFmpegContent> content (new FFmpegContent(TestPaths::private_data() / "cars.mov"));
140         film->examine_and_add_content (content);
141         BOOST_REQUIRE (!wait_for_jobs());
142
143         film->set_video_frame_rate (24);
144         content->set_trim_start (dcpomatic::ContentTime(4003));
145
146         film->make_dcp ();
147         BOOST_REQUIRE (!wait_for_jobs());
148 }