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