Attempt to tidy up internal APIs slightly.
[dcpomatic.git] / src / lib / player_video.cc
1 /*
2     Copyright (C) 2013-2015 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 #include "player_video.h"
22 #include "image.h"
23 #include "image_proxy.h"
24 #include "j2k_image_proxy.h"
25 #include "film.h"
26 #include <dcp/raw_convert.h>
27 extern "C" {
28 #include <libavutil/pixfmt.h>
29 }
30 #include <libxml++/libxml++.h>
31 #include <iostream>
32
33 using std::string;
34 using std::cout;
35 using boost::shared_ptr;
36 using boost::dynamic_pointer_cast;
37 using boost::optional;
38 using boost::function;
39 using dcp::Data;
40 using dcp::raw_convert;
41
42 PlayerVideo::PlayerVideo (
43         shared_ptr<const ImageProxy> in,
44         Crop crop,
45         boost::optional<double> fade,
46         dcp::Size inter_size,
47         dcp::Size out_size,
48         Eyes eyes,
49         Part part,
50         optional<ColourConversion> colour_conversion
51         )
52         : _in (in)
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         _crop = Crop (node);
67         _fade = node->optional_number_child<double> ("Fade");
68
69         _inter_size = dcp::Size (node->number_child<int> ("InterWidth"), node->number_child<int> ("InterHeight"));
70         _out_size = dcp::Size (node->number_child<int> ("OutWidth"), node->number_child<int> ("OutHeight"));
71         _eyes = (Eyes) node->number_child<int> ("Eyes");
72         _part = (Part) node->number_child<int> ("Part");
73
74         /* Assume that the ColourConversion uses the current state version */
75         _colour_conversion = ColourConversion::from_xml (node, Film::current_state_version);
76
77         _in = image_proxy_factory (node->node_child ("In"), socket);
78
79         if (node->optional_number_child<int> ("SubtitleX")) {
80
81                 shared_ptr<Image> image (
82                         new Image (AV_PIX_FMT_RGBA, dcp::Size (node->number_child<int> ("SubtitleWidth"), node->number_child<int> ("SubtitleHeight")), true)
83                         );
84
85                 image->read_from_socket (socket);
86
87                 _subtitle = PositionImage (image, Position<int> (node->number_child<int> ("SubtitleX"), node->number_child<int> ("SubtitleY")));
88         }
89 }
90
91 void
92 PlayerVideo::set_subtitle (PositionImage image)
93 {
94         _subtitle = image;
95 }
96
97 /** Create an image for this frame.
98  *  @param note Handler for any notes that are made during the process.
99  *  @param pixel_format Function which is called to decide what pixel format the output image should be;
100  *  it is passed the pixel format of the input image from the ImageProxy, and should return the desired
101  *  output pixel format.  Two functions always_rgb and keep_xyz_or_rgb are provided for use here.
102  */
103 shared_ptr<Image>
104 PlayerVideo::image (dcp::NoteHandler note, function<AVPixelFormat (AVPixelFormat)> pixel_format, bool aligned, bool fast) const
105 {
106         shared_ptr<Image> im = _in->image (optional<dcp::NoteHandler> (note), _inter_size);
107
108         Crop total_crop = _crop;
109         switch (_part) {
110         case PART_LEFT_HALF:
111                 total_crop.right += im->size().width / 2;
112                 break;
113         case PART_RIGHT_HALF:
114                 total_crop.left += im->size().width / 2;
115                 break;
116         case PART_TOP_HALF:
117                 total_crop.bottom += im->size().height / 2;
118                 break;
119         case PART_BOTTOM_HALF:
120                 total_crop.top += im->size().height / 2;
121                 break;
122         default:
123                 break;
124         }
125
126         dcp::YUVToRGB yuv_to_rgb = dcp::YUV_TO_RGB_REC601;
127         if (_colour_conversion) {
128                 yuv_to_rgb = _colour_conversion.get().yuv_to_rgb();
129         }
130
131         shared_ptr<Image> out = im->crop_scale_window (
132                 total_crop, _inter_size, _out_size, yuv_to_rgb, pixel_format (_in->pixel_format()), aligned, fast
133                 );
134
135         if (_subtitle) {
136                 out->alpha_blend (_subtitle->image, _subtitle->position);
137         }
138
139         if (_fade) {
140                 out->fade (_fade.get ());
141         }
142
143         return out;
144 }
145
146 void
147 PlayerVideo::add_metadata (xmlpp::Node* node) const
148 {
149         _crop.as_xml (node);
150         if (_fade) {
151                 node->add_child("Fade")->add_child_text (raw_convert<string> (_fade.get ()));
152         }
153         _in->add_metadata (node->add_child ("In"));
154         node->add_child("InterWidth")->add_child_text (raw_convert<string> (_inter_size.width));
155         node->add_child("InterHeight")->add_child_text (raw_convert<string> (_inter_size.height));
156         node->add_child("OutWidth")->add_child_text (raw_convert<string> (_out_size.width));
157         node->add_child("OutHeight")->add_child_text (raw_convert<string> (_out_size.height));
158         node->add_child("Eyes")->add_child_text (raw_convert<string> (static_cast<int> (_eyes)));
159         node->add_child("Part")->add_child_text (raw_convert<string> (static_cast<int> (_part)));
160         if (_colour_conversion) {
161                 _colour_conversion.get().as_xml (node);
162         }
163         if (_subtitle) {
164                 node->add_child ("SubtitleWidth")->add_child_text (raw_convert<string> (_subtitle->image->size().width));
165                 node->add_child ("SubtitleHeight")->add_child_text (raw_convert<string> (_subtitle->image->size().height));
166                 node->add_child ("SubtitleX")->add_child_text (raw_convert<string> (_subtitle->position.x));
167                 node->add_child ("SubtitleY")->add_child_text (raw_convert<string> (_subtitle->position.y));
168         }
169 }
170
171 void
172 PlayerVideo::send_binary (shared_ptr<Socket> socket) const
173 {
174         _in->send_binary (socket);
175         if (_subtitle) {
176                 _subtitle->image->write_to_socket (socket);
177         }
178 }
179
180 bool
181 PlayerVideo::has_j2k () const
182 {
183         /* XXX: maybe other things */
184
185         shared_ptr<const J2KImageProxy> j2k = dynamic_pointer_cast<const J2KImageProxy> (_in);
186         if (!j2k) {
187                 return false;
188         }
189
190         return _crop == Crop () && _out_size == j2k->size() && !_subtitle && !_fade && !_colour_conversion;
191 }
192
193 Data
194 PlayerVideo::j2k () const
195 {
196         shared_ptr<const J2KImageProxy> j2k = dynamic_pointer_cast<const J2KImageProxy> (_in);
197         DCPOMATIC_ASSERT (j2k);
198         return j2k->j2k ();
199 }
200
201 Position<int>
202 PlayerVideo::inter_position () const
203 {
204         return Position<int> ((_out_size.width - _inter_size.width) / 2, (_out_size.height - _inter_size.height) / 2);
205 }
206
207 /** @return true if this PlayerVideo is definitely the same as another, false if it is probably not */
208 bool
209 PlayerVideo::same (shared_ptr<const PlayerVideo> other) const
210 {
211         if (_crop != other->_crop ||
212             _fade.get_value_or(0) != other->_fade.get_value_or(0) ||
213             _inter_size != other->_inter_size ||
214             _out_size != other->_out_size ||
215             _eyes != other->_eyes ||
216             _part != other->_part ||
217             _colour_conversion != other->_colour_conversion) {
218                 return false;
219         }
220
221         if ((!_subtitle && other->_subtitle) || (_subtitle && !other->_subtitle)) {
222                 /* One has a subtitle and the other doesn't */
223                 return false;
224         }
225
226         if (_subtitle && other->_subtitle && !_subtitle->same (other->_subtitle.get ())) {
227                 /* They both have subtitles but they are different */
228                 return false;
229         }
230
231         /* Now neither has subtitles */
232
233         return _in->same (other->_in);
234 }
235
236 AVPixelFormat
237 PlayerVideo::always_rgb (AVPixelFormat)
238 {
239         return AV_PIX_FMT_RGB24;
240 }
241
242 AVPixelFormat
243 PlayerVideo::keep_xyz_or_rgb (AVPixelFormat p)
244 {
245         return p == AV_PIX_FMT_XYZ12LE ? AV_PIX_FMT_XYZ12LE : AV_PIX_FMT_RGB48LE;
246 }