Hand-apply 6a3cd511559433554ab40ed72ff94b7d8dc2c5bd from 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 "image_content.h"
21 #include "image_examiner.h"
22 #include "film.h"
23 #include "job.h"
24 #include "exceptions.h"
25 #include "config.h"
26 #include "cross.h"
27 #include <dcp/xyz_frame.h>
28 #include <Magick++.h>
29 #include <iostream>
30
31 #include "i18n.h"
32
33 using std::cout;
34 using std::list;
35 using std::sort;
36 using boost::shared_ptr;
37 using boost::optional;
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 {
43 #ifdef DCPOMATIC_IMAGE_MAGICK   
44         using namespace MagickCore;
45 #endif
46         boost::filesystem::path path = content->path(0).string ();
47         if (valid_j2k_file (path)) {
48                 boost::uintmax_t size = boost::filesystem::file_size (path);
49                 uint8_t* buffer = new uint8_t[size];
50                 FILE* f = fopen_boost (path, "r");
51                 if (!f) {
52                         throw FileError ("Could not open file for reading", path);
53                 }
54                 fread (buffer, 1, size, f);
55                 fclose (f);
56                 _video_size = dcp::decompress_j2k (buffer, size, 0)->size ();
57                 delete[] buffer;
58         } else {
59                 Magick::Image* image = new Magick::Image (content->path(0).string());
60                 _video_size = dcp::Size (image->columns(), image->rows());
61                 delete image;
62         }
63
64         if (content->still ()) {
65                 _video_length = ContentTime::from_seconds (Config::instance()->default_still_length());
66         } else {
67                 _video_length = ContentTime::from_frames (
68                         _image_content->number_of_paths (), video_frame_rate().get_value_or (0)
69                         );
70         }
71 }
72
73 dcp::Size
74 ImageExaminer::video_size () const
75 {
76         return _video_size.get ();
77 }
78
79 optional<float>
80 ImageExaminer::video_frame_rate () const
81 {
82         /* Don't know */
83         return optional<float> ();
84 }