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