Back-port v2's rename and slight extension of FrameRateConversion.
[dcpomatic.git] / src / lib / video_content.cc
index 40772980fb466754fdec79cd85699a082b33c7ae..ec5890b4549c1a43d5873d0035417a95bfa9a814 100644 (file)
@@ -30,6 +30,7 @@
 #include "util.h"
 #include "film.h"
 #include "exceptions.h"
+#include "frame_rate_change.h"
 
 #include "i18n.h"
 
@@ -367,7 +368,7 @@ VideoContent::time_to_content_video_frames (Time t) 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());
 
        /* Here we are converting from time (in the DCP) to a frame number in the content.
           Hence we need to use the DCP's frame rate and the double/skip correction, not