Merge branch 'prefs' of ssh://carlh.dyndns.org/home/carl/git/dcpomatic into prefs
[dcpomatic.git] / test / silence_padding_test.cc
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/test/unit_test.hpp>
21 #include <libdcp/cpl.h>
22 #include <libdcp/dcp.h>
23 #include <libdcp/sound_asset.h>
24 #include <libdcp/sound_frame.h>
25 #include <libdcp/reel.h>
26 #include "lib/sndfile_content.h"
27 #include "lib/film.h"
28 #include "lib/dcp_content_type.h"
29 #include "lib/ratio.h"
30 #include "test.h"
31
32 using std::string;
33 using boost::lexical_cast;
34 using boost::shared_ptr;
35
36 static void test_silence_padding (int channels)
37 {
38         string const film_name = "silence_padding_test_" + lexical_cast<string> (channels);
39         shared_ptr<Film> film = new_test_film (film_name);
40         film->set_dcp_content_type (DCPContentType::from_dci_name ("FTR"));
41         film->set_container (Ratio::from_id ("185"));
42         film->set_name (film_name);
43
44         shared_ptr<SndfileContent> content (new SndfileContent (film, "test/data/staircase.wav"));
45         film->examine_and_add_content (content);
46         wait_for_jobs ();
47
48         film->set_audio_channels (channels);
49         film->make_dcp ();
50         wait_for_jobs ();
51
52         boost::filesystem::path path = "build/test";
53         path /= film_name;
54         path /= film->dcp_name ();
55         libdcp::DCP check (path.string ());
56         check.read ();
57
58         shared_ptr<const libdcp::SoundAsset> sound_asset = check.cpls().front()->reels().front()->main_sound ();
59         BOOST_CHECK (sound_asset);
60         BOOST_CHECK (sound_asset->channels () == channels);
61
62         /* Sample index in the DCP */
63         int n = 0;
64         /* DCP sound asset frame */
65         int frame = 0;
66
67         while (n < sound_asset->intrinsic_duration()) {
68                 shared_ptr<const libdcp::SoundFrame> sound_frame = sound_asset->get_frame (frame++);
69                 uint8_t const * d = sound_frame->data ();
70                 
71                 for (int i = 0; i < sound_frame->size(); i += (3 * sound_asset->channels())) {
72
73                         if (sound_asset->channels() > 0) {
74                                 /* L should be silent */
75                                 int const sample = d[i + 0] | (d[i + 1] << 8);
76                                 BOOST_CHECK_EQUAL (sample, 0);
77                         }
78
79                         if (sound_asset->channels() > 1) {
80                                 /* R should be silent */
81                                 int const sample = d[i + 2] | (d[i + 3] << 8);
82                                 BOOST_CHECK_EQUAL (sample, 0);
83                         }
84                         
85                         if (sound_asset->channels() > 2) {
86                                 /* Mono input so it will appear on centre */
87                                 int const sample = d[i + 7] | (d[i + 8] << 8);
88                                 BOOST_CHECK_EQUAL (sample, n);
89                         }
90
91                         if (sound_asset->channels() > 3) {
92                                 /* Lfe should be silent */
93                                 int const sample = d[i + 9] | (d[i + 10] << 8);
94                                 BOOST_CHECK_EQUAL (sample, 0);
95                         }
96
97                         if (sound_asset->channels() > 4) {
98                                 /* Ls should be silent */
99                                 int const sample = d[i + 11] | (d[i + 12] << 8);
100                                 BOOST_CHECK_EQUAL (sample, 0);
101                         }
102
103
104                         if (sound_asset->channels() > 5) {
105                                 /* Rs should be silent */
106                                 int const sample = d[i + 13] | (d[i + 14] << 8);
107                                 BOOST_CHECK_EQUAL (sample, 0);
108                         }
109
110                         ++n;
111                 }
112         }
113         
114 }
115
116 BOOST_AUTO_TEST_CASE (silence_padding_test)
117 {
118         for (int i = 1; i < MAX_AUDIO_CHANNELS; ++i) {
119                 test_silence_padding (i);
120         }
121 }