Separate AudioPoint.
[dcpomatic.git] / src / lib / audio_analysis.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef DCPOMATIC_AUDIO_ANALYSIS_H
21 #define DCPOMATIC_AUDIO_ANALYSIS_H
22
23 #include "dcpomatic_time.h"
24 #include "audio_point.h"
25 #include <libcxml/cxml.h>
26 #include <boost/optional.hpp>
27 #include <boost/filesystem.hpp>
28 #include <vector>
29
30 namespace xmlpp {
31         class Element;
32 }
33
34 class AudioAnalysis : public boost::noncopyable
35 {
36 public:
37         AudioAnalysis (int c);
38         AudioAnalysis (boost::filesystem::path);
39
40         void add_point (int c, AudioPoint const & p);
41         void set_peak (float peak, DCPTime time) {
42                 _peak = peak;
43                 _peak_time = time;
44         }
45
46         AudioPoint get_point (int c, int p) const;
47         int points (int c) const;
48         int channels () const;
49
50         boost::optional<float> peak () const {
51                 return _peak;
52         }
53
54         boost::optional<DCPTime> peak_time () const {
55                 return _peak_time;
56         }
57
58         boost::optional<double> analysis_gain () const {
59                 return _analysis_gain;
60         }
61
62         void set_analysis_gain (double gain) {
63                 _analysis_gain = gain;
64         }
65
66         void write (boost::filesystem::path);
67
68 private:
69         std::vector<std::vector<AudioPoint> > _data;
70         boost::optional<float> _peak;
71         boost::optional<DCPTime> _peak_time;
72         /** If this analysis was run on a single piece of
73          *  content we store its gain in dB when the analysis
74          *  happened.
75          */
76         boost::optional<double> _analysis_gain;
77 };
78
79 #endif