Optimise image scaling for the preview.
[dcpomatic.git] / src / lib / player_video.cc
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "player_video.h"
21 #include "image.h"
22 #include "image_proxy.h"
23 #include "j2k_image_proxy.h"
24 #include "film.h"
25 #include "raw_convert.h"
26 extern "C" {
27 #include <libavutil/pixfmt.h>
28 }
29 #include <libxml++/libxml++.h>
30 #include <iostream>
31
32 using std::string;
33 using std::cout;
34 using boost::shared_ptr;
35 using boost::dynamic_pointer_cast;
36 using boost::optional;
37 using boost::function;
38 using dcp::Data;
39
40 PlayerVideo::PlayerVideo (
41         shared_ptr<const ImageProxy> in,
42         DCPTime time,
43         Crop crop,
44         boost::optional<double> fade,
45         dcp::Size inter_size,
46         dcp::Size out_size,
47         Eyes eyes,
48         Part part,
49         optional<ColourConversion> colour_conversion
50         )
51         : _in (in)
52         , _time (time)
53         , _crop (crop)
54         , _fade (fade)
55         , _inter_size (inter_size)
56         , _out_size (out_size)
57         , _eyes (eyes)
58         , _part (part)
59         , _colour_conversion (colour_conversion)
60 {
61
62 }
63
64 PlayerVideo::PlayerVideo (shared_ptr<cxml::Node> node, shared_ptr<Socket> socket)
65 {
66         _time = DCPTime (node->number_child<DCPTime::Type> ("Time"));
67         _crop = Crop (node);
68         _fade = node->optional_number_child<double> ("Fade");
69
70         _inter_size = dcp::Size (node->number_child<int> ("InterWidth"), node->number_child<int> ("InterHeight"));
71         _out_size = dcp::Size (node->number_child<int> ("OutWidth"), node->number_child<int> ("OutHeight"));
72         _eyes = (Eyes) node->number_child<int> ("Eyes");
73         _part = (Part) node->number_child<int> ("Part");
74
75         /* Assume that the ColourConversion uses the current state version */
76         _colour_conversion = ColourConversion::from_xml (node, Film::current_state_version);
77
78         _in = image_proxy_factory (node->node_child ("In"), socket);
79
80         if (node->optional_number_child<int> ("SubtitleX")) {
81
82                 shared_ptr<Image> image (
83                         new Image (AV_PIX_FMT_RGBA, dcp::Size (node->number_child<int> ("SubtitleWidth"), node->number_child<int> ("SubtitleHeight")), true)
84                         );
85
86                 image->read_from_socket (socket);
87
88                 _subtitle = PositionImage (image, Position<int> (node->number_child<int> ("SubtitleX"), node->number_child<int> ("SubtitleY")));
89         }
90 }
91
92 void
93 PlayerVideo::set_subtitle (PositionImage image)
94 {
95         _subtitle = image;
96 }
97
98 /** Create an image for this frame.
99  *  @param note Handler for any notes that are made during the process.
100  *  @param pixel_format Function which is called to decide what pixel format the output image should be;
101  *  it is passed the pixel format of the input image from the ImageProxy, and should return the desired
102  *  output pixel format.  Two functions always_rgb and keep_xyz_or_rgb are provided for use here.
103  */
104 shared_ptr<Image>
105 PlayerVideo::image (dcp::NoteHandler note, function<AVPixelFormat (AVPixelFormat)> pixel_format, bool aligned, bool fast) const
106 {
107         shared_ptr<Image> im = _in->image (optional<dcp::NoteHandler> (note));
108
109         Crop total_crop = _crop;
110         switch (_part) {
111         case PART_LEFT_HALF:
112                 total_crop.right += im->size().width / 2;
113                 break;
114         case PART_RIGHT_HALF:
115                 total_crop.left += im->size().width / 2;
116                 break;
117         case PART_TOP_HALF:
118                 total_crop.bottom += im->size().height / 2;
119                 break;
120         case PART_BOTTOM_HALF:
121                 total_crop.top += im->size().height / 2;
122                 break;
123         default:
124                 break;
125         }
126
127         dcp::YUVToRGB yuv_to_rgb = dcp::YUV_TO_RGB_REC601;
128         if (_colour_conversion) {
129                 yuv_to_rgb = _colour_conversion.get().yuv_to_rgb();
130         }
131
132         shared_ptr<Image> out = im->crop_scale_window (
133                 total_crop, _inter_size, _out_size, yuv_to_rgb, pixel_format (_in->pixel_format()), aligned, fast
134                 );
135
136         if (_subtitle) {
137                 out->alpha_blend (_subtitle->image, _subtitle->position);
138         }
139
140         if (_fade) {
141                 out->fade (_fade.get ());
142         }
143
144         return out;
145 }
146
147 void
148 PlayerVideo::add_metadata (xmlpp::Node* node) const
149 {
150         node->add_child("Time")->add_child_text (raw_convert<string> (_time.get ()));
151         _crop.as_xml (node);
152         if (_fade) {
153                 node->add_child("Fade")->add_child_text (raw_convert<string> (_fade.get ()));
154         }
155         _in->add_metadata (node->add_child ("In"));
156         node->add_child("InterWidth")->add_child_text (raw_convert<string> (_inter_size.width));
157         node->add_child("InterHeight")->add_child_text (raw_convert<string> (_inter_size.height));
158         node->add_child("OutWidth")->add_child_text (raw_convert<string> (_out_size.width));
159         node->add_child("OutHeight")->add_child_text (raw_convert<string> (_out_size.height));
160         node->add_child("Eyes")->add_child_text (raw_convert<string> (_eyes));
161         node->add_child("Part")->add_child_text (raw_convert<string> (_part));
162         if (_colour_conversion) {
163                 _colour_conversion.get().as_xml (node);
164         }
165         if (_subtitle) {
166                 node->add_child ("SubtitleWidth")->add_child_text (raw_convert<string> (_subtitle->image->size().width));
167                 node->add_child ("SubtitleHeight")->add_child_text (raw_convert<string> (_subtitle->image->size().height));
168                 node->add_child ("SubtitleX")->add_child_text (raw_convert<string> (_subtitle->position.x));
169                 node->add_child ("SubtitleY")->add_child_text (raw_convert<string> (_subtitle->position.y));
170         }
171 }
172
173 void
174 PlayerVideo::send_binary (shared_ptr<Socket> socket) const
175 {
176         _in->send_binary (socket);
177         if (_subtitle) {
178                 _subtitle->image->write_to_socket (socket);
179         }
180 }
181
182 bool
183 PlayerVideo::has_j2k () const
184 {
185         /* XXX: maybe other things */
186
187         shared_ptr<const J2KImageProxy> j2k = dynamic_pointer_cast<const J2KImageProxy> (_in);
188         if (!j2k) {
189                 return false;
190         }
191
192         return _crop == Crop () && _inter_size == j2k->size() && !_subtitle && !_fade && !_colour_conversion;
193 }
194
195 Data
196 PlayerVideo::j2k () const
197 {
198         shared_ptr<const J2KImageProxy> j2k = dynamic_pointer_cast<const J2KImageProxy> (_in);
199         DCPOMATIC_ASSERT (j2k);
200         return j2k->j2k ();
201 }
202
203 Position<int>
204 PlayerVideo::inter_position () const
205 {
206         return Position<int> ((_out_size.width - _inter_size.width) / 2, (_out_size.height - _inter_size.height) / 2);
207 }
208
209 /** @return true if this PlayerVideo is definitely the same as another
210  * (apart from _time), false if it is probably not
211  */
212 bool
213 PlayerVideo::same (shared_ptr<const PlayerVideo> other) const
214 {
215         if (_crop != other->_crop ||
216             _fade.get_value_or(0) != other->_fade.get_value_or(0) ||
217             _inter_size != other->_inter_size ||
218             _out_size != other->_out_size ||
219             _eyes != other->_eyes ||
220             _part != other->_part ||
221             _colour_conversion != other->_colour_conversion) {
222                 return false;
223         }
224
225         if ((!_subtitle && other->_subtitle) || (_subtitle && !other->_subtitle)) {
226                 /* One has a subtitle and the other doesn't */
227                 return false;
228         }
229
230         if (_subtitle && other->_subtitle && !_subtitle->same (other->_subtitle.get ())) {
231                 /* They both have subtitles but they are different */
232                 return false;
233         }
234
235         /* Now neither has subtitles */
236
237         return _in->same (other->_in);
238 }
239
240 AVPixelFormat
241 PlayerVideo::always_rgb (AVPixelFormat)
242 {
243         return AV_PIX_FMT_RGB24;
244 }
245
246 AVPixelFormat
247 PlayerVideo::keep_xyz_or_rgb (AVPixelFormat p)
248 {
249         return p == AV_PIX_FMT_XYZ12LE ? AV_PIX_FMT_XYZ12LE : AV_PIX_FMT_RGB48LE;
250 }