Add some basic JSON stuff.
[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 "player.h"
25
26 #include "i18n.h"
27
28 using std::string;
29 using std::max;
30 using std::min;
31 using std::cout;
32 using boost::shared_ptr;
33
34 int const AnalyseAudioJob::_num_points = 1024;
35
36 AnalyseAudioJob::AnalyseAudioJob (shared_ptr<const Film> f, shared_ptr<AudioContent> c)
37         : Job (f)
38         , _content (c)
39         , _done (0)
40         , _samples_per_point (1)
41 {
42
43 }
44
45 string
46 AnalyseAudioJob::name () const
47 {
48         return _("Analyse audio");
49 }
50
51 string
52 AnalyseAudioJob::json_name () const
53 {
54         return N_("analyse_audio");
55 }
56
57 void
58 AnalyseAudioJob::run ()
59 {
60         shared_ptr<AudioContent> content = _content.lock ();
61         if (!content) {
62                 return;
63         }
64
65         shared_ptr<Playlist> playlist (new Playlist);
66         playlist->add (content);
67         shared_ptr<Player> player (new Player (_film, playlist));
68         player->disable_video ();
69         
70         player->Audio.connect (bind (&AnalyseAudioJob::audio, this, _1, _2));
71
72         _samples_per_point = max (int64_t (1), _film->time_to_audio_frames (_film->length()) / _num_points);
73
74         _current.resize (_film->audio_channels ());
75         _analysis.reset (new AudioAnalysis (_film->audio_channels ()));
76
77         _done = 0;
78         OutputAudioFrame const len = _film->time_to_audio_frames (_film->length ());
79         while (!player->pass ()) {
80                 set_progress (double (_done) / len);
81         }
82
83         _analysis->write (content->audio_analysis_path ());
84         
85         set_progress (1);
86         set_state (FINISHED_OK);
87 }
88
89 void
90 AnalyseAudioJob::audio (shared_ptr<const AudioBuffers> b, Time)
91 {
92         for (int i = 0; i < b->frames(); ++i) {
93                 for (int j = 0; j < b->channels(); ++j) {
94                         float s = b->data(j)[i];
95                         if (fabsf (s) < 10e-7) {
96                                 /* stringstream can't serialise and recover inf or -inf, so prevent such
97                                    values by replacing with this (140dB down) */
98                                 s = 10e-7;
99                         }
100                         _current[j][AudioPoint::RMS] += pow (s, 2);
101                         _current[j][AudioPoint::PEAK] = max (_current[j][AudioPoint::PEAK], fabsf (s));
102
103                         if ((_done % _samples_per_point) == 0) {
104                                 _current[j][AudioPoint::RMS] = sqrt (_current[j][AudioPoint::RMS] / _samples_per_point);
105                                 _analysis->add_point (j, _current[j]);
106
107                                 _current[j] = AudioPoint ();
108                         }
109                 }
110
111                 ++_done;
112         }
113 }
114