Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / single_stream_audio_content.h
1 /*
2     Copyright (C) 2014-2015 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>, cxml::ConstNodePtr node, int version);
40
41         void as_xml (xmlpp::Node* node) const;
42
43         std::vector<AudioStreamPtr> audio_streams () const;
44
45         AudioStreamPtr audio_stream () const {
46                 return _audio_stream;
47         }
48
49         void take_from_audio_examiner (boost::shared_ptr<AudioExaminer>);
50
51 protected:
52         void add_properties (std::list<std::pair<std::string, std::string> > &) const;
53
54         boost::shared_ptr<AudioStream> _audio_stream;
55 };
56
57 #endif