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 #ifdef DCPOMATIC_IMAGE_MAGICK   
41         using namespace MagickCore;
42 #endif  
43         Magick::Image* image = new Magick::Image (content->path(0).string());
44         _video_size = dcp::Size (image->columns(), image->rows());
45         delete image;
46
47         if (content->still ()) {
48                 _video_length = ContentTime::from_seconds (Config::instance()->default_still_length());
49         } else {
50                 _video_length = ContentTime::from_frames (_image_content->number_of_paths (), video_frame_rate ());
51         }
52 }
53
54 dcp::Size
55 ImageExaminer::video_size () const
56 {
57         return _video_size.get ();
58 }
59
60 float
61 ImageExaminer::video_frame_rate () const
62 {
63         boost::shared_ptr<const Film> f = _film.lock ();
64         if (!f) {
65                 return 24;
66         }
67
68         return f->video_frame_rate ();
69 }