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