Merge.
[dcpomatic.git] / src / lib / audio_analysis.cc
1 /*
2     Copyright (C) 2012 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 #include <stdint.h>
21 #include <cmath>
22 #include <cassert>
23 #include <fstream>
24 #include <boost/filesystem.hpp>
25 #include "audio_analysis.h"
26
27 using std::ostream;
28 using std::istream;
29 using std::string;
30 using std::ofstream;
31 using std::ifstream;
32 using std::vector;
33 using std::cout;
34 using std::max;
35 using std::list;
36
37 AudioPoint::AudioPoint ()
38 {
39         for (int i = 0; i < COUNT; ++i) {
40                 _data[i] = 0;
41         }
42 }
43
44 AudioPoint::AudioPoint (istream& s)
45 {
46         for (int i = 0; i < COUNT; ++i) {
47                 s >> _data[i];
48         }
49 }
50
51 void
52 AudioPoint::write (ostream& s) const
53 {
54         for (int i = 0; i < COUNT; ++i) {
55                 s << _data[i] << "\n";
56         }
57 }
58         
59
60 AudioAnalysis::AudioAnalysis (int channels)
61 {
62         _data.resize (channels);
63 }
64
65 AudioAnalysis::AudioAnalysis (string filename)
66 {
67         ifstream f (filename.c_str ());
68
69         int channels;
70         f >> channels;
71         _data.resize (channels);
72
73         for (int i = 0; i < channels; ++i) {
74                 int points;
75                 f >> points;
76                 for (int j = 0; j < points; ++j) {
77                         _data[i].push_back (AudioPoint (f));
78                 }
79         }
80 }
81
82 void
83 AudioAnalysis::add_point (int c, AudioPoint const & p)
84 {
85         assert (c < channels ());
86         _data[c].push_back (p);
87 }
88
89 AudioPoint
90 AudioAnalysis::get_point (int c, int p) const
91 {
92         assert (p < points (c));
93         return _data[c][p];
94 }
95
96 int
97 AudioAnalysis::channels () const
98 {
99         return _data.size ();
100 }
101
102 int
103 AudioAnalysis::points (int c) const
104 {
105         assert (c < channels ());
106         return _data[c].size ();
107 }
108
109 void
110 AudioAnalysis::write (string filename)
111 {
112         string tmp = filename + ".tmp";
113         
114         ofstream f (tmp.c_str ());
115         f << _data.size() << "\n";
116         for (vector<vector<AudioPoint> >::iterator i = _data.begin(); i != _data.end(); ++i) {
117                 f << i->size () << "\n";
118                 for (vector<AudioPoint>::iterator j = i->begin(); j != i->end(); ++j) {
119                         j->write (f);
120                 }
121         }
122
123         f.close ();
124         boost::filesystem::rename (tmp, filename);
125 }