diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-21 09:40:44 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-21 09:40:44 +0000 |
| commit | 23734f3e7293f685e0ade7ed27a669031b269c47 (patch) | |
| tree | 2fe899dd7e50035768d297eb37d78f310c6c8e66 /src | |
| parent | cfd4beb36642439db23603f9b8099294761e4624 (diff) | |
Fix initial video length of stills.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/image_examiner.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/image_examiner.cc b/src/lib/image_examiner.cc index 4cba788bd..9ceb7b896 100644 --- a/src/lib/image_examiner.cc +++ b/src/lib/image_examiner.cc @@ -46,7 +46,7 @@ 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 ()); } |
