Merge branch '1.0' of /home/carl/git/dvdomatic into 1.0
[dcpomatic.git] / test / audio_delay_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/sound_frame.h>
22 #include <libdcp/cpl.h>
23 #include <libdcp/reel.h>
24 #include <libdcp/sound_asset.h>
25 #include "lib/sndfile_content.h"
26 #include "lib/dcp_content_type.h"
27 #include "lib/ratio.h"
28 #include "lib/film.h"
29 #include "test.h"
30
31 using std::string;
32 using std::cout;
33 using boost::lexical_cast;
34 using boost::shared_ptr;
35
36 static
37 void test_audio_delay (int delay_in_ms)
38 {
39         string const film_name = "audio_delay_test_" + lexical_cast<string> (delay_in_ms);
40         shared_ptr<Film> film = new_test_film (film_name);
41         film->set_dcp_content_type (DCPContentType::from_dci_name ("FTR"));
42         film->set_container (Ratio::from_id ("185"));
43         film->set_name (film_name);
44
45         shared_ptr<SndfileContent> content (new SndfileContent (film, "test/data/staircase.wav"));
46         content->set_audio_delay (delay_in_ms);
47         film->examine_and_add_content (content);
48         wait_for_jobs ();
49
50         film->make_dcp ();
51         wait_for_jobs ();
52
53         boost::filesystem::path path = "build/test";
54         path /= film_name;
55         path /= film->dcp_name ();
56         libdcp::DCP check (path.string ());
57         check.read ();
58
59         shared_ptr<const libdcp::SoundAsset> sound_asset = check.cpls().front()->reels().front()->main_sound ();
60         BOOST_CHECK (sound_asset);
61
62         /* Sample index in the DCP */
63         int n = 0;
64         /* DCP sound asset frame */
65         int frame = 0;
66         /* Delay in frames */
67         int const delay_in_frames = delay_in_ms * 48000 / 1000;
68
69         while (n < sound_asset->intrinsic_duration()) {
70                 shared_ptr<const libdcp::SoundFrame> sound_frame = sound_asset->get_frame (frame++);
71                 uint8_t const * d = sound_frame->data ();
72                 
73                 for (int i = 0; i < sound_frame->size(); i += (3 * sound_asset->channels())) {
74
75                         /* Mono input so it will appear on centre */
76                         int const sample = d[i + 7] | (d[i + 8] << 8);
77
78                         int delayed = n - delay_in_frames;
79                         if (delayed < 0 || delayed >= 4800) {
80                                 delayed = 0;
81                         }
82
83                         BOOST_CHECK_EQUAL (sample, delayed);
84                         ++n;
85                 }
86         }
87 }
88
89
90 /* Test audio delay when specified in a piece of audio content */
91 BOOST_AUTO_TEST_CASE (audio_delay_test)
92 {
93         test_audio_delay (0);
94         test_audio_delay (42);
95         test_audio_delay (-66);
96 }