Pretty dumb smoothing.
[dcpomatic.git] / src / lib / analyse_audio_job.cc
1 /*
2     Copyright (C) 2012 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 "analyse_audio_job.h"
22 #include "compose.hpp"
23 #include "film.h"
24 #include "options.h"
25 #include "decoder_factory.h"
26 #include "audio_decoder.h"
27
28 using std::string;
29 using std::max;
30 using std::cout;
31 using boost::shared_ptr;
32
33 int const AnalyseAudioJob::_num_points = 1024;
34
35 AnalyseAudioJob::AnalyseAudioJob (shared_ptr<Film> f)
36         : Job (f)
37         , _done (0)
38         , _samples_per_point (1)
39 {
40
41 }
42
43 string
44 AnalyseAudioJob::name () const
45 {
46         return String::compose ("Analyse audio of %1", _film->name());
47 }
48
49 void
50 AnalyseAudioJob::run ()
51 {
52         if (!_film->audio_stream () || !_film->length()) {
53                 set_progress (1);
54                 set_state (FINISHED_ERROR);
55                 return;
56         }
57                 
58         DecodeOptions options;
59         options.decode_video = false;
60
61         Decoders decoders = decoder_factory (_film, options);
62         assert (decoders.audio);
63         
64         decoders.audio->set_audio_stream (_film->audio_stream ());
65         decoders.audio->Audio.connect (bind (&AnalyseAudioJob::audio, this, _1));
66
67         int64_t total_audio_frames = video_frames_to_audio_frames (_film->length().get(), _film->audio_stream()->sample_rate(), _film->frames_per_second());
68         _samples_per_point = total_audio_frames / _num_points;
69
70         _current.resize (_film->audio_stream()->channels ());
71         _analysis.reset (new AudioAnalysis (_film->audio_stream()->channels()));
72                          
73         while (!decoders.audio->pass()) {
74                 set_progress (float (_done) / total_audio_frames);
75         }
76
77         _analysis->write (_film->audio_analysis_path ());
78         
79         set_progress (1);
80         set_state (FINISHED_OK);
81 }
82
83 void
84 AnalyseAudioJob::audio (shared_ptr<AudioBuffers> b)
85 {
86         for (int i = 0; i < b->frames(); ++i) {
87                 for (int j = 0; j < b->channels(); ++j) {
88                         float s = b->data(j)[i];
89                         if (fabsf (s) < 10e-7) {
90                                 /* stringstream can't serialise and recover inf or -inf, so prevent such
91                                    values by replacing with this (140dB down) */
92                                 s = 10e-7;
93                         }
94                         _current[j][AudioPoint::RMS] += pow (s, 2);
95                         _current[j][AudioPoint::PEAK] = max (_current[j][AudioPoint::PEAK], fabsf (s));
96
97                         if ((_done % _samples_per_point) == 0) {
98                                 _current[j][AudioPoint::RMS] = sqrt (_current[j][AudioPoint::RMS] / _samples_per_point);
99                                 _analysis->add_point (j, _current[j]);
100                                 
101                                 _current[j] = AudioPoint ();
102                         }
103                 }
104
105                 ++_done;
106         }
107 }
108