update export analyser for dBTP
[ardour.git] / libs / ardour / ardour / export_analysis.h
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #ifndef __ardour_export_analysis_h__
20 #define __ardour_export_analysis_h__
21
22 #include <map>
23 #include <cstring>
24 #include <boost/shared_ptr.hpp>
25
26 #include "ardour/types.h"
27
28 namespace ARDOUR {
29         struct ExportAnalysis {
30         public:
31                 ExportAnalysis ()
32                         : peak (0)
33                         , truepeak (0)
34                         , loudness (0)
35                         , loudness_range (0)
36                         , loudness_hist_max (0)
37                         , have_loudness (false)
38                         , have_dbtp (false)
39                         , n_channels (1)
40                 {
41                         memset (peaks, 0, sizeof(peaks));
42                         memset (spectrum, 0, sizeof(spectrum));
43                         memset (loudness_hist, 0, sizeof(loudness_hist));
44                         memset (freq, 0, sizeof(freq));
45                 }
46
47                 ExportAnalysis (const ExportAnalysis& other)
48                         : peak (other.peak)
49                         , truepeak (other.truepeak)
50                         , loudness (other.loudness)
51                         , loudness_range (other.loudness_range)
52                         , loudness_hist_max (other.loudness_hist_max)
53                         , have_loudness (other.have_loudness)
54                         , have_dbtp (other.have_dbtp)
55                         , n_channels (other.n_channels)
56                 {
57                         memcpy (peaks, other.peaks, sizeof(peaks));
58                         memcpy (spectrum, other.spectrum, sizeof(spectrum));
59                         memcpy (loudness_hist, other.loudness_hist, sizeof(loudness_hist));
60                         memcpy (freq, other.freq, sizeof(freq));
61                 }
62
63                 float peak;
64                 float truepeak;
65                 float loudness;
66                 float loudness_range;
67                 int loudness_hist[540];
68                 int loudness_hist_max;
69                 bool have_loudness;
70                 bool have_dbtp;
71
72                 uint32_t n_channels;
73                 uint32_t freq[6]; // y-pos, 50, 100, 500, 1k, 5k, 10k [Hz]
74
75                 PeakData peaks[2][800];
76                 float spectrum[800][200];
77         };
78
79         typedef boost::shared_ptr<ExportAnalysis> ExportAnalysisPtr;
80         typedef std::map<std::string, ExportAnalysisPtr> AnalysisResults;
81
82 } // namespace ARDOUR
83 #endif