diff options
Diffstat (limited to 'src/lib/sndfile_content.h')
| -rw-r--r-- | src/lib/sndfile_content.h | 10 |
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); |
