Merge branch '1.0' into 1.0-seek
[dcpomatic.git] / src / lib / image_content.cc
index b05fa6b8d69ce8599503e3d9b3c1e6c5179e6c9a..0f952607159f99e4da16b6990f7efac0a32a541b 100644 (file)
@@ -120,13 +120,13 @@ ImageContent::set_video_length (VideoContent::Frame len)
        signal_changed (ContentProperty::LENGTH);
 }
 
-Time
+DCPTime
 ImageContent::full_length () const
 {
        shared_ptr<const Film> film = _film.lock ();
        assert (film);
        
-       FrameRateConversion frc (video_frame_rate(), film->video_frame_rate ());
+       FrameRateChange frc (video_frame_rate(), film->video_frame_rate ());
        return video_length() * frc.factor() * TIME_HZ / video_frame_rate();
 }