X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_content.cc;h=c84ba7d29019c3f0575170678254c4649f27c97d;hb=f67bc45820b4e56f90eecb97ba3b7762c119f9b5;hp=9e0bb09b5925a0a14f76f9afce703c7fb5b38ea7;hpb=eb9ea628857e72a99070f139a2f868164f9e1e14;p=dcpomatic.git diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index 9e0bb09b5..c84ba7d29 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -40,8 +40,7 @@ using std::list; using std::vector; using boost::shared_ptr; -ImageContent::ImageContent (shared_ptr film, boost::filesystem::path p) - : Content (film) +ImageContent::ImageContent (boost::filesystem::path p) { video.reset (new VideoContent (this)); @@ -55,8 +54,8 @@ ImageContent::ImageContent (shared_ptr film, boost::filesystem::path } -ImageContent::ImageContent (shared_ptr film, cxml::ConstNodePtr node, int version) - : Content (film, node) +ImageContent::ImageContent (cxml::ConstNodePtr node, int version) + : Content (node) { video = VideoContent::from_xml (this, node, version); } @@ -102,7 +101,7 @@ ImageContent::as_xml (xmlpp::Node* node, bool with_paths) const } void -ImageContent::examine (shared_ptr job) +ImageContent::examine (shared_ptr film, shared_ptr job) { if (_path_to_scan) { job->sub (_("Scanning image files")); @@ -126,10 +125,7 @@ ImageContent::examine (shared_ptr job) set_paths (paths); } - Content::examine (job); - - shared_ptr film = _film.lock (); - DCPOMATIC_ASSERT (film); + Content::examine (film, job); shared_ptr examiner (new ImageExaminer (film, shared_from_this(), job)); video->take_from_examiner (examiner); @@ -137,12 +133,10 @@ ImageContent::examine (shared_ptr job) } DCPTime -ImageContent::full_length () const +ImageContent::full_length (shared_ptr film) const { - shared_ptr film = _film.lock (); - DCPOMATIC_ASSERT (film); - FrameRateChange const frc (active_video_frame_rate(), film->video_frame_rate()); - return DCPTime::from_frames (llrint (video->length_after_3d_combine() * frc.factor ()), film->video_frame_rate ()); + FrameRateChange const frc (film, shared_from_this()); + return DCPTime::from_frames (llrint(video->length_after_3d_combine() * frc.factor()), film->video_frame_rate()); } string