Merge master.
[dcpomatic.git] / src / lib / image_examiner.cc
1 /*
2     Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21 #include <Magick++.h>
22 #include "image_content.h"
23 #include "image_examiner.h"
24 #include "film.h"
25 #include "job.h"
26 #include "exceptions.h"
27 #include "config.h"
28
29 #include "i18n.h"
30
31 using std::cout;
32 using std::list;
33 using std::sort;
34 using boost::shared_ptr;
35
36 ImageExaminer::ImageExaminer (shared_ptr<const Film> film, shared_ptr<const ImageContent> content, shared_ptr<Job>)
37         : _film (film)
38         , _image_content (content)
39 {
40         using namespace MagickCore;
41         Magick::Image* image = new Magick::Image (content->path(0).string());
42         _video_size = dcp::Size (image->columns(), image->rows());
43         delete image;
44
45         if (content->still ()) {
46                 _video_length = ContentTime::from_seconds (Config::instance()->default_still_length());
47         } else {
48                 _video_length = ContentTime::from_frames (_image_content->number_of_paths (), video_frame_rate ());
49         }
50 }
51
52 dcp::Size
53 ImageExaminer::video_size () const
54 {
55         return _video_size.get ();
56 }
57
58 float
59 ImageExaminer::video_frame_rate () const
60 {
61         boost::shared_ptr<const Film> f = _film.lock ();
62         if (!f) {
63                 return 24;
64         }
65
66         return f->video_frame_rate ();
67 }