Improve audio mapping handling a bit.
[dcpomatic.git] / src / lib / null_content.h
1 /*
2     Copyright (C) 2013 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 <string>
21 #include <boost/shared_ptr.hpp>
22 #include "video_content.h"
23 #include "audio_content.h"
24
25 class NullContent : public VideoContent, public AudioContent
26 {
27 public:
28         NullContent (boost::shared_ptr<const Film>, Time, Time);
29
30         std::string summary () const {
31                 return "";
32         }
33         
34         std::string information () const {
35                 return "";
36         }
37
38         void as_xml (xmlpp::Node *) const {}
39         
40         boost::shared_ptr<Content> clone () const {
41                 return boost::shared_ptr<Content> ();
42         }
43
44         int audio_channels () const;
45         
46         ContentAudioFrame audio_length () const {
47                 return _audio_length;
48         }
49         
50         int content_audio_frame_rate () const;
51         
52         int output_audio_frame_rate () const;
53         
54         AudioMapping audio_mapping () const {
55                 return AudioMapping ();
56         }
57
58         void set_audio_mapping (AudioMapping) {}
59         
60         Time length () const {
61                 return _length;
62         }
63
64 private:
65         ContentAudioFrame _audio_length;
66         Time _length;
67 };