Rename video/audio/subtitle part methods.
[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_asset.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 "lib/audio_content.h"
37 #include "test.h"
38 #include <iostream>
39
40 using std::string;
41 using std::cout;
42 using boost::lexical_cast;
43 using boost::shared_ptr;
44
45 static
46 void test_audio_delay (int delay_in_ms)
47 {
48         BOOST_TEST_MESSAGE ("Testing delay of " << delay_in_ms);
49
50         string const film_name = "audio_delay_test_" + lexical_cast<string> (delay_in_ms);
51         shared_ptr<Film> film = new_test_film (film_name);
52         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
53         film->set_container (Ratio::from_id ("185"));
54         film->set_name (film_name);
55
56         shared_ptr<SndfileContent> content (new SndfileContent (film, "test/data/staircase.wav"));
57         content->audio->set_delay (delay_in_ms);
58         film->examine_and_add_content (content);
59         wait_for_jobs ();
60
61         film->make_dcp ();
62         wait_for_jobs ();
63
64         boost::filesystem::path path = "build/test";
65         path /= film_name;
66         path /= film->dcp_name ();
67         dcp::DCP check (path.string ());
68         check.read ();
69
70         shared_ptr<const dcp::ReelSoundAsset> sound_asset = check.cpls().front()->reels().front()->main_sound ();
71         BOOST_CHECK (sound_asset);
72
73         /* Sample index in the DCP */
74         int n = 0;
75         /* DCP sound asset frame */
76         int frame = 0;
77         /* Delay in frames */
78         int const delay_in_frames = delay_in_ms * 48000 / 1000;
79
80         while (n < sound_asset->asset()->intrinsic_duration()) {
81                 shared_ptr<const dcp::SoundFrame> sound_frame = sound_asset->asset()->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                         /* Mono input so it will appear on centre */
87                         int const sample = d[i + 7] | (d[i + 8] << 8);
88
89                         int delayed = n - delay_in_frames;
90                         if (delayed < 0 || delayed >= 4800) {
91                                 delayed = 0;
92                         }
93
94                         BOOST_REQUIRE_EQUAL (sample, delayed);
95                         ++n;
96                 }
97         }
98 }
99
100 /* Test audio delay when specified in a piece of audio content */
101 BOOST_AUTO_TEST_CASE (audio_delay_test)
102 {
103         test_audio_delay (0);
104         test_audio_delay (42);
105         test_audio_delay (-66);
106 }