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