No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / src / lib / image_examiner.cc
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "image_content.h"
22 #include "image_examiner.h"
23 #include "film.h"
24 #include "job.h"
25 #include "exceptions.h"
26 #include "config.h"
27 #include "cross.h"
28 #include "compose.hpp"
29 #include <dcp/openjpeg_image.h>
30 #include <dcp/exceptions.h>
31 #include <dcp/j2k.h>
32 #include <Magick++.h>
33 #include <iostream>
34
35 #include "i18n.h"
36
37 using std::cout;
38 using std::list;
39 using std::sort;
40 using boost::shared_ptr;
41 using boost::optional;
42
43 ImageExaminer::ImageExaminer (shared_ptr<const Film> film, shared_ptr<const ImageContent> content, shared_ptr<Job>)
44         : _film (film)
45         , _image_content (content)
46 {
47 #ifdef DCPOMATIC_HAVE_MAGICKCORE_NAMESPACE
48         using namespace MagickCore;
49 #endif
50         boost::filesystem::path path = content->path(0).string ();
51         if (valid_j2k_file (path)) {
52                 boost::uintmax_t size = boost::filesystem::file_size (path);
53                 FILE* f = fopen_boost (path, "rb");
54                 if (!f) {
55                         throw FileError ("Could not open file for reading", path);
56                 }
57                 uint8_t* buffer = new uint8_t[size];
58                 fread (buffer, 1, size, f);
59                 fclose (f);
60                 try {
61                         _video_size = dcp::decompress_j2k (buffer, size, 0)->size ();
62                 } catch (dcp::DCPReadError& e) {
63                         delete[] buffer;
64                         throw DecodeError (String::compose (_("Could not decode JPEG2000 file %1 (%2)"), path, e.what ()));
65                 }
66                 delete[] buffer;
67         } else {
68                 Magick::Image* image = new Magick::Image (content->path(0).string());
69                 _video_size = dcp::Size (image->columns(), image->rows());
70                 delete image;
71         }
72
73         if (content->still ()) {
74                 _video_length = Config::instance()->default_still_length() * video_frame_rate().get_value_or (film->video_frame_rate ());
75         } else {
76                 _video_length = _image_content->number_of_paths ();
77         }
78 }
79
80 dcp::Size
81 ImageExaminer::video_size () const
82 {
83         return _video_size.get ();
84 }
85
86 optional<double>
87 ImageExaminer::video_frame_rate () const
88 {
89         if (_image_content->video_frame_rate()) {
90                 /* The content already knows what frame rate it should be */
91                 return _image_content->video_frame_rate().get();
92         }
93
94         /* Don't know */
95         return optional<double> ();
96 }
97
98 bool
99 ImageExaminer::yuv () const
100 {
101         /* We never convert ImageSource from YUV to RGB (though maybe sometimes we should)
102            so it makes sense to just say they are never YUV so the option of a conversion
103            to RGB is not offered.
104         */
105         return false;
106 }