Fix recover test digest since colour conversion digests changed again.
[dcpomatic.git] / test / audio_delay_test.cc
1 /*
2     Copyright (C) 2013-2014 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 /** @file  test/audio_delay_test.cc
21  *  @brief Test encode using some SndfileContents which have audio delays.
22  *
23  *  The output is checked algorithmically using knowledge of the input.
24  */
25
26 #include <boost/test/unit_test.hpp>
27 #include <dcp/sound_frame.h>
28 #include <dcp/cpl.h>
29 #include <dcp/reel.h>
30 #include <dcp/sound_mxf.h>
31 #include <dcp/reel_sound_asset.h>
32 #include "lib/sndfile_content.h"
33 #include "lib/dcp_content_type.h"
34 #include "lib/ratio.h"
35 #include "lib/film.h"
36 #include "test.h"
37
38 using std::string;
39 using std::cout;
40 using boost::lexical_cast;
41 using boost::shared_ptr;
42
43 static
44 void test_audio_delay (int delay_in_ms)
45 {
46         string const film_name = "audio_delay_test_" + lexical_cast<string> (delay_in_ms);
47         shared_ptr<Film> film = new_test_film (film_name);
48         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
49         film->set_container (Ratio::from_id ("185"));
50         film->set_name (film_name);
51
52         shared_ptr<SndfileContent> content (new SndfileContent (film, "test/data/staircase.wav"));
53         content->set_audio_delay (delay_in_ms);
54         film->examine_and_add_content (content, true);
55         wait_for_jobs ();
56
57         film->make_dcp ();
58         wait_for_jobs ();
59
60         boost::filesystem::path path = "build/test";
61         path /= film_name;
62         path /= film->dcp_name ();
63         dcp::DCP check (path.string ());
64         check.read ();
65
66         shared_ptr<const dcp::ReelSoundAsset> sound_asset = check.cpls().front()->reels().front()->main_sound ();
67         BOOST_CHECK (sound_asset);
68
69         /* Sample index in the DCP */
70         int n = 0;
71         /* DCP sound asset frame */
72         int frame = 0;
73         /* Delay in frames */
74         int const delay_in_frames = delay_in_ms * 48000 / 1000;
75
76         while (n < sound_asset->mxf()->intrinsic_duration()) {
77                 shared_ptr<const dcp::SoundFrame> sound_frame = sound_asset->mxf()->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->mxf()->channels())) {
81
82                         /* Mono input so it will appear on centre */
83                         int const sample = d[i + 7] | (d[i + 8] << 8);
84
85                         int delayed = n - delay_in_frames;
86                         if (delayed < 0 || delayed >= 4800) {
87                                 delayed = 0;
88                         }
89
90                         BOOST_CHECK_EQUAL (sample, delayed);
91                         ++n;
92                 }
93         }
94 }
95
96 /* Test audio delay when specified in a piece of audio content */
97 BOOST_AUTO_TEST_CASE (audio_delay_test)
98 {
99         test_audio_delay (0);
100         test_audio_delay (42);
101         test_audio_delay (-66);
102 }