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