Back-port v2's rename and slight extension of FrameRateConversion.
[dcpomatic.git] / src / lib / image_content.cc
index 3b87fcf008c4372114e77009e424dbdd30dd5cf6..6acf0bab924001eaa5b51e1d1349ce134e5e719c 100644 (file)
@@ -24,6 +24,7 @@
 #include "compose.hpp"
 #include "film.h"
 #include "job.h"
+#include "frame_rate_change.h"
 
 #include "i18n.h"
 
@@ -130,7 +131,7 @@ 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_after_3d_combine() * frc.factor() * TIME_HZ / video_frame_rate();
 }