Rest of src/lib/*.h tidying.
[dcpomatic.git] / src / lib / analyse_audio_job.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 #include "audio_analysis.h"
21 #include "audio_buffers.h"
22 #include "analyse_audio_job.h"
23 #include "audio_content.h"
24 #include "compose.hpp"
25 #include "film.h"
26 #include "player.h"
27 #include "playlist.h"
28 #include <boost/foreach.hpp>
29
30 #include "i18n.h"
31
32 using std::string;
33 using std::max;
34 using std::min;
35 using std::cout;
36 using boost::shared_ptr;
37 using boost::dynamic_pointer_cast;
38
39 int const AnalyseAudioJob::_num_points = 1024;
40
41 AnalyseAudioJob::AnalyseAudioJob (shared_ptr<const Film> film, shared_ptr<const Playlist> playlist)
42         : Job (film)
43         , _playlist (playlist)
44         , _done (0)
45         , _samples_per_point (1)
46         , _overall_peak (0)
47         , _overall_peak_frame (0)
48 {
49
50 }
51
52 string
53 AnalyseAudioJob::name () const
54 {
55         return _("Analyse audio");
56 }
57
58 string
59 AnalyseAudioJob::json_name () const
60 {
61         return N_("analyse_audio");
62 }
63
64 void
65 AnalyseAudioJob::run ()
66 {
67         shared_ptr<Player> player (new Player (_film, _playlist));
68         player->set_ignore_video ();
69
70         int64_t const len = _playlist->length().frames_round (_film->audio_frame_rate());
71         _samples_per_point = max (int64_t (1), len / _num_points);
72
73         _current.resize (_film->audio_channels ());
74         _analysis.reset (new AudioAnalysis (_film->audio_channels ()));
75
76         bool has_any_audio = false;
77         BOOST_FOREACH (shared_ptr<Content> c, _playlist->content ()) {
78                 if (dynamic_pointer_cast<AudioContent> (c)) {
79                         has_any_audio = true;
80                 }
81         }
82
83         if (has_any_audio) {
84                 _done = 0;
85                 DCPTime const block = DCPTime::from_seconds (1.0 / 8);
86                 for (DCPTime t; t < _film->length(); t += block) {
87                         analyse (player->get_audio (t, block, false));
88                         set_progress (t.seconds() / _film->length().seconds());
89                 }
90         }
91
92         _analysis->set_peak (_overall_peak, DCPTime::from_frames (_overall_peak_frame, _film->audio_frame_rate ()));
93
94         if (_playlist->content().size() == 1) {
95                 /* If there was only one piece of content in this analysis we may later need to know what its
96                    gain was when we analysed it.
97                 */
98                 shared_ptr<const AudioContent> ac = dynamic_pointer_cast<const AudioContent> (_playlist->content().front ());
99                 DCPOMATIC_ASSERT (ac);
100                 _analysis->set_analysis_gain (ac->audio_gain ());
101         }
102
103         _analysis->write (_film->audio_analysis_path (_playlist));
104
105         set_progress (1);
106         set_state (FINISHED_OK);
107 }
108
109 void
110 AnalyseAudioJob::analyse (shared_ptr<const AudioBuffers> b)
111 {
112         for (int i = 0; i < b->frames(); ++i) {
113                 for (int j = 0; j < b->channels(); ++j) {
114                         float s = b->data(j)[i];
115                         if (fabsf (s) < 10e-7) {
116                                 /* SafeStringStream can't serialise and recover inf or -inf, so prevent such
117                                    values by replacing with this (140dB down) */
118                                 s = 10e-7;
119                         }
120                         _current[j][AudioPoint::RMS] += pow (s, 2);
121                         _current[j][AudioPoint::PEAK] = max (_current[j][AudioPoint::PEAK], fabsf (s));
122
123                         float const as = fabs (s);
124
125                         _current[j][AudioPoint::PEAK] = max (_current[j][AudioPoint::PEAK], as);
126
127                         if (as > _overall_peak) {
128                                 _overall_peak = as;
129                                 _overall_peak_frame = _done + i;
130                         }
131
132                         if ((_done % _samples_per_point) == 0) {
133                                 _current[j][AudioPoint::RMS] = sqrt (_current[j][AudioPoint::RMS] / _samples_per_point);
134                                 _analysis->add_point (j, _current[j]);
135
136                                 _current[j] = AudioPoint ();
137                         }
138                 }
139
140                 ++_done;
141         }
142 }