Clean up subtitle classes a bit.
[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 TimedSubtitle::TimedSubtitle (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         shared_ptr<Image> image (new AlignedImage (PIX_FMT_RGBA, Size (rect->w, rect->h)));
48
49         /* Start of the first line in the subtitle */
50         uint8_t* sub_p = rect->pict.data[0];
51         /* sub_p looks up into a RGB palette which is here */
52         uint32_t const * palette = (uint32_t *) rect->pict.data[1];
53         /* Start of the output data */
54         uint32_t* out_p = (uint32_t *) image->data()[0];
55         
56         for (int y = 0; y < rect->h; ++y) {
57                 uint8_t* sub_line_p = sub_p;
58                 uint32_t* out_line_p = out_p;
59                 for (int x = 0; x < rect->w; ++x) {
60                         *out_line_p++ = palette[*sub_line_p++];
61                 }
62                 sub_p += rect->pict.linesize[0];
63                 out_p += image->stride()[0] / sizeof (uint32_t);
64         }
65
66         _subtitle.reset (new Subtitle (Position (rect->x, rect->y), image));
67 }       
68
69 /** @param t Time in seconds from the start of the film */
70 bool
71 TimedSubtitle::displayed_at (double t) const
72 {
73         return t >= _from && t <= _to;
74 }
75
76 Subtitle::Subtitle (Position p, shared_ptr<Image> i)
77         : _position (p)
78         , _image (i)
79 {
80
81 }
82         
83 Rectangle
84 subtitle_transformed_area (
85         float target_x_scale, float target_y_scale,
86         Rectangle sub_area, int subtitle_offset, float subtitle_scale
87         )
88 {
89         Rectangle tx;
90
91         sub_area.y += subtitle_offset;
92
93         /* We will scale the subtitle by the same amount as the video frame, and also by the additional
94            subtitle_scale
95         */
96         tx.w = sub_area.w * target_x_scale * subtitle_scale;
97         tx.h = sub_area.h * target_y_scale * subtitle_scale;
98
99         /* Then we need a corrective translation, consisting of two parts:
100          *
101          * 1.  that which is the result of the scaling of the subtitle by target_x_scale and target_y_scale; this will be
102          *     sub_area.x * target_x_scale and sub_area.y * target_y_scale.
103          *
104          * 2.  that to shift the origin of the scale by subtitle_scale to the centre of the subtitle; this will be
105          *     (width_before_subtitle_scale * (1 - subtitle_scale) / 2) and
106          *     (height_before_subtitle_scale * (1 - subtitle_scale) / 2).
107          *
108          * Combining these two translations gives these expressions.
109          */
110         
111         tx.x = target_x_scale * (sub_area.x + (sub_area.w * (1 - subtitle_scale) / 2));
112         tx.y = target_y_scale * (sub_area.y + (sub_area.h * (1 - subtitle_scale) / 2));
113
114         return tx;
115 }
116
117 Rectangle
118 Subtitle::area () const
119 {
120         return Rectangle (_position.x, _position.y, _image->size().width, _image->size().height);
121 }