Split up image_proxy.{cc,h}
[dcpomatic.git] / src / lib / j2k_image_proxy.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <libcxml/cxml.h>
21 #include <dcp/raw_convert.h>
22 #include <dcp/mono_picture_frame.h>
23 #include <dcp/stereo_picture_frame.h>
24 #include "j2k_image_proxy.h"
25 #include "util.h"
26 #include "image.h"
27
28 #include "i18n.h"
29
30 using std::string;
31 using boost::shared_ptr;
32
33 J2KImageProxy::J2KImageProxy (shared_ptr<const dcp::MonoPictureFrame> frame, dcp::Size size, shared_ptr<Log> log)
34         : ImageProxy (log)
35         , _mono (frame)
36         , _size (size)
37 {
38         
39 }
40
41 J2KImageProxy::J2KImageProxy (shared_ptr<const dcp::StereoPictureFrame> frame, dcp::Size size, dcp::Eye eye, shared_ptr<Log> log)
42         : ImageProxy (log)
43         , _stereo (frame)
44         , _size (size)
45         , _eye (eye)
46 {
47
48 }
49
50 J2KImageProxy::J2KImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket, shared_ptr<Log> log)
51         : ImageProxy (log)
52 {
53         _size = dcp::Size (xml->number_child<int> ("Width"), xml->number_child<int> ("Height"));
54         if (xml->optional_number_child<int> ("Eye")) {
55                 _eye = static_cast<dcp::Eye> (xml->number_child<int> ("Eye"));
56                 int const left_size = xml->number_child<int> ("LeftSize");
57                 int const right_size = xml->number_child<int> ("RightSize");
58                 shared_ptr<dcp::StereoPictureFrame> f (new dcp::StereoPictureFrame ());
59                 socket->read (f->left_j2k_data(), left_size);
60                 socket->read (f->right_j2k_data(), right_size);
61                 _stereo = f;
62         } else {
63                 int const size = xml->number_child<int> ("Size");
64                 shared_ptr<dcp::MonoPictureFrame> f (new dcp::MonoPictureFrame ());
65                 socket->read (f->j2k_data (), size);
66                 _mono = f;
67         }
68 }
69
70 shared_ptr<Image>
71 J2KImageProxy::image () const
72 {
73         shared_ptr<Image> image (new Image (PIX_FMT_RGB24, _size, false));
74
75         if (_mono) {
76                 _mono->rgb_frame (image->data()[0]);
77         } else {
78                 _stereo->rgb_frame (_eye, image->data()[0]);
79         }
80
81         return shared_ptr<Image> (new Image (image, true));
82 }
83
84 void
85 J2KImageProxy::add_metadata (xmlpp::Node* node) const
86 {
87         node->add_child("Type")->add_child_text (N_("J2K"));
88         node->add_child("Width")->add_child_text (dcp::raw_convert<string> (_size.width));
89         node->add_child("Height")->add_child_text (dcp::raw_convert<string> (_size.height));
90         if (_stereo) {
91                 node->add_child("Eye")->add_child_text (dcp::raw_convert<string> (_eye));
92                 node->add_child("LeftSize")->add_child_text (dcp::raw_convert<string> (_stereo->left_j2k_size ()));
93                 node->add_child("RightSize")->add_child_text (dcp::raw_convert<string> (_stereo->right_j2k_size ()));
94         } else {
95                 node->add_child("Size")->add_child_text (dcp::raw_convert<string> (_mono->j2k_size ()));
96         }
97 }
98
99 void
100 J2KImageProxy::send_binary (shared_ptr<Socket> socket) const
101 {
102         if (_mono) {
103                 socket->write (_mono->j2k_data(), _mono->j2k_size ());
104         } else {
105                 socket->write (_stereo->left_j2k_data(), _stereo->left_j2k_size ());
106                 socket->write (_stereo->right_j2k_data(), _stereo->right_j2k_size ());
107         }
108 }