X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Faudio_content.h;h=83a5e327e87c02c0da9f98d987269bd858e72f6d;hp=b109cc15e199b43b96f69626e062f5ea0b244287;hb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;hpb=0d35820cf50d2789752b8776683b26d04642518d diff --git a/src/lib/audio_content.h b/src/lib/audio_content.h index b109cc15e..83a5e327e 100644 --- a/src/lib/audio_content.h +++ b/src/lib/audio_content.h @@ -44,15 +44,15 @@ class AudioContent : public ContentPart { public: explicit AudioContent (Content* parent); - AudioContent (Content* parent, std::vector >); + AudioContent (Content* parent, std::vector >); void as_xml (xmlpp::Node *) const; std::string technical_summary () const; - void take_settings_from (boost::shared_ptr c); + void take_settings_from (std::shared_ptr c); AudioMapping mapping () const; void set_mapping (AudioMapping); - int resampled_frame_rate (boost::shared_ptr film) const; + int resampled_frame_rate (std::shared_ptr film) const; std::vector channel_names () const; void set_gain (double); @@ -68,7 +68,7 @@ public: return _delay; } - std::string processing_description (boost::shared_ptr film) const; + std::string processing_description (std::shared_ptr film) const; std::vector streams () const { boost::mutex::scoped_lock lm (_mutex); @@ -80,12 +80,12 @@ public: void set_streams (std::vector streams); AudioStreamPtr stream () const; - void add_properties (boost::shared_ptr film, std::list &) const; + void add_properties (std::shared_ptr film, std::list &) const; - void modify_position (boost::shared_ptr film, dcpomatic::DCPTime& pos) const; + void modify_position (std::shared_ptr film, dcpomatic::DCPTime& pos) const; void modify_trim_start (dcpomatic::ContentTime& pos) const; - static boost::shared_ptr from_xml (Content* parent, cxml::ConstNodePtr, int version); + static std::shared_ptr from_xml (Content* parent, cxml::ConstNodePtr, int version); private: