Include tidying.
[dcpomatic.git] / src / lib / dcp_video.cc
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3     Taken from code Copyright (C) 2010-2011 Terrence Meiczinger
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 /** @file  src/dcp_video_frame.cc
22  *  @brief A single frame of video destined for a DCP.
23  *
24  *  Given an Image and some settings, this class knows how to encode
25  *  the image to J2K either on the local host or on a remote server.
26  *
27  *  Objects of this class are used for the queue that we keep
28  *  of images that require encoding.
29  */
30
31 #include "dcp_video.h"
32 #include "config.h"
33 #include "exceptions.h"
34 #include "server.h"
35 #include "dcpomatic_socket.h"
36 #include "image.h"
37 #include "log.h"
38 #include "cross.h"
39 #include "player_video.h"
40 #include "raw_convert.h"
41 #include "data.h"
42 #include "compose.hpp"
43 #include <libcxml/cxml.h>
44 #include <dcp/openjpeg_image.h>
45 #include <dcp/rgb_xyz.h>
46 #include <dcp/colour_matrix.h>
47 #include <boost/asio.hpp>
48 #include <stdint.h>
49 #include <iomanip>
50 #include <iostream>
51
52 #define LOG_GENERAL(...) _log->log (String::compose (__VA_ARGS__), Log::TYPE_GENERAL);
53 #define LOG_DEBUG_ENCODE(...) _log->log (String::compose (__VA_ARGS__), Log::TYPE_DEBUG_ENCODE);
54
55 #include "i18n.h"
56
57 using std::string;
58 using std::cout;
59 using boost::shared_ptr;
60 using dcp::Size;
61
62 #define DCI_COEFFICENT (48.0 / 52.37)
63
64 /** Construct a DCP video frame.
65  *  @param frame Input frame.
66  *  @param index Index of the frame within the DCP.
67  *  @param bw J2K bandwidth to use (see Config::j2k_bandwidth ())
68  *  @param l Log to write to.
69  */
70 DCPVideo::DCPVideo (
71         shared_ptr<const PlayerVideo> frame, int index, int dcp_fps, int bw, Resolution r, shared_ptr<Log> l
72         )
73         : _frame (frame)
74         , _index (index)
75         , _frames_per_second (dcp_fps)
76         , _j2k_bandwidth (bw)
77         , _resolution (r)
78         , _log (l)
79 {
80
81 }
82
83 DCPVideo::DCPVideo (shared_ptr<const PlayerVideo> frame, shared_ptr<const cxml::Node> node, shared_ptr<Log> log)
84         : _frame (frame)
85         , _log (log)
86 {
87         _index = node->number_child<int> ("Index");
88         _frames_per_second = node->number_child<int> ("FramesPerSecond");
89         _j2k_bandwidth = node->number_child<int> ("J2KBandwidth");
90         _resolution = Resolution (node->optional_number_child<int>("Resolution").get_value_or (RESOLUTION_2K));
91 }
92
93 /** J2K-encode this frame on the local host.
94  *  @return Encoded data.
95  */
96 Data
97 DCPVideo::encode_locally (dcp::NoteHandler note)
98 {
99         shared_ptr<dcp::OpenJPEGImage> xyz;
100
101         shared_ptr<Image> image = _frame->image (AV_PIX_FMT_RGB48LE, note);
102         if (_frame->colour_conversion()) {
103                 xyz = dcp::rgb_to_xyz (
104                         image->data()[0],
105                         image->size(),
106                         image->stride()[0],
107                         _frame->colour_conversion().get(),
108                         note
109                         );
110         } else {
111                 xyz = dcp::xyz_to_xyz (image->data()[0], image->size(), image->stride()[0]);
112         }
113
114         /* Set the max image and component sizes based on frame_rate */
115         int max_cs_len = ((float) _j2k_bandwidth) / 8 / _frames_per_second;
116         if (_frame->eyes() == EYES_LEFT || _frame->eyes() == EYES_RIGHT) {
117                 /* In 3D we have only half the normal bandwidth per eye */
118                 max_cs_len /= 2;
119         }
120         int const max_comp_size = max_cs_len / 1.25;
121
122         /* get a J2K compressor handle */
123         opj_cinfo_t* cinfo = opj_create_compress (CODEC_J2K);
124         if (cinfo == 0) {
125                 throw EncodeError (N_("could not create JPEG2000 encoder"));
126         }
127
128         /* Set encoding parameters to default values */
129         opj_cparameters_t parameters;
130         opj_set_default_encoder_parameters (&parameters);
131
132         /* Set default cinema parameters */
133         parameters.tile_size_on = false;
134         parameters.cp_tdx = 1;
135         parameters.cp_tdy = 1;
136
137         /* Tile part */
138         parameters.tp_flag = 'C';
139         parameters.tp_on = 1;
140
141         /* Tile and Image shall be at (0,0) */
142         parameters.cp_tx0 = 0;
143         parameters.cp_ty0 = 0;
144         parameters.image_offset_x0 = 0;
145         parameters.image_offset_y0 = 0;
146
147         /* Codeblock size = 32x32 */
148         parameters.cblockw_init = 32;
149         parameters.cblockh_init = 32;
150         parameters.csty |= 0x01;
151
152         /* The progression order shall be CPRL */
153         parameters.prog_order = CPRL;
154
155         /* No ROI */
156         parameters.roi_compno = -1;
157
158         parameters.subsampling_dx = 1;
159         parameters.subsampling_dy = 1;
160
161         /* 9-7 transform */
162         parameters.irreversible = 1;
163
164         parameters.tcp_rates[0] = 0;
165         parameters.tcp_numlayers++;
166         parameters.cp_disto_alloc = 1;
167         parameters.cp_rsiz = _resolution == RESOLUTION_2K ? CINEMA2K : CINEMA4K;
168         if (_resolution == RESOLUTION_4K) {
169                 parameters.numpocs = 2;
170                 parameters.POC[0].tile = 1;
171                 parameters.POC[0].resno0 = 0;
172                 parameters.POC[0].compno0 = 0;
173                 parameters.POC[0].layno1 = 1;
174                 parameters.POC[0].resno1 = parameters.numresolution - 1;
175                 parameters.POC[0].compno1 = 3;
176                 parameters.POC[0].prg1 = CPRL;
177                 parameters.POC[1].tile = 1;
178                 parameters.POC[1].resno0 = parameters.numresolution - 1;
179                 parameters.POC[1].compno0 = 0;
180                 parameters.POC[1].layno1 = 1;
181                 parameters.POC[1].resno1 = parameters.numresolution;
182                 parameters.POC[1].compno1 = 3;
183                 parameters.POC[1].prg1 = CPRL;
184         }
185
186         parameters.cp_comment = strdup (N_("DCP-o-matic"));
187         parameters.cp_cinema = _resolution == RESOLUTION_2K ? CINEMA2K_24 : CINEMA4K_24;
188
189         /* 3 components, so use MCT */
190         parameters.tcp_mct = 1;
191
192         /* set max image */
193         parameters.max_comp_size = max_comp_size;
194         parameters.tcp_rates[0] = ((float) (3 * xyz->size().width * xyz->size().height * 12)) / (max_cs_len * 8);
195
196         /* Set event manager to null (openjpeg 1.3 bug) */
197         cinfo->event_mgr = 0;
198
199         /* Setup the encoder parameters using the current image and user parameters */
200         opj_setup_encoder (cinfo, &parameters, xyz->opj_image ());
201
202         opj_cio_t* cio = opj_cio_open ((opj_common_ptr) cinfo, 0, 0);
203         if (cio == 0) {
204                 opj_destroy_compress (cinfo);
205                 throw EncodeError (N_("could not open JPEG2000 stream"));
206         }
207
208         int const r = opj_encode (cinfo, cio, xyz->opj_image(), 0);
209         if (r == 0) {
210                 opj_cio_close (cio);
211                 opj_destroy_compress (cinfo);
212                 throw EncodeError (N_("JPEG2000 encoding failed"));
213         }
214
215         switch (_frame->eyes()) {
216         case EYES_BOTH:
217                 LOG_DEBUG_ENCODE (N_("Finished locally-encoded frame %1 for mono"), _index);
218                 break;
219         case EYES_LEFT:
220                 LOG_DEBUG_ENCODE (N_("Finished locally-encoded frame %1 for L"), _index);
221                 break;
222         case EYES_RIGHT:
223                 LOG_DEBUG_ENCODE (N_("Finished locally-encoded frame %1 for R"), _index);
224                 break;
225         default:
226                 break;
227         }
228
229         Data enc (cio->buffer, cio_tell (cio));
230
231         opj_cio_close (cio);
232         free (parameters.cp_comment);
233         opj_destroy_compress (cinfo);
234
235         return enc;
236 }
237
238 /** Send this frame to a remote server for J2K encoding, then read the result.
239  *  @param serv Server to send to.
240  *  @return Encoded data.
241  */
242 Data
243 DCPVideo::encode_remotely (ServerDescription serv)
244 {
245         boost::asio::io_service io_service;
246         boost::asio::ip::tcp::resolver resolver (io_service);
247         boost::asio::ip::tcp::resolver::query query (serv.host_name(), raw_convert<string> (Config::instance()->server_port_base ()));
248         boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
249
250         shared_ptr<Socket> socket (new Socket);
251
252         socket->connect (*endpoint_iterator);
253
254         /* Collect all XML metadata */
255         xmlpp::Document doc;
256         xmlpp::Element* root = doc.create_root_node ("EncodingRequest");
257         root->add_child("Version")->add_child_text (raw_convert<string> (SERVER_LINK_VERSION));
258         add_metadata (root);
259
260         LOG_DEBUG_ENCODE (N_("Sending frame %1 to remote"), _index);
261
262         /* Send XML metadata */
263         string xml = doc.write_to_string ("UTF-8");
264         socket->write (xml.length() + 1);
265         socket->write ((uint8_t *) xml.c_str(), xml.length() + 1);
266
267         /* Send binary data */
268         _frame->send_binary (socket);
269
270         /* Read the response (JPEG2000-encoded data); this blocks until the data
271            is ready and sent back.
272         */
273         Data e (socket->read_uint32 ());
274         socket->read (e.data().get(), e.size());
275
276         LOG_DEBUG_ENCODE (N_("Finished remotely-encoded frame %1"), _index);
277
278         return e;
279 }
280
281 void
282 DCPVideo::add_metadata (xmlpp::Element* el) const
283 {
284         el->add_child("Index")->add_child_text (raw_convert<string> (_index));
285         el->add_child("FramesPerSecond")->add_child_text (raw_convert<string> (_frames_per_second));
286         el->add_child("J2KBandwidth")->add_child_text (raw_convert<string> (_j2k_bandwidth));
287         el->add_child("Resolution")->add_child_text (raw_convert<string> (int (_resolution)));
288         _frame->add_metadata (el);
289 }
290
291 Eyes
292 DCPVideo::eyes () const
293 {
294         return _frame->eyes ();
295 }
296
297 /** @return true if this DCPVideo is definitely the same as another;
298  *  (apart from the frame index), false if it is probably not.
299  */
300 bool
301 DCPVideo::same (shared_ptr<const DCPVideo> other) const
302 {
303         if (_frames_per_second != other->_frames_per_second ||
304             _j2k_bandwidth != other->_j2k_bandwidth ||
305             _resolution != other->_resolution) {
306                 return false;
307         }
308
309         return _frame->same (other->_frame);
310 }