Add our own raw_convert that uses SafeStringStream.
[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
27 using std::string;
28 using std::cout;
29 using boost::shared_ptr;
30 using boost::dynamic_pointer_cast;
31 using boost::optional;
32
33 PlayerVideo::PlayerVideo (
34         shared_ptr<const ImageProxy> in,
35         DCPTime time,
36         Crop crop,
37         boost::optional<float> fade,
38         dcp::Size inter_size,
39         dcp::Size out_size,
40         Eyes eyes,
41         Part part,
42         optional<ColourConversion> colour_conversion
43         )
44         : _in (in)
45         , _time (time)
46         , _crop (crop)
47         , _fade (fade)
48         , _inter_size (inter_size)
49         , _out_size (out_size)
50         , _eyes (eyes)
51         , _part (part)
52         , _colour_conversion (colour_conversion)
53 {
54
55 }
56
57 PlayerVideo::PlayerVideo (shared_ptr<cxml::Node> node, shared_ptr<Socket> socket)
58 {
59         _time = DCPTime (node->number_child<DCPTime::Type> ("Time"));
60         _crop = Crop (node);
61         _fade = node->optional_number_child<float> ("Fade");
62
63         _inter_size = dcp::Size (node->number_child<int> ("InterWidth"), node->number_child<int> ("InterHeight"));
64         _out_size = dcp::Size (node->number_child<int> ("OutWidth"), node->number_child<int> ("OutHeight"));
65         _eyes = (Eyes) node->number_child<int> ("Eyes");
66         _part = (Part) node->number_child<int> ("Part");
67
68         /* Assume that the ColourConversion uses the current state version */
69         _colour_conversion = ColourConversion::from_xml (node, Film::current_state_version);
70
71         _in = image_proxy_factory (node->node_child ("In"), socket);
72
73         if (node->optional_number_child<int> ("SubtitleX")) {
74                 
75                 _subtitle.position = Position<int> (node->number_child<int> ("SubtitleX"), node->number_child<int> ("SubtitleY"));
76
77                 _subtitle.image.reset (
78                         new Image (PIX_FMT_RGBA, dcp::Size (node->number_child<int> ("SubtitleWidth"), node->number_child<int> ("SubtitleHeight")), true)
79                         );
80                 
81                 _subtitle.image->read_from_socket (socket);
82         }
83 }
84
85 void
86 PlayerVideo::set_subtitle (PositionImage image)
87 {
88         _subtitle = image;
89 }
90
91 shared_ptr<Image>
92 PlayerVideo::image (AVPixelFormat pixel_format, bool burn_subtitle, dcp::NoteHandler note) const
93 {
94         shared_ptr<Image> im = _in->image (optional<dcp::NoteHandler> (note));
95         
96         Crop total_crop = _crop;
97         switch (_part) {
98         case PART_LEFT_HALF:
99                 total_crop.right += im->size().width / 2;
100                 break;
101         case PART_RIGHT_HALF:
102                 total_crop.left += im->size().width / 2;
103                 break;
104         case PART_TOP_HALF:
105                 total_crop.bottom += im->size().height / 2;
106                 break;
107         case PART_BOTTOM_HALF:
108                 total_crop.top += im->size().height / 2;
109                 break;
110         default:
111                 break;
112         }
113                 
114         shared_ptr<Image> out = im->crop_scale_window (total_crop, _inter_size, _out_size, pixel_format, true);
115
116         if (burn_subtitle && _subtitle.image) {
117                 out->alpha_blend (_subtitle.image, _subtitle.position);
118         }
119
120         if (_fade) {
121                 out->fade (_fade.get ());
122         }
123
124         return out;
125 }
126
127 void
128 PlayerVideo::add_metadata (xmlpp::Node* node, bool send_subtitles) const
129 {
130         node->add_child("Time")->add_child_text (raw_convert<string> (_time.get ()));
131         _crop.as_xml (node);
132         if (_fade) {
133                 node->add_child("Fade")->add_child_text (raw_convert<string> (_fade.get ()));
134         }
135         _in->add_metadata (node->add_child ("In"));
136         node->add_child("InterWidth")->add_child_text (raw_convert<string> (_inter_size.width));
137         node->add_child("InterHeight")->add_child_text (raw_convert<string> (_inter_size.height));
138         node->add_child("OutWidth")->add_child_text (raw_convert<string> (_out_size.width));
139         node->add_child("OutHeight")->add_child_text (raw_convert<string> (_out_size.height));
140         node->add_child("Eyes")->add_child_text (raw_convert<string> (_eyes));
141         node->add_child("Part")->add_child_text (raw_convert<string> (_part));
142         if (_colour_conversion) {
143                 _colour_conversion.get().as_xml (node);
144         }
145         if (send_subtitles && _subtitle.image) {
146                 node->add_child ("SubtitleWidth")->add_child_text (raw_convert<string> (_subtitle.image->size().width));
147                 node->add_child ("SubtitleHeight")->add_child_text (raw_convert<string> (_subtitle.image->size().height));
148                 node->add_child ("SubtitleX")->add_child_text (raw_convert<string> (_subtitle.position.x));
149                 node->add_child ("SubtitleY")->add_child_text (raw_convert<string> (_subtitle.position.y));
150         }
151 }
152
153 void
154 PlayerVideo::send_binary (shared_ptr<Socket> socket, bool send_subtitles) const
155 {
156         _in->send_binary (socket);
157         if (send_subtitles && _subtitle.image) {
158                 _subtitle.image->write_to_socket (socket);
159         }
160 }
161
162 bool
163 PlayerVideo::has_j2k () const
164 {
165         /* XXX: burnt-in subtitle; maybe other things */
166         
167         shared_ptr<const J2KImageProxy> j2k = dynamic_pointer_cast<const J2KImageProxy> (_in);
168         if (!j2k) {
169                 return false;
170         }
171         
172         return _crop == Crop () && _inter_size == j2k->size();
173 }
174
175 shared_ptr<EncodedData>
176 PlayerVideo::j2k () const
177 {
178         shared_ptr<const J2KImageProxy> j2k = dynamic_pointer_cast<const J2KImageProxy> (_in);
179         DCPOMATIC_ASSERT (j2k);
180         return j2k->j2k ();
181 }
182
183 Position<int>
184 PlayerVideo::inter_position () const
185 {
186         return Position<int> ((_out_size.width - _inter_size.width) / 2, (_out_size.height - _inter_size.height) / 2);
187 }
188
189 /** @return true if this PlayerVideo is definitely the same as another
190  * (apart from _time), false if it is probably not
191  */
192 bool
193 PlayerVideo::same (shared_ptr<const PlayerVideo> other) const
194 {
195         if (_in != other->_in ||
196             _crop != other->_crop ||
197             _fade.get_value_or(0) != other->_fade.get_value_or(0) ||
198             _inter_size != other->_inter_size ||
199             _out_size != other->_out_size ||
200             _eyes != other->_eyes ||
201             _part != other->_part ||
202             _colour_conversion != other->_colour_conversion ||
203             !_subtitle.same (other->_subtitle)) {
204                 return false;
205         }
206
207         return _in->same (other->_in);
208 }