Basic stuff to analyse audio (job).
[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 <cassert>
22 #include <fstream>
23 #include "audio_analysis.h"
24
25 using std::ostream;
26 using std::string;
27 using std::ofstream;
28 using std::vector;
29
30 AudioPoint::AudioPoint ()
31 {
32         for (int i = 0; i < COUNT; ++i) {
33                 _data[i] = 0;
34         }
35 }
36
37 void
38 AudioPoint::write (ostream& s) const
39 {
40         for (int i = 0; i < COUNT; ++i) {
41                 s << _data[i] << "\n";
42         }
43 }
44         
45
46 AudioAnalysis::AudioAnalysis (int channels)
47 {
48         _data.resize (channels);
49 }
50
51 void
52 AudioAnalysis::add_point (int c, AudioPoint const & p)
53 {
54         assert (c < int (_data.size ()));
55         _data[c].push_back (p);
56 }
57
58 void
59 AudioAnalysis::write (string filename)
60 {
61         ofstream f (filename.c_str ());
62         f << _data.size() << "\n";
63         for (vector<vector<AudioPoint> >::iterator i = _data.begin(); i != _data.end(); ++i) {
64                 f << i->size () << "\n";
65                 for (vector<AudioPoint>::iterator j = i->begin(); j != i->end(); ++j) {
66                         j->write (f);
67                 }
68         }
69 }