Put Image in dcpomatic:: to avoid Fastvideo name clash.
[dcpomatic.git] / src / lib / dcp_video.cc
1 /*
2     Copyright (C) 2012-2016 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 /** @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 "encode_server_description.h"
35 #include "dcpomatic_socket.h"
36 #include "image.h"
37 #include "log.h"
38 #include "dcpomatic_log.h"
39 #include "cross.h"
40 #include "player_video.h"
41 #include "compose.hpp"
42 #include "warnings.h"
43 #include <libcxml/cxml.h>
44 #include <dcp/raw_convert.h>
45 #include <dcp/openjpeg_image.h>
46 #include <dcp/rgb_xyz.h>
47 #include <dcp/j2k.h>
48 DCPOMATIC_DISABLE_WARNINGS
49 #include <libxml++/libxml++.h>
50 DCPOMATIC_ENABLE_WARNINGS
51 #include <boost/asio.hpp>
52 #include <boost/thread.hpp>
53 #include <stdint.h>
54 #include <iomanip>
55 #include <iostream>
56
57 #include "i18n.h"
58
59 using std::string;
60 using std::cout;
61 using boost::shared_ptr;
62 using dcp::Size;
63 using dcp::Data;
64 using dcp::raw_convert;
65 #if BOOST_VERSION >= 106100
66 using namespace boost::placeholders;
67 #endif
68 using namespace dcpomatic;
69
70
71 #define DCI_COEFFICENT (48.0 / 52.37)
72
73 /** Construct a DCP video frame.
74  *  @param frame Input frame.
75  *  @param index Index of the frame within the DCP.
76  *  @param bw J2K bandwidth to use (see Config::j2k_bandwidth ())
77  */
78 DCPVideo::DCPVideo (
79         shared_ptr<const PlayerVideo> frame, int index, int dcp_fps, int bw, Resolution r
80         )
81         : _frame (frame)
82         , _index (index)
83         , _frames_per_second (dcp_fps)
84         , _j2k_bandwidth (bw)
85         , _resolution (r)
86 {
87
88 }
89
90 DCPVideo::DCPVideo (shared_ptr<const PlayerVideo> frame, shared_ptr<const cxml::Node> node)
91         : _frame (frame)
92 {
93         _index = node->number_child<int> ("Index");
94         _frames_per_second = node->number_child<int> ("FramesPerSecond");
95         _j2k_bandwidth = node->number_child<int> ("J2KBandwidth");
96         _resolution = Resolution (node->optional_number_child<int>("Resolution").get_value_or (RESOLUTION_2K));
97 }
98
99 shared_ptr<dcp::OpenJPEGImage>
100 DCPVideo::convert_to_xyz (shared_ptr<const PlayerVideo> frame, dcp::NoteHandler note)
101 {
102         shared_ptr<dcp::OpenJPEGImage> xyz;
103
104         shared_ptr<Image> image = frame->image (bind (&PlayerVideo::keep_xyz_or_rgb, _1), true, false);
105         if (frame->colour_conversion()) {
106                 xyz = dcp::rgb_to_xyz (
107                         image->data()[0],
108                         image->size(),
109                         image->stride()[0],
110                         frame->colour_conversion().get(),
111                         note
112                         );
113         } else {
114                 xyz.reset (new dcp::OpenJPEGImage (image->data()[0], image->size(), image->stride()[0]));
115         }
116
117         return xyz;
118 }
119
120 /** J2K-encode this frame on the local host.
121  *  @return Encoded data.
122  */
123 Data
124 DCPVideo::encode_locally ()
125 {
126         string const comment = Config::instance()->dcp_j2k_comment();
127
128         Data enc = dcp::compress_j2k (
129                 convert_to_xyz (_frame, boost::bind(&Log::dcp_log, dcpomatic_log.get(), _1, _2)),
130                 _j2k_bandwidth,
131                 _frames_per_second,
132                 _frame->eyes() == EYES_LEFT || _frame->eyes() == EYES_RIGHT,
133                 _resolution == RESOLUTION_4K,
134                 comment.empty() ? "libdcp" : comment
135                 );
136
137         switch (_frame->eyes()) {
138         case EYES_BOTH:
139                 LOG_DEBUG_ENCODE (N_("Finished locally-encoded frame %1 for mono"), _index);
140                 break;
141         case EYES_LEFT:
142                 LOG_DEBUG_ENCODE (N_("Finished locally-encoded frame %1 for L"), _index);
143                 break;
144         case EYES_RIGHT:
145                 LOG_DEBUG_ENCODE (N_("Finished locally-encoded frame %1 for R"), _index);
146                 break;
147         default:
148                 break;
149         }
150
151         return enc;
152 }
153
154 /** Send this frame to a remote server for J2K encoding, then read the result.
155  *  @param serv Server to send to.
156  *  @param timeout timeout in seconds.
157  *  @return Encoded data.
158  */
159 Data
160 DCPVideo::encode_remotely (EncodeServerDescription serv, int timeout)
161 {
162         boost::asio::io_service io_service;
163         boost::asio::ip::tcp::resolver resolver (io_service);
164         boost::asio::ip::tcp::resolver::query query (serv.host_name(), raw_convert<string> (ENCODE_FRAME_PORT));
165         boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
166
167         shared_ptr<Socket> socket (new Socket (timeout));
168
169         socket->connect (*endpoint_iterator);
170
171         /* Collect all XML metadata */
172         xmlpp::Document doc;
173         xmlpp::Element* root = doc.create_root_node ("EncodingRequest");
174         root->add_child("Version")->add_child_text (raw_convert<string> (SERVER_LINK_VERSION));
175         add_metadata (root);
176
177         LOG_DEBUG_ENCODE (N_("Sending frame %1 to remote"), _index);
178
179         {
180                 Socket::WriteDigestScope ds (socket);
181
182                 /* Send XML metadata */
183                 string xml = doc.write_to_string ("UTF-8");
184                 socket->write (xml.length() + 1);
185                 socket->write ((uint8_t *) xml.c_str(), xml.length() + 1);
186
187                 /* Send binary data */
188                 LOG_TIMING("start-remote-send thread=%1", thread_id ());
189                 _frame->write_to_socket (socket);
190         }
191
192         /* Read the response (JPEG2000-encoded data); this blocks until the data
193            is ready and sent back.
194         */
195         Socket::ReadDigestScope ds (socket);
196         LOG_TIMING("start-remote-encode thread=%1", thread_id ());
197         Data e (socket->read_uint32 ());
198         LOG_TIMING("start-remote-receive thread=%1", thread_id ());
199         socket->read (e.data().get(), e.size());
200         LOG_TIMING("finish-remote-receive thread=%1", thread_id ());
201         if (!ds.check()) {
202                 throw NetworkError ("Checksums do not match");
203         }
204
205         LOG_DEBUG_ENCODE (N_("Finished remotely-encoded frame %1"), _index);
206
207         return e;
208 }
209
210 void
211 DCPVideo::add_metadata (xmlpp::Element* el) const
212 {
213         el->add_child("Index")->add_child_text (raw_convert<string> (_index));
214         el->add_child("FramesPerSecond")->add_child_text (raw_convert<string> (_frames_per_second));
215         el->add_child("J2KBandwidth")->add_child_text (raw_convert<string> (_j2k_bandwidth));
216         el->add_child("Resolution")->add_child_text (raw_convert<string> (int (_resolution)));
217         _frame->add_metadata (el);
218 }
219
220 Eyes
221 DCPVideo::eyes () const
222 {
223         return _frame->eyes ();
224 }
225
226 /** @return true if this DCPVideo is definitely the same as another;
227  *  (apart from the frame index), false if it is probably not.
228  */
229 bool
230 DCPVideo::same (shared_ptr<const DCPVideo> other) const
231 {
232         if (_frames_per_second != other->_frames_per_second ||
233             _j2k_bandwidth != other->_j2k_bandwidth ||
234             _resolution != other->_resolution) {
235                 return false;
236         }
237
238         return _frame->same (other->_frame);
239 }