test/data updates.
[dcpomatic.git] / test / audio_analysis_test.cc
1 /*
2     Copyright (C) 2012-2015 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_analysis_test.cc
21  *  @brief Check audio analysis code.
22  */
23
24 #include <boost/test/unit_test.hpp>
25 #include "lib/audio_analysis.h"
26 #include "lib/analyse_audio_job.h"
27 #include "lib/film.h"
28 #include "lib/sndfile_content.h"
29 #include "lib/dcp_content_type.h"
30 #include "lib/ffmpeg_content.h"
31 #include "lib/ratio.h"
32 #include "lib/job_manager.h"
33 #include "test.h"
34
35 using boost::shared_ptr;
36
37 static float
38 random_float ()
39 {
40         return (float (rand ()) / RAND_MAX) * 2 - 1;
41 }
42
43 BOOST_AUTO_TEST_CASE (audio_analysis_serialisation_test)
44 {
45         int const channels = 3;
46         int const points = 4096;
47         
48         srand (1);
49         
50         AudioAnalysis a (3);
51         for (int i = 0; i < channels; ++i) {
52                 for (int j = 0; j < points; ++j) {
53                         AudioPoint p;
54                         p[AudioPoint::PEAK] = random_float ();
55                         p[AudioPoint::RMS] = random_float ();
56                         a.add_point (i, p);
57                 }
58         }
59
60         float const peak = random_float ();
61         DCPTime const peak_time = DCPTime (rand ());
62         a.set_peak (peak, peak_time);
63
64         a.write ("build/test/audio_analysis_serialisation_test");
65
66         srand (1);
67
68         AudioAnalysis b ("build/test/audio_analysis_serialisation_test");
69         for (int i = 0; i < channels; ++i) {
70                 BOOST_CHECK_EQUAL (b.points(i), points);
71                 for (int j = 0; j < points; ++j) {
72                         AudioPoint p = b.get_point (i, j);
73                         BOOST_CHECK_CLOSE (p[AudioPoint::PEAK], random_float (), 1);
74                         BOOST_CHECK_CLOSE (p[AudioPoint::RMS],  random_float (), 1);
75                 }
76         }
77         
78         BOOST_CHECK (b.peak ());
79         BOOST_CHECK_CLOSE (b.peak().get(), peak, 1);
80         BOOST_CHECK (b.peak_time ());
81         BOOST_CHECK_EQUAL (b.peak_time().get(), peak_time);
82 }
83
84 static void
85 finished ()
86 {
87
88 }
89
90 BOOST_AUTO_TEST_CASE (audio_analysis_test)
91 {
92         shared_ptr<Film> film = new_test_film ("audio_analysis_test");
93         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
94         film->set_container (Ratio::from_id ("185"));
95         film->set_name ("audio_analysis_test");
96         boost::filesystem::path p = private_data / "betty_L.wav";
97
98         shared_ptr<SndfileContent> c (new SndfileContent (film, p));
99         film->examine_and_add_content (c);
100         wait_for_jobs ();
101
102         shared_ptr<AnalyseAudioJob> job (new AnalyseAudioJob (film, film->playlist ()));
103         job->Finished.connect (boost::bind (&finished));
104         JobManager::instance()->add (job);
105         wait_for_jobs ();
106 }
107
108 /* Check that audio analysis works (i.e. runs without error) with a -ve delay */
109 BOOST_AUTO_TEST_CASE (audio_analysis_negative_delay_test)
110 {
111         shared_ptr<Film> film = new_test_film ("audio_analysis_negative_delay_test");
112         film->set_name ("audio_analysis_negative_delay_test");
113         shared_ptr<AudioContent> c (new FFmpegContent (film, private_data / "boon_telly.mkv"));
114         c->set_audio_delay (-250);
115         film->examine_and_add_content (c);
116         wait_for_jobs ();
117         
118         shared_ptr<AnalyseAudioJob> job (new AnalyseAudioJob (film, film->playlist ()));
119         job->Finished.connect (boost::bind (&finished));
120         JobManager::instance()->add (job);
121         wait_for_jobs ();
122 }