Revert "Use make_shared<>."
[dcpomatic.git] / src / lib / j2k_image_proxy.cc
1 /*
2     Copyright (C) 2014-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 "j2k_image_proxy.h"
22 #include "dcpomatic_socket.h"
23 #include "image.h"
24 #include "raw_convert.h"
25 #include <dcp/openjpeg_image.h>
26 #include <dcp/mono_picture_frame.h>
27 #include <dcp/stereo_picture_frame.h>
28 #include <dcp/colour_conversion.h>
29 #include <dcp/rgb_xyz.h>
30 #include <dcp/j2k.h>
31 #include <libcxml/cxml.h>
32 #include <libxml++/libxml++.h>
33 #include <iostream>
34
35 #include "i18n.h"
36
37 using std::string;
38 using std::cout;
39 using boost::shared_ptr;
40 using boost::optional;
41 using boost::dynamic_pointer_cast;
42 using dcp::Data;
43
44 /** Construct a J2KImageProxy from a JPEG2000 file */
45 J2KImageProxy::J2KImageProxy (boost::filesystem::path path, dcp::Size size)
46         : _data (path)
47         , _size (size)
48 {
49
50 }
51
52 J2KImageProxy::J2KImageProxy (shared_ptr<const dcp::MonoPictureFrame> frame, dcp::Size size)
53         : _data (frame->j2k_size ())
54         , _size (size)
55 {
56         memcpy (_data.data().get(), frame->j2k_data(), _data.size ());
57 }
58
59 J2KImageProxy::J2KImageProxy (shared_ptr<const dcp::StereoPictureFrame> frame, dcp::Size size, dcp::Eye eye)
60         : _size (size)
61         , _eye (eye)
62 {
63         switch (eye) {
64         case dcp::EYE_LEFT:
65                 _data = Data (frame->left_j2k_size ());
66                 memcpy (_data.data().get(), frame->left_j2k_data(), _data.size ());
67                 break;
68         case dcp::EYE_RIGHT:
69                 _data = Data (frame->right_j2k_size ());
70                 memcpy (_data.data().get(), frame->right_j2k_data(), _data.size ());
71                 break;
72         }
73 }
74
75 J2KImageProxy::J2KImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket)
76 {
77         _size = dcp::Size (xml->number_child<int> ("Width"), xml->number_child<int> ("Height"));
78         if (xml->optional_number_child<int> ("Eye")) {
79                 _eye = static_cast<dcp::Eye> (xml->number_child<int> ("Eye"));
80         }
81         _data = Data (xml->number_child<int> ("Size"));
82         socket->read (_data.data().get (), _data.size ());
83 }
84
85 void
86 J2KImageProxy::ensure_j2k () const
87 {
88         if (!_j2k) {
89                 _j2k = dcp::decompress_j2k (const_cast<uint8_t*> (_data.data().get()), _data.size (), 0);
90         }
91 }
92
93 shared_ptr<Image>
94 J2KImageProxy::image (optional<dcp::NoteHandler>) const
95 {
96         ensure_j2k ();
97
98         if (_j2k->precision(0) < 12) {
99                 int const shift = 12 - _j2k->precision (0);
100                 for (int c = 0; c < 3; ++c) {
101                         int* p = _j2k->data (c);
102                         for (int y = 0; y < _j2k->size().height; ++y) {
103                                 for (int x = 0; x < _j2k->size().width; ++x) {
104                                         *p++ <<= shift;
105                                 }
106                         }
107                 }
108         }
109
110         shared_ptr<Image> image (new Image (pixel_format(), _size, true));
111
112         /* Copy data in whatever format (sRGB or XYZ) into our Image; I'm assuming
113            the data is 12-bit either way.
114         */
115
116         int p = 0;
117         for (int y = 0; y < _j2k->size().height; ++y) {
118                 uint16_t* q = (uint16_t *) (image->data()[0] + y * image->stride()[0]);
119                 for (int x = 0; x < _j2k->size().width; ++x) {
120                         for (int c = 0; c < 3; ++c) {
121                                 *q++ = _j2k->data(c)[p] << 4;
122                         }
123                         ++p;
124                 }
125         }
126
127         return image;
128 }
129
130 void
131 J2KImageProxy::add_metadata (xmlpp::Node* node) const
132 {
133         node->add_child("Type")->add_child_text (N_("J2K"));
134         node->add_child("Width")->add_child_text (raw_convert<string> (_size.width));
135         node->add_child("Height")->add_child_text (raw_convert<string> (_size.height));
136         if (_eye) {
137                 node->add_child("Eye")->add_child_text (raw_convert<string> (_eye.get ()));
138         }
139         node->add_child("Size")->add_child_text (raw_convert<string> (_data.size ()));
140 }
141
142 void
143 J2KImageProxy::send_binary (shared_ptr<Socket> socket) const
144 {
145         socket->write (_data.data().get(), _data.size());
146 }
147
148 bool
149 J2KImageProxy::same (shared_ptr<const ImageProxy> other) const
150 {
151         shared_ptr<const J2KImageProxy> jp = dynamic_pointer_cast<const J2KImageProxy> (other);
152         if (!jp) {
153                 return false;
154         }
155
156         if (_data.size() != jp->_data.size()) {
157                 return false;
158         }
159
160         return memcmp (_data.data().get(), jp->_data.data().get(), _data.size()) == 0;
161 }
162
163 AVPixelFormat
164 J2KImageProxy::pixel_format () const
165 {
166         ensure_j2k ();
167
168         if (_j2k->srgb ()) {
169                 return AV_PIX_FMT_RGB48LE;
170         }
171
172         return AV_PIX_FMT_XYZ12LE;
173 }
174
175 J2KImageProxy::J2KImageProxy (Data data, dcp::Size size)
176         : _data (data)
177         , _size (size)
178 {
179
180 }