Merge master.
[dcpomatic.git] / src / lib / single_stream_audio_content.h
1 /*
2     Copyright (C) 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 /** @file  src/lib/single_stream_audio_content.h
21  *  @brief SingleStreamAudioContent class.
22  */
23
24 #ifndef DCPOMATIC_SINGLE_STREAM_AUDIO_CONTENT_H
25 #define DCPOMATIC_SINGLE_STREAM_AUDIO_CONTENT_H
26
27 #include "audio_content.h"
28
29 class AudioExaminer;
30
31 /** @class SingleStreamAudioContent
32  *  @brief A piece of AudioContent that has a single audio stream.
33  */
34 class SingleStreamAudioContent : public AudioContent
35 {
36 public:
37         SingleStreamAudioContent (boost::shared_ptr<const Film>);
38         SingleStreamAudioContent (boost::shared_ptr<const Film>, boost::filesystem::path);
39         SingleStreamAudioContent (boost::shared_ptr<const Film> f, cxml::ConstNodePtr node, int version);
40
41         void as_xml (xmlpp::Node* node) const;
42
43         /* AudioContent */
44         int audio_channels () const {
45                 boost::mutex::scoped_lock lm (_mutex);
46                 return _audio_channels;
47         }
48         
49         ContentTime audio_length () const {
50                 boost::mutex::scoped_lock lm (_mutex);
51                 return _audio_length;
52         }
53         
54         int audio_frame_rate () const {
55                 boost::mutex::scoped_lock lm (_mutex);
56                 return _audio_frame_rate;
57         }
58
59         AudioMapping audio_mapping () const {
60                 boost::mutex::scoped_lock lm (_mutex);
61                 return _audio_mapping;
62         }
63
64         void set_audio_mapping (AudioMapping);
65
66         void take_from_audio_examiner (boost::shared_ptr<AudioExaminer>);
67
68 protected:
69         int _audio_channels;
70         ContentTime _audio_length;
71         int _audio_frame_rate;
72         AudioMapping _audio_mapping;
73 };
74
75 #endif