Merge.
[dcpomatic.git] / test / ffmpeg_audio_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/cpl.h>
22 #include <libdcp/dcp.h>
23 #include <libdcp/sound_asset.h>
24 #include <libdcp/sound_frame.h>
25 #include <libdcp/reel.h>
26 #include "lib/sndfile_content.h"
27 #include "lib/film.h"
28 #include "lib/dcp_content_type.h"
29 #include "lib/ratio.h"
30 #include "lib/ffmpeg_content.h"
31 #include "test.h"
32
33 using std::string;
34 using boost::lexical_cast;
35 using boost::shared_ptr;
36
37 BOOST_AUTO_TEST_CASE (ffmpeg_audio_test)
38 {
39         shared_ptr<Film> film = new_test_film ("ffmpeg_audio_test");
40         film->set_name ("ffmpeg_audio_test");
41         shared_ptr<FFmpegContent> c (new FFmpegContent (film, "test/data/staircase.mov"));
42         c->set_scale (VideoContentScale (Ratio::from_id ("185")));
43         film->examine_and_add_content (c);
44
45         wait_for_jobs ();
46
47         film->set_container (Ratio::from_id ("185"));
48         film->set_audio_channels (6);
49         film->set_dcp_content_type (DCPContentType::from_pretty_name ("Test"));
50         film->make_dcp ();
51         film->write_metadata ();
52
53         wait_for_jobs ();
54
55         boost::filesystem::path path = "build/test";
56         path /= "ffmpeg_audio_test";
57         path /= film->dcp_name ();
58         libdcp::DCP check (path.string ());
59         check.read ();
60
61         shared_ptr<const libdcp::SoundAsset> sound_asset = check.cpls().front()->reels().front()->main_sound ();
62         BOOST_CHECK (sound_asset);
63         BOOST_CHECK (sound_asset->channels () == 6);
64
65         /* Sample index in the DCP */
66         int n = 0;
67         /* DCP sound asset frame */
68         int frame = 0;
69
70         while (n < sound_asset->intrinsic_duration()) {
71                 shared_ptr<const libdcp::SoundFrame> sound_frame = sound_asset->get_frame (frame++);
72                 uint8_t const * d = sound_frame->data ();
73                 
74                 for (int i = 0; i < sound_frame->size(); i += (3 * sound_asset->channels())) {
75
76                         if (sound_asset->channels() > 0) {
77                                 /* L should be silent */
78                                 int const sample = d[i + 0] | (d[i + 1] << 8);
79                                 BOOST_CHECK_EQUAL (sample, 0);
80                         }
81
82                         if (sound_asset->channels() > 1) {
83                                 /* R should be silent */
84                                 int const sample = d[i + 2] | (d[i + 3] << 8);
85                                 BOOST_CHECK_EQUAL (sample, 0);
86                         }
87                         
88                         if (sound_asset->channels() > 2) {
89                                 /* Mono input so it will appear on centre */
90                                 int const sample = d[i + 7] | (d[i + 8] << 8);
91                                 BOOST_CHECK_EQUAL (sample, n);
92                         }
93
94                         if (sound_asset->channels() > 3) {
95                                 /* Lfe should be silent */
96                                 int const sample = d[i + 9] | (d[i + 10] << 8);
97                                 BOOST_CHECK_EQUAL (sample, 0);
98                         }
99
100                         if (sound_asset->channels() > 4) {
101                                 /* Ls should be silent */
102                                 int const sample = d[i + 11] | (d[i + 12] << 8);
103                                 BOOST_CHECK_EQUAL (sample, 0);
104                         }
105
106
107                         if (sound_asset->channels() > 5) {
108                                 /* Rs should be silent */
109                                 int const sample = d[i + 13] | (d[i + 14] << 8);
110                                 BOOST_CHECK_EQUAL (sample, 0);
111                         }
112
113                         ++n;
114                 }
115         }
116 }