04ec8aebedb8756758b0596404bc3990cd77a38a
[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 (
42                 boost::shared_ptr<const Content> other,
43                 EqualityOptions opt,
44                 boost::function<void (NoteType, std::string)> note
45                 ) const;
46
47         boost::shared_ptr<const SoundFrame> get_frame (int n) const;
48
49         void set_channels (int c) {
50                 _channels = c;
51         }
52         
53         int channels () const {
54                 return _channels;
55         }
56
57         void set_sampling_rate (int s) {
58                 _sampling_rate = s;
59         }
60
61         int sampling_rate () const {
62                 return _sampling_rate;
63         }
64
65 private:
66         std::string key_type () const;
67
68         /** Number of channels in the asset */
69         int _channels;
70         int _sampling_rate;
71 };
72
73 }
74
75 #endif