Move Eyes and ColourConversion into PlayerVideoFrame.
[dcpomatic.git] / src / lib / player_video_frame.cc
1 /*
2     Copyright (C) 2013-2014 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_frame.h"
21 #include "image.h"
22
23 using boost::shared_ptr;
24
25 PlayerVideoFrame::PlayerVideoFrame (
26         shared_ptr<const Image> in,
27         Crop crop,
28         libdcp::Size inter_size,
29         libdcp::Size out_size,
30         Scaler const * scaler,
31         Eyes eyes,
32         ColourConversion colour_conversion
33         )
34         : _in (in)
35         , _crop (crop)
36         , _inter_size (inter_size)
37         , _out_size (out_size)
38         , _scaler (scaler)
39         , _eyes (eyes)
40         , _colour_conversion (colour_conversion)
41 {
42
43 }
44
45 void
46 PlayerVideoFrame::set_subtitle (shared_ptr<const Image> image, Position<int> pos)
47 {
48         _subtitle_image = image;
49         _subtitle_position = pos;
50 }
51
52 shared_ptr<Image>
53 PlayerVideoFrame::image ()
54 {
55         shared_ptr<Image> out = _in->crop_scale_window (_crop, _inter_size, _out_size, _scaler, PIX_FMT_RGB24, false);
56
57         Position<int> const container_offset ((_out_size.width - _inter_size.width) / 2, (_out_size.height - _inter_size.width) / 2);
58
59         if (_subtitle_image) {
60                 out->alpha_blend (_subtitle_image, _subtitle_position);
61         }
62
63         return out;
64 }