Use dcp::file_to_string().
[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 "dcpomatic_time.h"
24 #include "types.h"
25 #include <leqm_nrt.h>
26 #include <boost/scoped_ptr.hpp>
27 #include <memory>
28
29
30 class AudioAnalysis;
31 class AudioBuffers;
32 class AudioFilterGraph;
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 from_zero, std::function<void (float)> set_progress);
43         ~AudioAnalyser ();
44
45         AudioAnalyser (AudioAnalyser const&) = delete;
46         AudioAnalyser& operator= (AudioAnalyser const&) = delete;
47
48         void analyse (std::shared_ptr<const AudioBuffers>, dcpomatic::DCPTime time);
49
50         dcpomatic::DCPTime start () const {
51                 return _start;
52         }
53
54         void finish ();
55
56         AudioAnalysis get () const {
57                 return _analysis;
58         }
59
60 private:
61         std::shared_ptr<const Film> _film;
62         std::shared_ptr<const Playlist> _playlist;
63
64         std::function<void (float)> _set_progress;
65
66         dcpomatic::DCPTime _start;
67 #ifdef DCPOMATIC_HAVE_EBUR128_PATCHED_FFMPEG
68         std::shared_ptr<AudioFilterGraph> _ebur128;
69 #endif
70         std::vector<Filter const *> _filters;
71         Frame _samples_per_point = 1;
72
73         boost::scoped_ptr<leqm_nrt::Calculator> _leqm;
74         Frame _done = 0;
75         float* _sample_peak = nullptr;
76         Frame* _sample_peak_frame = nullptr;
77         AudioPoint* _current = nullptr;
78
79         AudioAnalysis _analysis;
80 };
81