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