Supporters update.
[dcpomatic.git] / src / lib / image_examiner.cc
1 /*
2     Copyright (C) 2013-2021 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
22 #include "compose.hpp"
23 #include "config.h"
24 #include "cross.h"
25 #include "exceptions.h"
26 #include "ffmpeg_image_proxy.h"
27 #include "film.h"
28 #include "image.h"
29 #include "image_content.h"
30 #include "image_examiner.h"
31 #include "job.h"
32 #include <dcp/openjpeg_image.h>
33 #include <dcp/exceptions.h>
34 #include <dcp/filesystem.h>
35 #include <dcp/j2k_transcode.h>
36 #include <iostream>
37
38 #include "i18n.h"
39
40
41 using std::cout;
42 using std::list;
43 using std::shared_ptr;
44 using std::sort;
45 using boost::optional;
46
47
48 ImageExaminer::ImageExaminer (shared_ptr<const Film> film, shared_ptr<const ImageContent> content, shared_ptr<Job>)
49         : _film (film)
50         , _image_content (content)
51 {
52         auto path = content->path(0);
53         if (valid_j2k_file (path)) {
54                 auto size = dcp::filesystem::file_size(path);
55                 dcp::File f(path, "rb");
56                 if (!f) {
57                         throw FileError ("Could not open file for reading", path);
58                 }
59                 std::vector<uint8_t> buffer(size);
60                 f.checked_read(buffer.data(), size);
61                 f.close();
62                 try {
63                         _video_size = dcp::decompress_j2k(buffer.data(), size, 0)->size();
64                 } catch (dcp::ReadError& e) {
65                         throw DecodeError (String::compose (_("Could not decode JPEG2000 file %1 (%2)"), path, e.what ()));
66                 }
67         } else {
68                 FFmpegImageProxy proxy(content->path(0));
69                 _video_size = proxy.image(Image::Alignment::COMPACT).image->size();
70         }
71
72         if (content->still ()) {
73                 _video_length = Config::instance()->default_still_length() * video_frame_rate().get_value_or (film->video_frame_rate ());
74         } else {
75                 _video_length = _image_content->number_of_paths ();
76         }
77 }
78
79
80 optional<dcp::Size>
81 ImageExaminer::video_size () const
82 {
83         return _video_size;
84 }
85
86
87 optional<double>
88 ImageExaminer::video_frame_rate () const
89 {
90         if (_image_content->video_frame_rate()) {
91                 /* The content already knows what frame rate it should be */
92                 return _image_content->video_frame_rate().get();
93         }
94
95         /* Don't know */
96         return {};
97 }
98
99
100 bool
101 ImageExaminer::yuv () const
102 {
103         /* We never convert ImageSource from YUV to RGB (though maybe sometimes we should)
104            so it makes sense to just say they are never YUV so the option of a conversion
105            to RGB is not offered.
106         */
107         return false;
108 }