X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Faudio_content.h;h=051fc8db8941f137fdd54d90f457dd709204aa42;hb=254b3044d72de6b033d7c584f5abd2b9aa70aad5;hp=eec67b2010a29fd723e8a9c1fb0848e040e28008;hpb=e82a4c81fe8bb3c3c6b68c667bda2f32fed4e68d;p=dcpomatic.git diff --git a/src/lib/audio_content.h b/src/lib/audio_content.h index eec67b201..051fc8db8 100644 --- a/src/lib/audio_content.h +++ b/src/lib/audio_content.h @@ -52,7 +52,7 @@ public: AudioMapping mapping () const; void set_mapping (AudioMapping); - int resampled_frame_rate () const; + int resampled_frame_rate (boost::shared_ptr film) const; bool has_rate_above_48k () const; std::vector channel_names () const; @@ -69,7 +69,7 @@ public: return _delay; } - std::string processing_description () const; + std::string processing_description (boost::shared_ptr film) const; std::vector streams () const { boost::mutex::scoped_lock lm (_mutex); @@ -81,9 +81,9 @@ public: void set_streams (std::vector streams); AudioStreamPtr stream () const; - void add_properties (std::list &) const; + void add_properties (boost::shared_ptr film, std::list &) const; - void modify_position (DCPTime& pos) const; + void modify_position (boost::shared_ptr film, DCPTime& pos) const; void modify_trim_start (ContentTime& pos) const; static boost::shared_ptr from_xml (Content* parent, cxml::ConstNodePtr, int version);