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
110
|
/*
Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "j2k_image_proxy.h"
#include "dcpomatic_socket.h"
#include "image.h"
#include "data.h"
#include "raw_convert.h"
#include <dcp/mono_picture_frame.h>
#include <dcp/stereo_picture_frame.h>
#include <dcp/colour_conversion.h>
#include <dcp/rgb_xyz.h>
#include <libcxml/cxml.h>
#include "i18n.h"
using std::string;
using boost::shared_ptr;
using boost::optional;
/** Construct a J2KImageProxy from a JPEG2000 file */
J2KImageProxy::J2KImageProxy (boost::filesystem::path path, dcp::Size size)
: _data (path)
, _size (size)
{
}
J2KImageProxy::J2KImageProxy (shared_ptr<const dcp::MonoPictureFrame> frame, dcp::Size size)
: _data (frame->j2k_size ())
, _size (size)
{
memcpy (_data.data().get(), frame->j2k_data(), _data.size ());
}
J2KImageProxy::J2KImageProxy (shared_ptr<const dcp::StereoPictureFrame> frame, dcp::Size size, dcp::Eye eye)
: _size (size)
, _eye (eye)
{
switch (eye) {
case dcp::EYE_LEFT:
_data = Data (frame->left_j2k_size ());
memcpy (_data.data().get(), frame->left_j2k_data(), _data.size ());
break;
case dcp::EYE_RIGHT:
_data = Data (frame->right_j2k_size ());
memcpy (_data.data().get(), frame->right_j2k_data(), _data.size ());
break;
}
}
J2KImageProxy::J2KImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket)
{
_size = dcp::Size (xml->number_child<int> ("Width"), xml->number_child<int> ("Height"));
if (xml->optional_number_child<int> ("Eye")) {
_eye = static_cast<dcp::Eye> (xml->number_child<int> ("Eye"));
}
_data = Data (xml->number_child<int> ("Size"));
socket->read (_data.data().get (), _data.size ());
}
shared_ptr<Image>
J2KImageProxy::image (optional<dcp::NoteHandler> note) const
{
shared_ptr<Image> image (new Image (PIX_FMT_RGB48LE, _size, true));
dcp::xyz_to_rgb (
dcp::decompress_j2k (const_cast<uint8_t*> (_data.data().get()), _data.size (), 0),
dcp::ColourConversion::srgb_to_xyz(),
image->data()[0],
image->stride()[0],
note
);
return image;
}
void
J2KImageProxy::add_metadata (xmlpp::Node* node) const
{
node->add_child("Type")->add_child_text (N_("J2K"));
node->add_child("Width")->add_child_text (raw_convert<string> (_size.width));
node->add_child("Height")->add_child_text (raw_convert<string> (_size.height));
if (_eye) {
node->add_child("Eye")->add_child_text (raw_convert<string> (_eye.get ()));
}
node->add_child("Size")->add_child_text (raw_convert<string> (_data.size ()));
}
void
J2KImageProxy::send_binary (shared_ptr<Socket> socket) const
{
socket->write (_data.data().get(), _data.size());
}
|