Changes to libdcp API.
[dcpomatic.git] / src / lib / dcp_video.cc
1 /*
2     Copyright (C) 2012-2014 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 "scaler.h"
37 #include "image.h"
38 #include "log.h"
39 #include "cross.h"
40 #include "player_video.h"
41 #include "encoded_data.h"
42 #include <libcxml/cxml.h>
43 #include <dcp/xyz_image.h>
44 #include <dcp/rgb_xyz.h>
45 #include <dcp/colour_matrix.h>
46 #include <dcp/raw_convert.h>
47 #include <boost/array.hpp>
48 #include <boost/asio.hpp>
49 #include <boost/filesystem.hpp>
50 #include <boost/lexical_cast.hpp>
51 #include <stdint.h>
52 #include <cstring>
53 #include <cstdlib>
54 #include <stdexcept>
55 #include <cstdio>
56 #include <iomanip>
57 #include <iostream>
58 #include <fstream>
59 #include <unistd.h>
60 #include <errno.h>
61
62 #define LOG_GENERAL(...) _log->log (String::compose (__VA_ARGS__), Log::TYPE_GENERAL);
63
64 #include "i18n.h"
65
66 using std::string;
67 using std::cout;
68 using boost::shared_ptr;
69 using boost::lexical_cast;
70 using dcp::Size;
71 using dcp::raw_convert;
72
73 #define DCI_COEFFICENT (48.0 / 52.37)
74
75 /** Construct a DCP video frame.
76  *  @param frame Input frame.
77  *  @param index Index of the frame within the DCP.
78  *  @param bw J2K bandwidth to use (see Config::j2k_bandwidth ())
79  *  @param l Log to write to.
80  */
81 DCPVideo::DCPVideo (
82         shared_ptr<const PlayerVideo> frame, int index, int dcp_fps, int bw, Resolution r, bool b, shared_ptr<Log> l
83         )
84         : _frame (frame)
85         , _index (index)
86         , _frames_per_second (dcp_fps)
87         , _j2k_bandwidth (bw)
88         , _resolution (r)
89         , _burn_subtitles (b)
90         , _log (l)
91 {
92         
93 }
94
95 DCPVideo::DCPVideo (shared_ptr<const PlayerVideo> frame, shared_ptr<const cxml::Node> node, shared_ptr<Log> log)
96         : _frame (frame)
97         , _log (log)
98 {
99         _index = node->number_child<int> ("Index");
100         _frames_per_second = node->number_child<int> ("FramesPerSecond");
101         _j2k_bandwidth = node->number_child<int> ("J2KBandwidth");
102         _resolution = Resolution (node->optional_number_child<int>("Resolution").get_value_or (RESOLUTION_2K));
103         _burn_subtitles = node->bool_child ("BurnSubtitles");
104 }
105
106 /** J2K-encode this frame on the local host.
107  *  @return Encoded data.
108  */
109 shared_ptr<EncodedData>
110 DCPVideo::encode_locally (dcp::NoteHandler note)
111 {
112         shared_ptr<dcp::XYZImage> xyz;
113
114         shared_ptr<Image> image = _frame->image (AV_PIX_FMT_RGB48LE, _burn_subtitles, note);
115         if (_frame->colour_conversion()) {
116                 xyz = dcp::rgb_to_xyz (
117                         image->data()[0],
118                         image->size(),
119                         image->stride()[0],
120                         _frame->colour_conversion().get()
121                         );
122         } else {
123                 xyz = dcp::xyz_to_xyz (image->data()[0], image->size(), image->stride()[0]);
124         }
125
126         /* Set the max image and component sizes based on frame_rate */
127         int max_cs_len = ((float) _j2k_bandwidth) / 8 / _frames_per_second;
128         if (_frame->eyes() == EYES_LEFT || _frame->eyes() == EYES_RIGHT) {
129                 /* In 3D we have only half the normal bandwidth per eye */
130                 max_cs_len /= 2;
131         }
132         int const max_comp_size = max_cs_len / 1.25;
133
134         /* get a J2K compressor handle */
135         opj_cinfo_t* cinfo = opj_create_compress (CODEC_J2K);
136         if (cinfo == 0) {
137                 throw EncodeError (N_("could not create JPEG2000 encoder"));
138         }
139
140         /* Set encoding parameters to default values */
141         opj_cparameters_t parameters;
142         opj_set_default_encoder_parameters (&parameters);
143
144         /* Set default cinema parameters */
145         parameters.tile_size_on = false;
146         parameters.cp_tdx = 1;
147         parameters.cp_tdy = 1;
148         
149         /* Tile part */
150         parameters.tp_flag = 'C';
151         parameters.tp_on = 1;
152         
153         /* Tile and Image shall be at (0,0) */
154         parameters.cp_tx0 = 0;
155         parameters.cp_ty0 = 0;
156         parameters.image_offset_x0 = 0;
157         parameters.image_offset_y0 = 0;
158
159         /* Codeblock size = 32x32 */
160         parameters.cblockw_init = 32;
161         parameters.cblockh_init = 32;
162         parameters.csty |= 0x01;
163         
164         /* The progression order shall be CPRL */
165         parameters.prog_order = CPRL;
166         
167         /* No ROI */
168         parameters.roi_compno = -1;
169         
170         parameters.subsampling_dx = 1;
171         parameters.subsampling_dy = 1;
172         
173         /* 9-7 transform */
174         parameters.irreversible = 1;
175         
176         parameters.tcp_rates[0] = 0;
177         parameters.tcp_numlayers++;
178         parameters.cp_disto_alloc = 1;
179         parameters.cp_rsiz = _resolution == RESOLUTION_2K ? CINEMA2K : CINEMA4K;
180         if (_resolution == RESOLUTION_4K) {
181                 parameters.numpocs = 2;
182                 parameters.POC[0].tile = 1;
183                 parameters.POC[0].resno0 = 0; 
184                 parameters.POC[0].compno0 = 0;
185                 parameters.POC[0].layno1 = 1;
186                 parameters.POC[0].resno1 = parameters.numresolution - 1;
187                 parameters.POC[0].compno1 = 3;
188                 parameters.POC[0].prg1 = CPRL;
189                 parameters.POC[1].tile = 1;
190                 parameters.POC[1].resno0 = parameters.numresolution - 1; 
191                 parameters.POC[1].compno0 = 0;
192                 parameters.POC[1].layno1 = 1;
193                 parameters.POC[1].resno1 = parameters.numresolution;
194                 parameters.POC[1].compno1 = 3;
195                 parameters.POC[1].prg1 = CPRL;
196         }
197         
198         parameters.cp_comment = strdup (N_("DCP-o-matic"));
199         parameters.cp_cinema = _resolution == RESOLUTION_2K ? CINEMA2K_24 : CINEMA4K_24;
200
201         /* 3 components, so use MCT */
202         parameters.tcp_mct = 1;
203         
204         /* set max image */
205         parameters.max_comp_size = max_comp_size;
206         parameters.tcp_rates[0] = ((float) (3 * xyz->size().width * xyz->size().height * 12)) / (max_cs_len * 8);
207
208         /* Set event manager to null (openjpeg 1.3 bug) */
209         cinfo->event_mgr = 0;
210
211         /* Setup the encoder parameters using the current image and user parameters */
212         opj_setup_encoder (cinfo, &parameters, xyz->opj_image ());
213
214         opj_cio_t* cio = opj_cio_open ((opj_common_ptr) cinfo, 0, 0);
215         if (cio == 0) {
216                 opj_destroy_compress (cinfo);
217                 throw EncodeError (N_("could not open JPEG2000 stream"));
218         }
219
220         int const r = opj_encode (cinfo, cio, xyz->opj_image(), 0);
221         if (r == 0) {
222                 opj_cio_close (cio);
223                 opj_destroy_compress (cinfo);
224                 throw EncodeError (N_("JPEG2000 encoding failed"));
225         }
226
227         switch (_frame->eyes()) {
228         case EYES_BOTH:
229                 LOG_GENERAL (N_("Finished locally-encoded frame %1 for mono"), _index);
230                 break;
231         case EYES_LEFT:
232                 LOG_GENERAL (N_("Finished locally-encoded frame %1 for L"), _index);
233                 break;
234         case EYES_RIGHT:
235                 LOG_GENERAL (N_("Finished locally-encoded frame %1 for R"), _index);
236                 break;
237         default:
238                 break;
239         }
240
241         shared_ptr<EncodedData> enc (new LocallyEncodedData (cio->buffer, cio_tell (cio)));
242
243         opj_cio_close (cio);
244         free (parameters.cp_comment);
245         opj_destroy_compress (cinfo);
246
247         return enc;
248 }
249
250 /** Send this frame to a remote server for J2K encoding, then read the result.
251  *  @param serv Server to send to.
252  *  @return Encoded data.
253  */
254 shared_ptr<EncodedData>
255 DCPVideo::encode_remotely (ServerDescription serv)
256 {
257         boost::asio::io_service io_service;
258         boost::asio::ip::tcp::resolver resolver (io_service);
259         boost::asio::ip::tcp::resolver::query query (serv.host_name(), raw_convert<string> (Config::instance()->server_port_base ()));
260         boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
261
262         shared_ptr<Socket> socket (new Socket);
263
264         socket->connect (*endpoint_iterator);
265
266         /* Collect all XML metadata */
267         xmlpp::Document doc;
268         xmlpp::Element* root = doc.create_root_node ("EncodingRequest");
269         root->add_child("Version")->add_child_text (raw_convert<string> (SERVER_LINK_VERSION));
270         add_metadata (root);
271
272         LOG_GENERAL (N_("Sending frame %1 to remote"), _index);
273         
274         /* Send XML metadata */
275         string xml = doc.write_to_string ("UTF-8");
276         socket->write (xml.length() + 1);
277         socket->write ((uint8_t *) xml.c_str(), xml.length() + 1);
278
279         /* Send binary data */
280         _frame->send_binary (socket, _burn_subtitles);
281
282         /* Read the response (JPEG2000-encoded data); this blocks until the data
283            is ready and sent back.
284         */
285         shared_ptr<EncodedData> e (new RemotelyEncodedData (socket->read_uint32 ()));
286         socket->read (e->data(), e->size());
287
288         LOG_GENERAL (N_("Finished remotely-encoded frame %1"), _index);
289         
290         return e;
291 }
292
293 void
294 DCPVideo::add_metadata (xmlpp::Element* el) const
295 {
296         el->add_child("Index")->add_child_text (raw_convert<string> (_index));
297         el->add_child("FramesPerSecond")->add_child_text (raw_convert<string> (_frames_per_second));
298         el->add_child("J2KBandwidth")->add_child_text (raw_convert<string> (_j2k_bandwidth));
299         el->add_child("Resolution")->add_child_text (raw_convert<string> (int (_resolution)));
300         el->add_child("BurnSubtitles")->add_child_text (_burn_subtitles ? "1" : "0");
301         _frame->add_metadata (el, _burn_subtitles);
302 }
303
304 Eyes
305 DCPVideo::eyes () const
306 {
307         return _frame->eyes ();
308 }
309
310 /** @return true if this DCPVideo is definitely the same as another;
311  *  (apart from the frame index), false if it is probably not.
312  */
313 bool
314 DCPVideo::same (shared_ptr<const DCPVideo> other) const
315 {
316         if (_frames_per_second != other->_frames_per_second ||
317             _j2k_bandwidth != other->_j2k_bandwidth ||
318             _resolution != other->_resolution ||
319             _burn_subtitles != other->_burn_subtitles) {
320                 return false;
321         }
322
323         return _frame->same (other->_frame);
324 }