Don't overlap simultaneous video content in the timeline. Fix keep-aligned for separ...
[dcpomatic.git] / src / lib / image_examiner.cc
1 /*
2     Copyright (C) 2013 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 <boost/lexical_cast.hpp>
22 #include <Magick++.h>
23 #include "image_content.h"
24 #include "image_examiner.h"
25 #include "film.h"
26 #include "job.h"
27 #include "exceptions.h"
28 #include "config.h"
29
30 #include "i18n.h"
31
32 using std::cout;
33 using std::list;
34 using std::sort;
35 using boost::shared_ptr;
36 using boost::lexical_cast;
37 using boost::bad_lexical_cast;
38
39 ImageExaminer::ImageExaminer (shared_ptr<const Film> film, shared_ptr<const ImageContent> content, shared_ptr<Job>)
40         : _film (film)
41         , _image_content (content)
42         , _video_length (0)
43 {
44         using namespace MagickCore;
45         Magick::Image* image = new Magick::Image (content->path(0).string());
46         _video_size = libdcp::Size (image->columns(), image->rows());
47         delete image;
48
49         if (content->still ()) {
50                 _video_length = Config::instance()->default_still_length() * video_frame_rate();
51         } else {
52                 _video_length = _image_content->number_of_paths ();
53         }
54 }
55
56 libdcp::Size
57 ImageExaminer::video_size () const
58 {
59         return _video_size.get ();
60 }
61
62 float
63 ImageExaminer::video_frame_rate () const
64 {
65         boost::shared_ptr<const Film> f = _film.lock ();
66         if (!f) {
67                 return 24;
68         }
69
70         return f->video_frame_rate ();
71 }