summaryrefslogtreecommitdiff
path: root/src/lib/null_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-23 12:52:49 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-23 12:52:49 +0100
commit8c6fe8e1e8c8f6d5932606f2a5b6e1b87681ae38 (patch)
tree07e1d5f76b0c5fcb614831e72d196dd814132e49 /src/lib/null_content.h
parente8819ad7580f25eea7ca3c59cf0a3979d76a6b44 (diff)
Various more hacks.
Diffstat (limited to 'src/lib/null_content.h')
-rw-r--r--src/lib/null_content.h41
1 files changed, 29 insertions, 12 deletions
diff --git a/src/lib/null_content.h b/src/lib/null_content.h
index 4f19c3b0a..e68008782 100644
--- a/src/lib/null_content.h
+++ b/src/lib/null_content.h
@@ -1,3 +1,22 @@
+/*
+ Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
#include <string>
#include <boost/shared_ptr.hpp>
#include "content.h"
@@ -5,12 +24,7 @@
class NullContent : public VideoContent, public AudioContent
{
public:
- NullContent (Time s, Time len)
- : Content (s)
- , VideoContent (s)
- , AudioContent (s)
- , _length (len)
- {}
+ NullContent (Time, Time, boost::shared_ptr<const Film>);
std::string summary () const {
return "";
@@ -19,9 +33,11 @@ public:
std::string information () const {
return "";
}
+
+ void as_xml (xmlpp::Node *) const {}
boost::shared_ptr<Content> clone () const {
- return shared_ptr<Content> ();
+ return boost::shared_ptr<Content> ();
}
int audio_channels () const {
@@ -29,15 +45,15 @@ public:
}
ContentAudioFrame audio_length () const {
- return _length * content_audio_frame_rate() / TIME_HZ;
+ return _audio_length;
}
int content_audio_frame_rate () const {
- return 48000;
+ return _content_audio_frame_rate;
}
- int output_audio_frame_rate (boost::shared_ptr<const Film>) const {
- return _film->dcp_audio_frame_rate (content_audio_frame_rate ());
+ int output_audio_frame_rate (boost::shared_ptr<const Film> f) const {
+ return f->dcp_audio_frame_rate ();
}
AudioMapping audio_mapping () const {
@@ -49,5 +65,6 @@ public:
}
private:
- Time _length;
+ ContentAudioFrame _audio_length;
+ ContentAudioFrame _content_audio_frame_rate;
};