diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-05-19 11:34:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-05-19 11:34:01 +0100 |
| commit | bb0a36c3a6bea9cd1ebdde7b8a3a04765e317569 (patch) | |
| tree | fe31842bc2fcb511f3f6daf02c78575b4eabaec5 /src/lib/ffmpeg_content.h | |
| parent | 308488324dbc4d8b709d3fb1dc9fee0479346c21 (diff) | |
Use cxml::ConstNodePtr.
Diffstat (limited to 'src/lib/ffmpeg_content.h')
| -rw-r--r-- | src/lib/ffmpeg_content.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ffmpeg_content.h b/src/lib/ffmpeg_content.h index 37746ac9d..c546d69eb 100644 --- a/src/lib/ffmpeg_content.h +++ b/src/lib/ffmpeg_content.h @@ -41,7 +41,7 @@ public: , _id (i) {} - FFmpegStream (boost::shared_ptr<const cxml::Node>); + FFmpegStream (cxml::ConstNodePtr); void as_xml (xmlpp::Node *) const; @@ -81,7 +81,7 @@ public: mapping.make_default (); } - FFmpegAudioStream (boost::shared_ptr<const cxml::Node>, int); + FFmpegAudioStream (cxml::ConstNodePtr, int); void as_xml (xmlpp::Node *) const; @@ -109,7 +109,7 @@ public: : FFmpegStream (n, i) {} - FFmpegSubtitleStream (boost::shared_ptr<const cxml::Node>); + FFmpegSubtitleStream (cxml::ConstNodePtr); void as_xml (xmlpp::Node *) const; }; @@ -128,7 +128,7 @@ class FFmpegContent : public VideoContent, public AudioContent, public SubtitleC { public: FFmpegContent (boost::shared_ptr<const Film>, boost::filesystem::path); - FFmpegContent (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>, int version, std::list<std::string> &); + FFmpegContent (boost::shared_ptr<const Film>, cxml::ConstNodePtr, int version, std::list<std::string> &); FFmpegContent (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >); boost::shared_ptr<FFmpegContent> shared_from_this () { |
