Various more hacks.
[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 "content.h"
23
24 class NullContent : public VideoContent, public AudioContent
25 {
26 public:
27         NullContent (Time, Time, boost::shared_ptr<const Film>);
28
29         std::string summary () const {
30                 return "";
31         }
32         
33         std::string information () const {
34                 return "";
35         }
36
37         void as_xml (xmlpp::Node *) const {}
38         
39         boost::shared_ptr<Content> clone () const {
40                 return boost::shared_ptr<Content> ();
41         }
42
43         int audio_channels () const {
44                 return MAX_AUDIO_CHANNELS;
45         }
46         
47         ContentAudioFrame audio_length () const {
48                 return _audio_length;
49         }
50         
51         int content_audio_frame_rate () const {
52                 return _content_audio_frame_rate;
53         }
54         
55         int output_audio_frame_rate (boost::shared_ptr<const Film> f) const {
56                 return f->dcp_audio_frame_rate ();
57         }
58         
59         AudioMapping audio_mapping () const {
60                 return AudioMapping ();
61         }
62         
63         Time length (boost::shared_ptr<const Film>) const {
64                 return _length;
65         }
66
67 private:
68         ContentAudioFrame _audio_length;
69         ContentAudioFrame _content_audio_frame_rate;
70 };