Fix the build for older macOS.
[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 "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 #include "cross.h"
29 #include "compose.hpp"
30 #include "ffmpeg_image_proxy.h"
31 #include "image.h"
32 #include <dcp/openjpeg_image.h>
33 #include <dcp/exceptions.h>
34 #include <dcp/j2k_transcode.h>
35 #include <iostream>
36
37 #include "i18n.h"
38
39
40 using std::cout;
41 using std::list;
42 using std::sort;
43 using std::shared_ptr;
44 using boost::optional;
45
46
47 ImageExaminer::ImageExaminer (shared_ptr<const Film> film, shared_ptr<const ImageContent> content, shared_ptr<Job>)
48         : _film (film)
49         , _image_content (content)
50 {
51         auto path = content->path(0);
52         if (valid_j2k_file (path)) {
53                 auto size = boost::filesystem::file_size (path);
54                 auto f = fopen_boost (path, "rb");
55                 if (!f) {
56                         throw FileError ("Could not open file for reading", path);
57                 }
58                 auto buffer = new uint8_t[size];
59                 checked_fread (buffer, size, f, path);
60                 fclose (f);
61                 try {
62                         _video_size = dcp::decompress_j2k (buffer, size, 0)->size ();
63                 } catch (dcp::ReadError& e) {
64                         delete[] buffer;
65                         throw DecodeError (String::compose (_("Could not decode JPEG2000 file %1 (%2)"), path, e.what ()));
66                 }
67                 delete[] buffer;
68         } else {
69                 FFmpegImageProxy proxy(content->path(0));
70                 _video_size = proxy.image(Image::Alignment::COMPACT).image->size();
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
81 dcp::Size
82 ImageExaminer::video_size () const
83 {
84         return _video_size.get ();
85 }
86
87
88 optional<double>
89 ImageExaminer::video_frame_rate () const
90 {
91         if (_image_content->video_frame_rate()) {
92                 /* The content already knows what frame rate it should be */
93                 return _image_content->video_frame_rate().get();
94         }
95
96         /* Don't know */
97         return {};
98 }
99
100
101 bool
102 ImageExaminer::yuv () const
103 {
104         /* We never convert ImageSource from YUV to RGB (though maybe sometimes we should)
105            so it makes sense to just say they are never YUV so the option of a conversion
106            to RGB is not offered.
107         */
108         return false;
109 }