Add loudness histogram Feature to the EBUr128 VAMP plugin
[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                         : loudness (0)
33                         , loudness_range (0)
34                         , loudness_hist_max (0)
35                         , have_loudness (false)
36                 {
37                         memset (peaks, 0, sizeof(peaks));
38                         memset (spectrum, 0, sizeof(spectrum));
39                         memset (loudness_hist, 0, sizeof(loudness_hist));
40                 }
41
42                 ExportAnalysis (const ExportAnalysis& other)
43                         : loudness (other.loudness)
44                         , loudness_range (other.loudness_range)
45                         , loudness_hist_max (other.loudness_hist_max)
46                         , have_loudness (other.have_loudness)
47                 {
48                         memcpy (peaks, other.peaks, sizeof(peaks));
49                         memcpy (spectrum, other.spectrum, sizeof(spectrum));
50                         memcpy (loudness_hist, other.loudness_hist, sizeof(loudness_hist));
51                 }
52
53                 float loudness;
54                 float loudness_range;
55                 int loudness_hist[540];
56                 int loudness_hist_max;
57                 bool have_loudness;
58
59                 PeakData peaks[800];
60                 float spectrum[800][200];
61         };
62
63         typedef boost::shared_ptr<ExportAnalysis> ExportAnalysisPtr;
64         typedef std::map<std::string, ExportAnalysisPtr> AnalysisResults;
65
66 } // namespace ARDOUR
67 #endif