It builds again.
[libdcp.git] / src / sound_mxf.h
1 /*
2     Copyright (C) 2012-2014 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 LIBDCP_SOUND_MXF_H
21 #define LIBDCP_SOUND_MXF_H
22
23 #include "mxf.h"
24 #include "types.h"
25 #include "metadata.h"
26
27 namespace dcp
28 {
29
30 class SoundFrame;
31 class SoundMXFWriter;
32
33 class SoundMXF : public MXF
34 {
35 public:
36         SoundMXF (boost::filesystem::path file);
37         SoundMXF (Fraction edit_rate, int sampling_rate, int channels);
38
39         boost::shared_ptr<SoundMXFWriter> start_write (boost::filesystem::path file, Standard standard);
40         
41         bool equals (boost::shared_ptr<const Content> other, EqualityOptions opt, boost::function<void (NoteType, std::string)> note) const;
42
43         boost::shared_ptr<const SoundFrame> get_frame (int n) const;
44
45         void set_channels (int c) {
46                 _channels = c;
47         }
48         
49         int channels () const {
50                 return _channels;
51         }
52
53         void set_sampling_rate (int s) {
54                 _sampling_rate = s;
55         }
56
57         int sampling_rate () const {
58                 return _sampling_rate;
59         }
60
61 private:
62         std::string key_type () const;
63
64         /** Number of channels in the asset */
65         int _channels;
66         int _sampling_rate;
67 };
68
69 }
70
71 #endif