Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / lib / analyse_audio_job.h
1 /*
2     Copyright (C) 2012-2020 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 #include "dcpomatic_time.h"
29 #include <leqm_nrt.h>
30 #include <boost/scoped_ptr.hpp>
31
32 class AudioBuffers;
33 class AudioAnalysis;
34 class Playlist;
35 class AudioPoint;
36 class AudioFilterGraph;
37 class Filter;
38
39 /** @class AnalyseAudioJob
40  *  @brief A job to analyse the audio of a film and make a note of its
41  *  broad peak and RMS levels.
42  *
43  *  After computing the peak and RMS levels the job will write a file
44  *  to Film::audio_analysis_path.
45  */
46 class AnalyseAudioJob : public Job
47 {
48 public:
49         AnalyseAudioJob (boost::shared_ptr<const Film>, boost::shared_ptr<const Playlist>, bool from_zero);
50         ~AnalyseAudioJob ();
51
52         std::string name () const;
53         std::string json_name () const;
54         void run ();
55
56         boost::filesystem::path path () const {
57                 return _path;
58         }
59
60 private:
61         void analyse (boost::shared_ptr<const AudioBuffers>, dcpomatic::DCPTime time);
62
63         boost::shared_ptr<const Playlist> _playlist;
64         /** playlist's audio analysis path when the job was created */
65         boost::filesystem::path _path;
66         dcpomatic::DCPTime _start;
67         bool _from_zero;
68
69         int64_t _done;
70         int64_t _samples_per_point;
71         AudioPoint* _current;
72
73         float* _sample_peak;
74         Frame* _sample_peak_frame;
75
76         boost::shared_ptr<AudioAnalysis> _analysis;
77
78         boost::shared_ptr<AudioFilterGraph> _ebur128;
79         std::vector<Filter const *> _filters;
80
81         boost::scoped_ptr<leqm_nrt::Calculator> _leqm;
82
83         static const int _num_points;
84 };