summaryrefslogtreecommitdiff
path: root/src/lib/sndfile_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-23 17:18:49 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-23 17:18:49 +0100
commit64a2f1bb6a7b972607fa363631ef7a47444e8217 (patch)
tree020c028a93f113e372e70f485857ce04dea5db3d /src/lib/sndfile_content.h
parent8c6fe8e1e8c8f6d5932606f2a5b6e1b87681ae38 (diff)
Various bits and pieces.
Diffstat (limited to 'src/lib/sndfile_content.h')
-rw-r--r--src/lib/sndfile_content.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/sndfile_content.h b/src/lib/sndfile_content.h
index bb7fa5f50..17423b8ed 100644
--- a/src/lib/sndfile_content.h
+++ b/src/lib/sndfile_content.h
@@ -31,19 +31,19 @@ namespace cxml {
class SndfileContent : public AudioContent
{
public:
- SndfileContent (boost::filesystem::path);
- SndfileContent (boost::shared_ptr<const cxml::Node>);
+ SndfileContent (boost::shared_ptr<const Film>, boost::filesystem::path);
+ SndfileContent (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>);
boost::shared_ptr<SndfileContent> shared_from_this () {
return boost::dynamic_pointer_cast<SndfileContent> (Content::shared_from_this ());
}
- void examine (boost::shared_ptr<Film>, boost::shared_ptr<Job>);
+ void examine (boost::shared_ptr<Job>);
std::string summary () const;
std::string information () const;
void as_xml (xmlpp::Node *) const;
boost::shared_ptr<Content> clone () const;
- Time length (boost::shared_ptr<const Film>) const;
+ Time length () const;
/* AudioContent */
int audio_channels () const {
@@ -61,7 +61,7 @@ public:
return _audio_frame_rate;
}
- int output_audio_frame_rate (boost::shared_ptr<const Film>) const;
+ int output_audio_frame_rate () const;
AudioMapping audio_mapping () const {
boost::mutex::scoped_lock lm (_mutex);