Merge master.
[dcpomatic.git] / src / lib / dcp_video.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 "dcp_video.h"
21 #include "image.h"
22
23 using boost::shared_ptr;
24
25 /** From ContentVideo:
26  *  @param in Image.
27  *  @param eyes Eye(s) that the Image is for.
28  *
29  *  From Content:
30  *  @param crop Crop to apply.
31  *  @param inter_size
32  *  @param out_size
33  *  @param scaler Scaler to use.
34  *  @param conversion Colour conversion to use.
35  *
36  *  @param time DCP time.
37  */
38 DCPVideo::DCPVideo (
39         shared_ptr<const Image> in,
40         Eyes eyes,
41         Crop crop,
42         dcp::Size inter_size,
43         dcp::Size out_size,
44         Scaler const * scaler,
45         ColourConversion conversion,
46         DCPTime time
47         )
48         : _in (in)
49         , _eyes (eyes)
50         , _crop (crop)
51         , _inter_size (inter_size)
52         , _out_size (out_size)
53         , _scaler (scaler)
54         , _conversion (conversion)
55         , _time (time)
56 {
57
58 }
59
60 void
61 DCPVideo::set_subtitle (PositionImage s)
62 {
63         _subtitle = s;
64 }
65
66 shared_ptr<Image>
67 DCPVideo::image (AVPixelFormat format, bool aligned) const
68 {
69         shared_ptr<Image> out = _in->crop_scale_window (_crop, _inter_size, _out_size, _scaler, format, aligned);
70         
71         Position<int> const container_offset ((_out_size.width - _inter_size.width) / 2, (_out_size.height - _inter_size.width) / 2);
72
73         if (_subtitle.image) {
74                 out->alpha_blend (_subtitle.image, _subtitle.position);
75         }
76
77         return out;
78 }
79