Merge master.
[dcpomatic.git] / src / lib / image_examiner.cc
index 4cba788bdd5bb900a6436e4325092a86777a1e06..3897bbf37b0a5f4c2fc219e0b47c12712ae3708e 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -46,9 +46,9 @@ ImageExaminer::ImageExaminer (shared_ptr<const Film> film, shared_ptr<const Imag
        delete image;
 
        if (content->still ()) {
-               _video_length = ContentTime (Config::instance()->default_still_length());
+               _video_length = ContentTime::from_seconds (Config::instance()->default_still_length());
        } else {
-               _video_length = ContentTime (double (_image_content->number_of_paths ()) / video_frame_rate ());
+               _video_length = ContentTime::from_frames (_image_content->number_of_paths (), video_frame_rate ());
        }
 }