Merge master.
[dcpomatic.git] / src / lib / ffmpeg_examiner.cc
index a63090d12e72a5bbfc90185a7df2b758012af839..38dd678bbfa91da1f80562f3dac0d7fcf78c0829 100644 (file)
@@ -134,10 +134,10 @@ FFmpegExaminer::video_size () const
 }
 
 /** @return Length (in video frames) according to our content's header */
-VideoContent::Frame
+VideoFrame
 FFmpegExaminer::video_length () const
 {
-       VideoContent::Frame const length = (double (_format_context->duration) / AV_TIME_BASE) * video_frame_rate();
+       VideoFrame const length = (double (_format_context->duration) / AV_TIME_BASE) * video_frame_rate();
        return max (1, length);
 }