Supporters update.
[dcpomatic.git] / src / lib / audio_analyser.h
1 /*
2     Copyright (C) 2021 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
22 #include "audio_analysis.h"
23 #include "audio_filter_graph.h"
24 #include "dcpomatic_time.h"
25 #include "types.h"
26 #include <leqm_nrt.h>
27 #include <boost/scoped_ptr.hpp>
28 #include <memory>
29
30
31 class AudioAnalysis;
32 class AudioBuffers;
33 class AudioPoint;
34 class Film;
35 class Filter;
36 class Playlist;
37
38
39 class AudioAnalyser
40 {
41 public:
42         AudioAnalyser(std::shared_ptr<const Film> film, std::shared_ptr<const Playlist> playlist, bool whole_film, std::function<void (float)> set_progress);
43
44         AudioAnalyser (AudioAnalyser const&) = delete;
45         AudioAnalyser& operator= (AudioAnalyser const&) = delete;
46
47         void analyse (std::shared_ptr<AudioBuffers>, dcpomatic::DCPTime time);
48
49         dcpomatic::DCPTime start () const {
50                 return _start;
51         }
52
53         void finish ();
54
55         AudioAnalysis get () const {
56                 return _analysis;
57         }
58
59 private:
60         std::shared_ptr<const Film> _film;
61         std::shared_ptr<const Playlist> _playlist;
62
63         std::function<void (float)> _set_progress;
64
65         dcpomatic::DCPTime _start;
66 #ifdef DCPOMATIC_HAVE_EBUR128_PATCHED_FFMPEG
67         AudioFilterGraph _ebur128;
68 #endif
69         std::vector<Filter> _filters;
70         Frame _samples_per_point = 1;
71
72         boost::scoped_ptr<leqm_nrt::Calculator> _leqm;
73         int _leqm_channels = 0;
74         Frame _done = 0;
75         std::vector<float> _sample_peak;
76         std::vector<Frame> _sample_peak_frame;
77         std::vector<AudioPoint> _current;
78
79         AudioAnalysis _analysis;
80 };
81