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