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