Unholy melange of stuff; setup a standard test config; send / receive subs to / from...
[dcpomatic.git] / src / lib / subtitle.cc
1 /*
2     Copyright (C) 2012 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 "subtitle.h"
21 #include "image.h"
22 #include "exceptions.h"
23 #include "film_state.h"
24
25 using namespace std;
26 using namespace boost;
27
28 Subtitle::Subtitle (AVSubtitle const & sub)
29 {
30         /* subtitle PTS in seconds */
31         float const packet_time = (sub.pts / AV_TIME_BASE) + float (sub.pts % AV_TIME_BASE) / 1e6;
32         
33         /* hence start time for this sub */
34         _from = packet_time + (double (sub.start_display_time) / 1e3);
35         _to = packet_time + (double (sub.end_display_time) / 1e3);
36
37         if (sub.num_rects > 1) {
38                 throw DecodeError ("multi-part subtitles not yet supported");
39         }
40
41         AVSubtitleRect const * rect = sub.rects[0];
42
43         if (rect->type != SUBTITLE_BITMAP) {
44                 throw DecodeError ("non-bitmap subtitles not yet supported");
45         }
46         
47         _position = Position (rect->x, rect->y);
48         _image.reset (new AlignedImage (PIX_FMT_RGBA, Size (rect->w, rect->h)));
49
50         /* Start of the first line in the subtitle */
51         uint8_t* sub_p = rect->pict.data[0];
52         /* sub_p looks up into a RGB palette which is here */
53         uint32_t const * palette = (uint32_t *) rect->pict.data[1];
54         /* Start of the output data */
55         uint32_t* out_p = (uint32_t *) _image->data()[0];
56         
57         for (int y = 0; y < rect->h; ++y) {
58                 uint8_t* sub_line_p = sub_p;
59                 uint32_t* out_line_p = out_p;
60                 for (int x = 0; x < rect->w; ++x) {
61                         *out_line_p++ = palette[*sub_line_p++];
62                 }
63                 sub_p += rect->pict.linesize[0];
64                 out_p += _image->stride()[0] / sizeof (uint32_t);
65         }
66 }
67
68 Subtitle::Subtitle (Position p, shared_ptr<Image> i)
69         : _from (0)
70         , _to (0)
71         , _position (p)
72         , _image (i)
73 {
74
75 }
76         
77 /** @param t Time in seconds from the start of the film */
78 bool
79 Subtitle::displayed_at (double t)
80 {
81         return t >= _from && t <= _to;
82 }
83
84 Rectangle
85 subtitle_transformed_area (
86         float target_x_scale, float target_y_scale,
87         Rectangle sub_area, int subtitle_offset, float subtitle_scale
88         )
89 {
90         Rectangle tx;
91
92         sub_area.y += subtitle_offset;
93
94         /* We will scale the subtitle by the same amount as the video frame, and also by the additional
95            subtitle_scale
96         */
97         tx.w = sub_area.w * target_x_scale * subtitle_scale;
98         tx.h = sub_area.h * target_y_scale * subtitle_scale;
99
100         /* Then we need a corrective translation, consisting of two parts:
101          *
102          * 1.  that which is the result of the scaling of the subtitle by target_x_scale and target_y_scale; this will be
103          *     sub_area.x * target_x_scale and sub_area.y * target_y_scale.
104          *
105          * 2.  that to shift the origin of the scale by subtitle_scale to the centre of the subtitle; this will be
106          *     (width_before_subtitle_scale * (1 - subtitle_scale) / 2) and
107          *     (height_before_subtitle_scale * (1 - subtitle_scale) / 2).
108          *
109          * Combining these two translations gives these expressions.
110          */
111         
112         tx.x = target_x_scale * (sub_area.x + (sub_area.w * (1 - subtitle_scale) / 2));
113         tx.y = target_y_scale * (sub_area.y + (sub_area.h * (1 - subtitle_scale) / 2));
114
115         return tx;
116 }
117
118 Rectangle
119 Subtitle::area () const
120 {
121         return Rectangle (_position.x, _position.y, _image->size().width, _image->size().height);
122 }