Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / analyse_audio_job.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/lib/analyse_audio_job.h
22  *  @brief AnalyseAudioJob class.
23  */
24
25 #include "job.h"
26 #include "audio_point.h"
27 #include "types.h"
28
29 class AudioBuffers;
30 class AudioAnalysis;
31 class Playlist;
32 class AudioPoint;
33 class AudioFilterGraph;
34 class Filter;
35
36 /** @class AnalyseAudioJob
37  *  @brief A job to analyse the audio of a film and make a note of its
38  *  broad peak and RMS levels.
39  *
40  *  After computing the peak and RMS levels the job will write a file
41  *  to Film::audio_analysis_path.
42  */
43 class AnalyseAudioJob : public Job
44 {
45 public:
46         AnalyseAudioJob (boost::shared_ptr<const Film>, boost::shared_ptr<const Playlist>);
47         ~AnalyseAudioJob ();
48
49         std::string name () const;
50         std::string json_name () const;
51         void run ();
52
53         boost::shared_ptr<const Playlist> playlist () const {
54                 return _playlist;
55         }
56
57 private:
58         void analyse (boost::shared_ptr<const AudioBuffers>);
59
60         boost::shared_ptr<const Playlist> _playlist;
61
62         int64_t _done;
63         int64_t _samples_per_point;
64         AudioPoint* _current;
65
66         float _sample_peak;
67         Frame _sample_peak_frame;
68
69         boost::shared_ptr<AudioAnalysis> _analysis;
70
71         boost::shared_ptr<AudioFilterGraph> _ebur128;
72         std::vector<Filter const *> _filters;
73
74         static const int _num_points;
75 };