Mercurial > mplayer.hg
annotate libass/ass_render.c @ 20792:dcaf8b9f47e9
Fix crash when attempting to seek in a streamed unseekable stream, like
mms://a632.v3306a.c3306.e.vm.akamaistream.net/7/632/3306/v1/multith.download.akamai.com/3306/2005/COMEDIE/1144-0186-001.wmv
patch by alexandre % alex14fr A yahoo P fr %
author | gpoirier |
---|---|
date | Wed, 08 Nov 2006 23:54:21 +0000 |
parents | 1721569b4d7d |
children | ced1aa7b9e3d |
rev | line source |
---|---|
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*- |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
2 // vim:ts=8:sw=8:noet:ai: |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
3 /* |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
4 Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com> |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
5 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
6 This program is free software; you can redistribute it and/or modify |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
7 it under the terms of the GNU General Public License as published by |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
8 the Free Software Foundation; either version 2 of the License, or |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
9 (at your option) any later version. |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
10 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
11 This program is distributed in the hope that it will be useful, |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
14 GNU General Public License for more details. |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
15 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
16 You should have received a copy of the GNU General Public License |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
17 along with this program; if not, write to the Free Software |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
19 */ |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
20 |
18937 | 21 #include "config.h" |
22 | |
23 #include <assert.h> | |
24 #include <math.h> | |
19378 | 25 #include <inttypes.h> |
18937 | 26 #include <ft2build.h> |
27 #include FT_FREETYPE_H | |
28 #include FT_STROKER_H | |
29 #include FT_GLYPH_H | |
30 #include FT_SYNTHESIS_H | |
31 | |
32 #include "mp_msg.h" | |
33 | |
34 #include "ass.h" | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
35 #include "ass_bitmap.h" |
18937 | 36 #include "ass_cache.h" |
37 #include "ass_utils.h" | |
38 #include "ass_fontconfig.h" | |
20477 | 39 #include "ass_library.h" |
18937 | 40 |
20503 | 41 #include "libvo/sub.h" // for utf8_get_char |
20653
402484a85b9f
More precise bounding box calculation for karaoke effects.
eugeni
parents:
20629
diff
changeset
|
42 #include "libavutil/common.h" |
20503 | 43 |
18937 | 44 #define MAX_GLYPHS 1000 |
45 #define MAX_LINES 100 | |
46 | |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
47 static int last_render_id = 0; |
18937 | 48 |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
49 typedef struct ass_settings_s { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
50 int frame_width; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
51 int frame_height; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
52 double font_size_coeff; // font size multiplier |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
53 double line_spacing; // additional line spacing (in frame pixels) |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
54 int top_margin; // height of top margin. Everything except toptitles is shifted down by top_margin. |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
55 int bottom_margin; // height of bottom margin. (frame_height - top_margin - bottom_margin) is original video height. |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
56 int left_margin; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
57 int right_margin; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
58 int use_margins; // 0 - place all subtitles inside original frame |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
59 // 1 - use margins for placing toptitles and subtitles |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
60 double aspect; // frame aspect ratio, d_width / d_height. |
20477 | 61 |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
62 char* default_font; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
63 char* default_family; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
64 } ass_settings_t; |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
65 |
20477 | 66 struct ass_renderer_s { |
67 ass_library_t* library; | |
68 FT_Library ftlibrary; | |
18937 | 69 fc_instance_t* fontconfig_priv; |
70 ass_settings_t settings; | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
71 int render_id; |
19848 | 72 ass_synth_priv_t* synth_priv; |
18937 | 73 |
74 ass_image_t* images_root; // rendering result is stored here | |
75 }; | |
76 | |
77 int no_more_font_messages = 0; // don't print font warnings | |
78 | |
79 typedef enum {EF_NONE = 0, EF_KARAOKE, EF_KARAOKE_KF, EF_KARAOKE_KO} effect_t; | |
80 | |
81 // describes a glyph | |
82 // glyph_info_t and text_info_t are used for text centering and word-wrapping operations | |
83 typedef struct glyph_info_s { | |
84 unsigned symbol; | |
85 FT_Glyph glyph; | |
86 FT_Glyph outline_glyph; | |
19965 | 87 bitmap_t* bm; // glyph bitmap |
88 bitmap_t* bm_o; // outline bitmap | |
89 bitmap_t* bm_s; // shadow bitmap | |
18937 | 90 FT_BBox bbox; |
91 FT_Vector pos; | |
92 char linebreak; // the first (leading) glyph of some line ? | |
19691 | 93 uint32_t c[4]; // colors |
18937 | 94 FT_Vector advance; // 26.6 |
95 effect_t effect_type; | |
19716
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
96 int effect_timing; // time duration of current karaoke word |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
97 // after process_karaoke_effects: distance in pixels from the glyph origin. |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
98 // part of the glyph to the left of it is displayed in a different color. |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
99 int effect_skip_timing; // delay after the end of last karaoke word |
18937 | 100 int asc, desc; // font max ascender and descender |
101 // int height; | |
19848 | 102 int be; // blur edges |
19965 | 103 int shadow; |
20295 | 104 double frz; // z-axis rotation |
18937 | 105 |
106 glyph_hash_key_t hash_key; | |
107 } glyph_info_t; | |
108 | |
109 typedef struct line_info_s { | |
110 int asc, desc; | |
111 } line_info_t; | |
112 | |
113 typedef struct text_info_s { | |
114 glyph_info_t* glyphs; | |
115 int length; | |
116 line_info_t lines[MAX_LINES]; | |
117 int n_lines; | |
118 int height; | |
119 } text_info_t; | |
120 | |
121 | |
122 // Renderer state. | |
123 // Values like current font face, color, screen position, clipping and so on are stored here. | |
124 typedef struct render_context_s { | |
125 ass_event_t* event; | |
126 ass_style_t* style; | |
127 | |
128 FT_Face face; | |
129 char* font_path; | |
130 int font_size; | |
131 | |
132 FT_Stroker stroker; | |
133 int alignment; // alignment overrides go here; if zero, style value will be used | |
134 double rotation; | |
135 enum { EVENT_NORMAL, // "normal" top-, sub- or mid- title | |
19556 | 136 EVENT_POSITIONED, // happens after pos(,), margins are ignored |
137 EVENT_HSCROLL, // "Banner" transition effect, text_width is unlimited | |
138 EVENT_VSCROLL // "Scroll up", "Scroll down" transition effects | |
18937 | 139 } evt_type; |
140 int pos_x, pos_y; // position | |
141 int org_x, org_y; // origin | |
142 double scale_x, scale_y; | |
143 int hspacing; // distance between letters, in pixels | |
144 double border; // outline width | |
19691 | 145 uint32_t c[4]; // colors(Primary, Secondary, so on) in RGBA |
18937 | 146 int clip_x0, clip_y0, clip_x1, clip_y1; |
147 char detect_collisions; | |
19692
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
148 uint32_t fade; // alpha from \fad |
19848 | 149 char be; // blur edges |
19965 | 150 int shadow; |
18937 | 151 |
152 effect_t effect_type; | |
153 int effect_timing; | |
19716
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
154 int effect_skip_timing; |
18937 | 155 |
19556 | 156 enum { SCROLL_LR, // left-to-right |
157 SCROLL_RL, | |
158 SCROLL_TB, // top-to-bottom | |
159 SCROLL_BT | |
160 } scroll_direction; // for EVENT_HSCROLL, EVENT_VSCROLL | |
161 int scroll_shift; | |
162 | |
18937 | 163 // face properties |
164 char* family; | |
165 unsigned bold; | |
166 unsigned italic; | |
167 | |
168 } render_context_t; | |
169 | |
170 // frame-global data | |
171 typedef struct frame_context_s { | |
20477 | 172 ass_renderer_t* ass_priv; |
18937 | 173 int width, height; // screen dimensions |
174 int orig_height; // frame height ( = screen height - margins ) | |
19538 | 175 int orig_width; // frame width ( = screen width - margins ) |
18937 | 176 ass_track_t* track; |
177 long long time; // frame's timestamp, ms | |
19825
f351a3fc3e42
Make font outline width proportional to movie resolution.
eugeni
parents:
19716
diff
changeset
|
178 double font_scale; |
18937 | 179 double font_scale_x; // x scale applied to all glyphs to preserve text aspect ratio |
19917
6a31849e2b80
In r19831, font size multiplier was mistakenly applied to border width.
eugeni
parents:
19906
diff
changeset
|
180 double border_scale; |
18937 | 181 } frame_context_t; |
182 | |
20477 | 183 static ass_renderer_t* ass_renderer; |
18937 | 184 static ass_settings_t* global_settings; |
185 static text_info_t text_info; | |
186 static render_context_t render_context; | |
187 static frame_context_t frame_context; | |
188 | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
189 // a rendered event |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
190 typedef struct event_images_s { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
191 ass_image_t* imgs; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
192 int top, height; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
193 int detect_collisions; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
194 int shift_direction; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
195 ass_event_t* event; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
196 } event_images_t; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
197 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
198 struct render_priv_s { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
199 int top, height; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
200 int render_id; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
201 }; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
202 |
18937 | 203 static void ass_lazy_track_init(void) |
204 { | |
205 ass_track_t* track = frame_context.track; | |
206 if (track->PlayResX && track->PlayResY) | |
207 return; | |
208 if (!track->PlayResX && !track->PlayResY) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
209 mp_msg(MSGT_ASS, MSGL_WARN, "Neither PlayResX nor PlayResY defined. Assuming 384x288. \n"); |
18937 | 210 track->PlayResX = 384; |
211 track->PlayResY = 288; | |
212 } else { | |
19538 | 213 double orig_aspect = (global_settings->aspect * frame_context.height * frame_context.orig_width) / |
214 frame_context.orig_height / frame_context.width; | |
18937 | 215 if (!track->PlayResY) { |
216 track->PlayResY = track->PlayResX / orig_aspect + .5; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
217 mp_msg(MSGT_ASS, MSGL_WARN, "PlayResY undefined, setting %d \n", track->PlayResY); |
18937 | 218 } else if (!track->PlayResX) { |
219 track->PlayResX = track->PlayResY * orig_aspect + .5; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
220 mp_msg(MSGT_ASS, MSGL_WARN, "PlayResX undefined, setting %d \n", track->PlayResX); |
18937 | 221 } |
222 } | |
223 } | |
224 | |
20477 | 225 ass_renderer_t* ass_renderer_init(ass_library_t* library) |
18937 | 226 { |
227 int error; | |
228 FT_Library ft; | |
20477 | 229 ass_renderer_t* priv = 0; |
18937 | 230 |
20202
9b67ed06f721
Zerofill libass static variables during initialization.
eugeni
parents:
20201
diff
changeset
|
231 memset(&render_context, 0, sizeof(render_context)); |
9b67ed06f721
Zerofill libass static variables during initialization.
eugeni
parents:
20201
diff
changeset
|
232 memset(&frame_context, 0, sizeof(frame_context)); |
9b67ed06f721
Zerofill libass static variables during initialization.
eugeni
parents:
20201
diff
changeset
|
233 memset(&text_info, 0, sizeof(text_info)); |
9b67ed06f721
Zerofill libass static variables during initialization.
eugeni
parents:
20201
diff
changeset
|
234 |
18937 | 235 error = FT_Init_FreeType( &ft ); |
236 if ( error ) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
237 mp_msg(MSGT_ASS, MSGL_FATAL, "FT_Init_FreeType failed\n"); |
19517 | 238 goto ass_init_exit; |
18937 | 239 } |
240 | |
20477 | 241 priv = calloc(1, sizeof(ass_renderer_t)); |
18937 | 242 if (!priv) { |
243 FT_Done_FreeType(ft); | |
19517 | 244 goto ass_init_exit; |
18937 | 245 } |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
246 |
19848 | 247 priv->synth_priv = ass_synth_init(); |
248 | |
20477 | 249 priv->library = library; |
250 priv->ftlibrary = ft; | |
18937 | 251 // images_root and related stuff is zero-filled in calloc |
252 | |
253 ass_face_cache_init(); | |
254 ass_glyph_cache_init(); | |
255 | |
256 text_info.glyphs = calloc(MAX_GLYPHS, sizeof(glyph_info_t)); | |
257 | |
19517 | 258 ass_init_exit: |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
259 if (priv) mp_msg(MSGT_ASS, MSGL_INFO, "[ass] Init\n"); |
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
260 else mp_msg(MSGT_ASS, MSGL_ERR, "[ass] Init failed\n"); |
19517 | 261 |
18937 | 262 return priv; |
263 } | |
264 | |
20477 | 265 void ass_renderer_done(ass_renderer_t* priv) |
18937 | 266 { |
267 ass_face_cache_done(); | |
268 ass_glyph_cache_done(); | |
20201 | 269 if (render_context.stroker) { |
270 FT_Stroker_Done(render_context.stroker); | |
271 render_context.stroker = 0; | |
272 } | |
20477 | 273 if (priv && priv->ftlibrary) FT_Done_FreeType(priv->ftlibrary); |
18937 | 274 if (priv && priv->fontconfig_priv) fontconfig_done(priv->fontconfig_priv); |
19848 | 275 if (priv && priv->synth_priv) ass_synth_done(priv->synth_priv); |
18937 | 276 if (priv) free(priv); |
277 if (text_info.glyphs) free(text_info.glyphs); | |
278 } | |
279 | |
280 /** | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
281 * \brief Create a new ass_image_t |
18937 | 282 * Parameters are the same as ass_image_t fields. |
283 */ | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
284 static ass_image_t* my_draw_bitmap(unsigned char* bitmap, int bitmap_w, int bitmap_h, int stride, int dst_x, int dst_y, uint32_t color) |
18937 | 285 { |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
286 ass_image_t* img = calloc(1, sizeof(ass_image_t)); |
18937 | 287 |
288 img->w = bitmap_w; | |
289 img->h = bitmap_h; | |
290 img->stride = stride; | |
291 img->bitmap = bitmap; | |
292 img->color = color; | |
293 img->dst_x = dst_x; | |
294 img->dst_y = dst_y; | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
295 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
296 return img; |
18937 | 297 } |
298 | |
299 /** | |
300 * \brief convert bitmap glyph into ass_image_t struct(s) | |
301 * \param bit freetype bitmap glyph, FT_PIXEL_MODE_GRAY | |
302 * \param dst_x bitmap x coordinate in video frame | |
303 * \param dst_y bitmap y coordinate in video frame | |
304 * \param color first color, RGBA | |
305 * \param color2 second color, RGBA | |
306 * \param brk x coordinate relative to glyph origin, color is used to the left of brk, color2 - to the right | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
307 * \param tail pointer to the last image's next field, head of the generated list should be stored here |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
308 * \return pointer to the new list tail |
18937 | 309 * Performs clipping. Uses my_draw_bitmap for actual bitmap convertion. |
310 */ | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
311 static ass_image_t** render_glyph(bitmap_t* bm, int dst_x, int dst_y, uint32_t color, uint32_t color2, int brk, ass_image_t** tail) |
18937 | 312 { |
313 // brk is relative to dst_x | |
314 // color = color left of brk | |
315 // color2 = color right of brk | |
316 int b_x0, b_y0, b_x1, b_y1; // visible part of the bitmap | |
317 int clip_x0, clip_y0, clip_x1, clip_y1; | |
318 int tmp; | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
319 ass_image_t* img; |
18937 | 320 |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
321 dst_x += bm->left; |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
322 dst_y += bm->top; |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
323 brk -= bm->left; |
18937 | 324 |
325 // clipping | |
326 clip_x0 = render_context.clip_x0; | |
327 clip_y0 = render_context.clip_y0; | |
328 clip_x1 = render_context.clip_x1; | |
329 clip_y1 = render_context.clip_y1; | |
330 b_x0 = 0; | |
331 b_y0 = 0; | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
332 b_x1 = bm->w; |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
333 b_y1 = bm->h; |
18937 | 334 |
335 tmp = dst_x - clip_x0; | |
336 if (tmp < 0) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
337 mp_msg(MSGT_ASS, MSGL_DBG2, "clip left\n"); |
18937 | 338 b_x0 = - tmp; |
339 } | |
340 tmp = dst_y - clip_y0; | |
341 if (tmp < 0) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
342 mp_msg(MSGT_ASS, MSGL_DBG2, "clip top\n"); |
18937 | 343 b_y0 = - tmp; |
344 } | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
345 tmp = clip_x1 - dst_x - bm->w; |
18937 | 346 if (tmp < 0) { |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
347 mp_msg(MSGT_ASS, MSGL_DBG2, "clip right\n"); |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
348 b_x1 = bm->w + tmp; |
18937 | 349 } |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
350 tmp = clip_y1 - dst_y - bm->h; |
18937 | 351 if (tmp < 0) { |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
352 mp_msg(MSGT_ASS, MSGL_DBG2, "clip bottom\n"); |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
353 b_y1 = bm->h + tmp; |
18937 | 354 } |
355 | |
356 if ((b_y0 >= b_y1) || (b_x0 >= b_x1)) | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
357 return tail; |
18937 | 358 |
359 if (brk > b_x0) { // draw left part | |
360 if (brk > b_x1) brk = b_x1; | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
361 img = my_draw_bitmap(bm->buffer + bm->w * b_y0 + b_x0, |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
362 brk - b_x0, b_y1 - b_y0, bm->w, |
18937 | 363 dst_x + b_x0, dst_y + b_y0, color); |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
364 *tail = img; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
365 tail = &img->next; |
18937 | 366 } |
367 if (brk < b_x1) { // draw right part | |
368 if (brk < b_x0) brk = b_x0; | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
369 img = my_draw_bitmap(bm->buffer + bm->w * b_y0 + brk, |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
370 b_x1 - brk, b_y1 - b_y0, bm->w, |
18937 | 371 dst_x + brk, dst_y + b_y0, color2); |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
372 *tail = img; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
373 tail = &img->next; |
18937 | 374 } |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
375 return tail; |
18937 | 376 } |
377 | |
378 /** | |
379 * \brief Render text_info_t struct into ass_images_t list | |
380 * Rasterize glyphs and put them in glyph cache. | |
381 */ | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
382 static ass_image_t* render_text(text_info_t* text_info, int dst_x, int dst_y) |
18937 | 383 { |
384 int pen_x, pen_y; | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
385 int i, error; |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
386 bitmap_t* bm; |
18937 | 387 glyph_hash_val_t hash_val; |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
388 ass_image_t* head; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
389 ass_image_t** tail = &head; |
18937 | 390 |
391 for (i = 0; i < text_info->length; ++i) { | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
392 if (text_info->glyphs[i].glyph) { |
18937 | 393 if ((text_info->glyphs[i].symbol == '\n') || (text_info->glyphs[i].symbol == 0)) |
394 continue; | |
20477 | 395 error = glyph_to_bitmap(ass_renderer->synth_priv, |
19848 | 396 text_info->glyphs[i].glyph, text_info->glyphs[i].outline_glyph, |
19965 | 397 &text_info->glyphs[i].bm, &text_info->glyphs[i].bm_o, |
398 &text_info->glyphs[i].bm_s, text_info->glyphs[i].be); | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
399 if (error) |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
400 text_info->glyphs[i].symbol = 0; |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
401 FT_Done_Glyph(text_info->glyphs[i].glyph); |
19873 | 402 if (text_info->glyphs[i].outline_glyph) |
403 FT_Done_Glyph(text_info->glyphs[i].outline_glyph); | |
18937 | 404 |
405 // cache | |
406 hash_val.bbox_scaled = text_info->glyphs[i].bbox; | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
407 hash_val.bm_o = text_info->glyphs[i].bm_o; |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
408 hash_val.bm = text_info->glyphs[i].bm; |
19965 | 409 hash_val.bm_s = text_info->glyphs[i].bm_s; |
18937 | 410 hash_val.advance.x = text_info->glyphs[i].advance.x; |
411 hash_val.advance.y = text_info->glyphs[i].advance.y; | |
412 cache_add_glyph(&(text_info->glyphs[i].hash_key), &hash_val); | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
413 |
18937 | 414 } |
415 } | |
416 | |
417 for (i = 0; i < text_info->length; ++i) { | |
418 glyph_info_t* info = text_info->glyphs + i; | |
19965 | 419 if ((info->symbol == 0) || (info->symbol == '\n') || !info->bm_s || (info->shadow == 0)) |
420 continue; | |
421 | |
422 pen_x = dst_x + info->pos.x + info->shadow; | |
423 pen_y = dst_y + info->pos.y + info->shadow; | |
424 bm = info->bm_s; | |
425 | |
426 tail = render_glyph(bm, pen_x, pen_y, info->c[3], 0, 1000000, tail); | |
427 } | |
428 | |
429 for (i = 0; i < text_info->length; ++i) { | |
430 glyph_info_t* info = text_info->glyphs + i; | |
19873 | 431 if ((info->symbol == 0) || (info->symbol == '\n') || !info->bm_o) |
18937 | 432 continue; |
433 | |
434 pen_x = dst_x + info->pos.x; | |
435 pen_y = dst_y + info->pos.y; | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
436 bm = info->bm_o; |
18937 | 437 |
438 if ((info->effect_type == EF_KARAOKE_KO) && (info->effect_timing <= info->bbox.xMax)) { | |
439 // do nothing | |
440 } else | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
441 tail = render_glyph(bm, pen_x, pen_y, info->c[2], 0, 1000000, tail); |
18937 | 442 } |
443 for (i = 0; i < text_info->length; ++i) { | |
444 glyph_info_t* info = text_info->glyphs + i; | |
19873 | 445 if ((info->symbol == 0) || (info->symbol == '\n') || !info->bm) |
18937 | 446 continue; |
447 | |
448 pen_x = dst_x + info->pos.x; | |
449 pen_y = dst_y + info->pos.y; | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
450 bm = info->bm; |
18937 | 451 |
452 if ((info->effect_type == EF_KARAOKE) || (info->effect_type == EF_KARAOKE_KO)) { | |
453 if (info->effect_timing > info->bbox.xMax) | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
454 tail = render_glyph(bm, pen_x, pen_y, info->c[0], 0, 1000000, tail); |
18937 | 455 else |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
456 tail = render_glyph(bm, pen_x, pen_y, info->c[1], 0, 1000000, tail); |
18937 | 457 } else if (info->effect_type == EF_KARAOKE_KF) { |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
458 tail = render_glyph(bm, pen_x, pen_y, info->c[0], info->c[1], info->effect_timing, tail); |
18937 | 459 } else |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
460 tail = render_glyph(bm, pen_x, pen_y, info->c[0], 0, 1000000, tail); |
18937 | 461 } |
462 | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
463 *tail = 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
464 return head; |
18937 | 465 } |
466 | |
467 /** | |
468 * \brief Mapping between script and screen coordinates | |
469 */ | |
470 static int x2scr(int x) { | |
19940
fb2063eaa445
Fix width -> orig_width typo causing subtitles to be too far to the right
reimar
parents:
19932
diff
changeset
|
471 return x*frame_context.orig_width / frame_context.track->PlayResX + global_settings->left_margin; |
18937 | 472 } |
473 /** | |
474 * \brief Mapping between script and screen coordinates | |
475 */ | |
476 static int y2scr(int y) { | |
477 return y * frame_context.orig_height / frame_context.track->PlayResY + global_settings->top_margin; | |
478 } | |
479 // the same for toptitles | |
480 static int y2scr_top(int y) { | |
19538 | 481 if (global_settings->use_margins) |
482 return y * frame_context.orig_height / frame_context.track->PlayResY; | |
483 else | |
484 return y * frame_context.orig_height / frame_context.track->PlayResY + global_settings->top_margin; | |
18937 | 485 } |
486 // the same for subtitles | |
487 static int y2scr_sub(int y) { | |
19538 | 488 if (global_settings->use_margins) |
489 return y * frame_context.orig_height / frame_context.track->PlayResY + | |
490 global_settings->top_margin + global_settings->bottom_margin; | |
491 else | |
492 return y * frame_context.orig_height / frame_context.track->PlayResY + global_settings->top_margin; | |
18937 | 493 } |
494 | |
495 static void compute_string_bbox( text_info_t* info, FT_BBox *abbox ) { | |
496 FT_BBox bbox; | |
20718
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
497 int i; |
18937 | 498 |
20718
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
499 if (text_info.length > 0) { |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
500 bbox.xMin = 32000; |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
501 bbox.xMax = -32000; |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
502 bbox.yMin = - (text_info.lines[0].asc >> 6) + text_info.glyphs[0].pos.y; |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
503 bbox.yMax = ((text_info.height - text_info.lines[0].asc) >> 6) + text_info.glyphs[0].pos.y; |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
504 |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
505 for (i = 0; i < text_info.length; ++i) { |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
506 int s = text_info.glyphs[i].pos.x; |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
507 int e = s + (text_info.glyphs[i].advance.x >> 6); |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
508 bbox.xMin = FFMIN(bbox.xMin, s); |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
509 bbox.xMax = FFMAX(bbox.xMax, e); |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
510 } |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
511 } else |
cde62cf29a7e
Calculate text bounding box in a way that does not depend on actual glyph
eugeni
parents:
20653
diff
changeset
|
512 bbox.xMin = bbox.xMax = bbox.yMin = bbox.yMax = 0; |
18937 | 513 |
514 /* return string bbox */ | |
515 *abbox = bbox; | |
516 } | |
517 | |
518 | |
519 /** | |
520 * \brief Check if starting part of (*p) matches sample. If true, shift p to the first symbol after the matching part. | |
521 */ | |
19104
2ec2301183cd
marks several read-only string parameters which aren't modified inside the called function as const. Patch by Stefan Huehner, stefan AT huehner-org
reynaldo
parents:
19066
diff
changeset
|
522 static inline int mystrcmp(char** p, const char* sample) { |
18937 | 523 int len = strlen(sample); |
524 if (strncmp(*p, sample, len) == 0) { | |
525 (*p) += len; | |
526 return 1; | |
527 } else | |
528 return 0; | |
529 } | |
530 | |
19401
c0c3a2f8bb32
Add subdata to ass_track conversion for external subtitles.
eugeni
parents:
19399
diff
changeset
|
531 double ass_internal_font_size_coeff = 0.8; |
c0c3a2f8bb32
Add subdata to ass_track conversion for external subtitles.
eugeni
parents:
19399
diff
changeset
|
532 |
18937 | 533 static void change_font_size(int sz) |
534 { | |
19825
f351a3fc3e42
Make font outline width proportional to movie resolution.
eugeni
parents:
19716
diff
changeset
|
535 double size = sz * frame_context.font_scale; |
18937 | 536 |
537 if (size < 1) | |
538 size = 1; | |
539 else if (size > frame_context.height * 2) | |
540 size = frame_context.height * 2; | |
541 | |
542 FT_Set_Pixel_Sizes(render_context.face, 0, size); | |
543 | |
544 render_context.font_size = sz; | |
545 } | |
546 | |
547 /** | |
548 * \brief Change current font, using setting from render_context. | |
549 */ | |
550 static void update_font(void) | |
551 { | |
552 int error; | |
553 unsigned val; | |
20477 | 554 ass_renderer_t* priv = frame_context.ass_priv; |
18937 | 555 face_desc_t desc; |
556 desc.family = strdup(render_context.family); | |
557 | |
558 val = render_context.bold; | |
559 // 0 = normal, 1 = bold, >1 = exact weight | |
560 if (val == 0) val = 80; // normal | |
561 else if (val == 1) val = 200; // bold | |
562 desc.bold = val; | |
563 | |
564 val = render_context.italic; | |
565 if (val == 0) val = 0; // normal | |
566 else if (val == 1) val = 110; //italic | |
567 desc.italic = val; | |
568 | |
20477 | 569 error = ass_new_face(priv->ftlibrary, priv->fontconfig_priv, &desc, &(render_context.face)); |
18937 | 570 if (error) { |
571 render_context.face = 0; | |
572 } | |
573 | |
574 if (render_context.face) | |
575 change_font_size(render_context.font_size); | |
576 } | |
577 | |
578 /** | |
579 * \brief Change border width | |
19873 | 580 * negative value resets border to style value |
18937 | 581 */ |
582 static void change_border(double border) | |
583 { | |
19918
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
584 int b; |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
585 if (!render_context.face) return; |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
586 |
19919 | 587 if (border < 0) { |
588 if (render_context.style->BorderStyle == 1) { | |
589 if (render_context.style->Outline == 0 && render_context.style->Shadow > 0) | |
19873 | 590 border = 1.; |
19919 | 591 else |
592 border = render_context.style->Outline; | |
593 } else | |
594 border = 1.; | |
595 } | |
596 render_context.border = border; | |
19873 | 597 |
19919 | 598 b = 64 * border * frame_context.border_scale; |
599 if (b > 0) { | |
19918
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
600 if (!render_context.stroker) { |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
601 int error; |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
602 #if (FREETYPE_MAJOR > 2) || ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR > 1)) |
20477 | 603 error = FT_Stroker_New( ass_renderer->ftlibrary, &render_context.stroker ); |
19918
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
604 #else // < 2.2 |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
605 error = FT_Stroker_New( render_context.face->memory, &render_context.stroker ); |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
606 #endif |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
607 if (error) { |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
608 mp_msg(MSGT_ASS, MSGL_V, "failed to get stroker\n"); |
19918
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
609 render_context.stroker = 0; |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
610 } |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
611 } |
1de67089c19a
Fix FT_Stroker use in libass. The previous variant ended up with 0-width
eugeni
parents:
19917
diff
changeset
|
612 if (render_context.stroker) |
19873 | 613 FT_Stroker_Set( render_context.stroker, b, |
19919 | 614 FT_STROKER_LINECAP_ROUND, |
615 FT_STROKER_LINEJOIN_ROUND, | |
616 0 ); | |
617 } else { | |
618 FT_Stroker_Done(render_context.stroker); | |
619 render_context.stroker = 0; | |
620 } | |
18937 | 621 } |
622 | |
623 #define _r(c) ((c)>>24) | |
624 #define _g(c) (((c)>>16)&0xFF) | |
625 #define _b(c) (((c)>>8)&0xFF) | |
626 #define _a(c) ((c)&0xFF) | |
627 | |
628 /** | |
629 * \brief Calculate a weighted average of two colors | |
630 * calculates c1*(1-a) + c2*a, but separately for each component except alpha | |
631 */ | |
632 static void change_color(uint32_t* var, uint32_t new, double pwr) | |
633 { | |
634 (*var)= ((uint32_t)(_r(*var) * (1 - pwr) + _r(new) * pwr) << 24) + | |
635 ((uint32_t)(_g(*var) * (1 - pwr) + _g(new) * pwr) << 16) + | |
636 ((uint32_t)(_b(*var) * (1 - pwr) + _b(new) * pwr) << 8) + | |
637 _a(*var); | |
638 } | |
639 | |
640 // like change_color, but for alpha component only | |
641 static void change_alpha(uint32_t* var, uint32_t new, double pwr) | |
642 { | |
643 *var = (_r(*var) << 24) + (_g(*var) << 16) + (_b(*var) << 8) + (_a(*var) * (1 - pwr) + _a(new) * pwr); | |
644 } | |
645 | |
19406
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
646 /** |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
647 * \brief Multiply two alpha values |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
648 * \param a first value |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
649 * \param b second value |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
650 * \return result of multiplication |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
651 * Parameters and result are limited by 0xFF. |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
652 */ |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
653 static uint32_t mult_alpha(uint32_t a, uint32_t b) |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
654 { |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
655 return 0xFF - (0xFF - a) * (0xFF - b) / 0xFF; |
747a5c394a69
Fix wrong handling of transparency in \fad(\fade).
eugeni
parents:
19405
diff
changeset
|
656 } |
18937 | 657 |
658 /** | |
659 * \brief Calculate alpha value by piecewise linear function | |
660 * Used for \fad, \fade implementation. | |
661 */ | |
19692
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
662 static unsigned interpolate_alpha(long long now, |
18937 | 663 long long t1, long long t2, long long t3, long long t4, |
664 unsigned a1, unsigned a2, unsigned a3) | |
665 { | |
666 unsigned a; | |
667 double cf; | |
668 if (now <= t1) { | |
669 a = a1; | |
670 } else if (now >= t4) { | |
671 a = a3; | |
672 } else if (now < t2) { // and > t1 | |
673 cf = ((double)(now - t1)) / (t2 - t1); | |
674 a = a1 * (1 - cf) + a2 * cf; | |
675 } else if (now > t3) { | |
676 cf = ((double)(now - t3)) / (t4 - t3); | |
677 a = a2 * (1 - cf) + a3 * cf; | |
678 } else { // t2 <= now <= t3 | |
679 a = a2; | |
680 } | |
681 | |
19692
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
682 return a; |
18937 | 683 } |
684 | |
19873 | 685 static void reset_render_context(); |
686 | |
18937 | 687 /** |
688 * \brief Parse style override tag. | |
689 * \param p string to parse | |
690 * \param pwr multiplier for some tag effects (comes from \t tags) | |
691 */ | |
692 static char* parse_tag(char* p, double pwr) { | |
693 #define skip_all(x) if (*p == (x)) ++p; else { \ | |
694 while ((*p != (x)) && (*p != '}') && (*p != 0)) {++p;} } | |
695 #define skip(x) if (*p == (x)) ++p; else { return p; } | |
696 | |
697 skip_all('\\'); | |
698 if ((*p == '}') || (*p == 0)) | |
699 return p; | |
700 | |
701 if (mystrcmp(&p, "fsc")) { | |
702 char tp = *p++; | |
703 double val; | |
704 if (tp == 'x') { | |
705 if (mystrtod(&p, &val)) { | |
706 val /= 100; | |
707 render_context.scale_x = (val - 1.) * pwr + 1.; | |
708 } else | |
709 render_context.scale_x = render_context.style->ScaleX; | |
710 } else if (tp == 'y') { | |
711 if (mystrtod(&p, &val)) { | |
712 val /= 100; | |
713 render_context.scale_y = (val - 1.) * pwr + 1.; | |
714 } else | |
715 render_context.scale_y = render_context.style->ScaleY; | |
716 } | |
717 } else if (mystrcmp(&p, "fsp")) { | |
718 int val; | |
719 if (mystrtoi(&p, 10, &val)) | |
720 render_context.hspacing = val * pwr; | |
721 else | |
722 render_context.hspacing = 0; | |
723 } else if (mystrcmp(&p, "fs")) { | |
724 int val; | |
725 if (mystrtoi(&p, 10, &val)) | |
726 val = render_context.font_size * ( 1 - pwr ) + val * pwr; | |
727 else | |
728 val = render_context.style->FontSize; | |
729 if (render_context.face) | |
730 change_font_size(val); | |
731 } else if (mystrcmp(&p, "bord")) { | |
732 double val; | |
733 if (mystrtod(&p, &val)) | |
734 val = render_context.border * ( 1 - pwr ) + val * pwr; | |
735 else | |
19873 | 736 val = -1.; // reset to default |
18937 | 737 change_border(val); |
738 } else if (mystrcmp(&p, "move")) { | |
739 int x1, x2, y1, y2; | |
19044 | 740 long long t1, t2, delta_t, t; |
18937 | 741 int x, y; |
742 double k; | |
743 skip('('); | |
744 x1 = strtol(p, &p, 10); | |
745 skip(','); | |
746 y1 = strtol(p, &p, 10); | |
747 skip(','); | |
748 x2 = strtol(p, &p, 10); | |
749 skip(','); | |
750 y2 = strtol(p, &p, 10); | |
19044 | 751 if (*p == ',') { |
752 skip(','); | |
753 t1 = strtoll(p, &p, 10); | |
754 skip(','); | |
755 t2 = strtoll(p, &p, 10); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
756 mp_msg(MSGT_ASS, MSGL_DBG2, "movement6: (%d, %d) -> (%d, %d), (%" PRId64 " .. %" PRId64 ")\n", |
19378 | 757 x1, y1, x2, y2, (int64_t)t1, (int64_t)t2); |
19044 | 758 } else { |
759 t1 = 0; | |
760 t2 = render_context.event->Duration; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
761 mp_msg(MSGT_ASS, MSGL_DBG2, "movement: (%d, %d) -> (%d, %d)\n", x1, y1, x2, y2); |
19044 | 762 } |
763 skip(')'); | |
764 delta_t = t2 - t1; | |
765 t = frame_context.time - render_context.event->Start; | |
766 if (t < t1) | |
767 k = 0.; | |
768 else if (t > t2) | |
769 k = 1.; | |
770 else k = ((double)(t - t1)) / delta_t; | |
18937 | 771 x = k * (x2 - x1) + x1; |
772 y = k * (y2 - y1) + y1; | |
773 render_context.pos_x = x; | |
774 render_context.pos_y = y; | |
775 render_context.detect_collisions = 0; | |
776 render_context.evt_type = EVENT_POSITIONED; | |
777 } else if (mystrcmp(&p, "frx") || mystrcmp(&p, "fry")) { | |
19622 | 778 double val; |
779 mystrtod(&p, &val); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
780 mp_msg(MSGT_ASS, MSGL_V, "frx/fry unimplemented \n"); |
18937 | 781 } else if (mystrcmp(&p, "frz") || mystrcmp(&p, "fr")) { |
782 double angle; | |
19622 | 783 double val; |
784 mystrtod(&p, &val); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
785 mp_msg(MSGT_ASS, MSGL_DBG2, "setting rotation to %.2f\n", val * pwr); |
18937 | 786 angle = M_PI * val / 180; |
787 render_context.rotation = angle * pwr; | |
788 } else if (mystrcmp(&p, "fn")) { | |
789 char* start = p; | |
790 char* family; | |
791 skip_all('\\'); | |
792 family = malloc(p - start + 1); | |
793 strncpy(family, start, p - start); | |
794 family[p - start] = '\0'; | |
795 if (render_context.family) | |
796 free(render_context.family); | |
797 render_context.family = family; | |
798 update_font(); | |
799 } else if (mystrcmp(&p, "alpha")) { | |
800 uint32_t val; | |
19691 | 801 int i; |
18937 | 802 if (strtocolor(&p, &val)) { |
803 unsigned char a = val >> 24; | |
19691 | 804 for (i = 0; i < 4; ++i) |
805 change_alpha(&render_context.c[i], a, pwr); | |
18937 | 806 } else { |
19691 | 807 change_alpha(&render_context.c[0], render_context.style->PrimaryColour, pwr); |
808 change_alpha(&render_context.c[1], render_context.style->SecondaryColour, pwr); | |
809 change_alpha(&render_context.c[2], render_context.style->OutlineColour, pwr); | |
810 change_alpha(&render_context.c[3], render_context.style->BackColour, pwr); | |
18937 | 811 } |
812 // FIXME: simplify | |
813 } else if (mystrcmp(&p, "an")) { | |
814 int val = strtol(p, &p, 10); | |
815 int v = (val - 1) / 3; // 0, 1 or 2 for vertical alignment | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
816 mp_msg(MSGT_ASS, MSGL_DBG2, "an %d\n", val); |
18937 | 817 if (v != 0) v = 3 - v; |
818 val = ((val - 1) % 3) + 1; // horizontal alignment | |
819 val += v*4; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
820 mp_msg(MSGT_ASS, MSGL_DBG2, "align %d\n", val); |
18937 | 821 render_context.alignment = val; |
822 } else if (mystrcmp(&p, "a")) { | |
823 int val = strtol(p, &p, 10); | |
824 render_context.alignment = val; | |
825 } else if (mystrcmp(&p, "pos")) { | |
826 int v1, v2; | |
827 skip('('); | |
828 v1 = strtol(p, &p, 10); | |
829 skip(','); | |
830 v2 = strtol(p, &p, 10); | |
831 skip(')'); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
832 mp_msg(MSGT_ASS, MSGL_DBG2, "pos(%d, %d)\n", v1, v2); |
18937 | 833 render_context.evt_type = EVENT_POSITIONED; |
834 render_context.detect_collisions = 0; | |
835 render_context.pos_x = v1; | |
836 render_context.pos_y = v2; | |
19398
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
837 } else if (mystrcmp(&p, "fad")) { |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
838 int a1, a2, a3; |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
839 long long t1, t2, t3, t4; |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
840 if (*p == 'e') ++p; // either \fad or \fade |
18937 | 841 skip('('); |
842 a1 = strtol(p, &p, 10); | |
843 skip(','); | |
844 a2 = strtol(p, &p, 10); | |
19398
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
845 if (*p == ')') { |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
846 // 2-argument version (\fad, according to specs) |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
847 // a1 and a2 are fade-in and fade-out durations |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
848 t1 = 0; |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
849 t4 = render_context.event->Duration; |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
850 t2 = a1; |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
851 t3 = t4 - a2; |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
852 a1 = 0xFF; |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
853 a2 = 0; |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
854 a3 = 0xFF; |
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
855 } else { |
19399 | 856 // 6-argument version (\fade) |
857 // a1 and a2 (and a3) are opacity values | |
858 skip(','); | |
859 a3 = strtol(p, &p, 10); | |
860 skip(','); | |
861 t1 = strtoll(p, &p, 10); | |
862 skip(','); | |
863 t2 = strtoll(p, &p, 10); | |
864 skip(','); | |
865 t3 = strtoll(p, &p, 10); | |
866 skip(','); | |
867 t4 = strtoll(p, &p, 10); | |
19398
bb5164e0f70f
Allow \fade to be used in place of \fad and vice versa.
eugeni
parents:
19378
diff
changeset
|
868 } |
18937 | 869 skip(')'); |
19692
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
870 render_context.fade = interpolate_alpha(frame_context.time - render_context.event->Start, t1, t2, t3, t4, a1, a2, a3); |
18937 | 871 } else if (mystrcmp(&p, "org")) { |
872 int v1, v2; | |
873 skip('('); | |
874 v1 = strtol(p, &p, 10); | |
875 skip(','); | |
876 v2 = strtol(p, &p, 10); | |
877 skip(')'); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
878 mp_msg(MSGT_ASS, MSGL_DBG2, "org(%d, %d)\n", v1, v2); |
18937 | 879 // render_context.evt_type = EVENT_POSITIONED; |
880 render_context.org_x = v1; | |
881 render_context.org_y = v2; | |
882 } else if (mystrcmp(&p, "t")) { | |
883 double v[3]; | |
884 int v1, v2; | |
885 double v3; | |
886 int cnt; | |
887 long long t1, t2, t, delta_t; | |
888 double k; | |
889 skip('('); | |
890 for (cnt = 0; cnt < 3; ++cnt) { | |
891 if (*p == '\\') | |
892 break; | |
893 v[cnt] = strtod(p, &p); | |
894 skip(','); | |
895 } | |
896 if (cnt == 3) { | |
897 v1 = v[0]; v2 = v[1]; v3 = v[2]; | |
898 } else if (cnt == 2) { | |
899 v1 = v[0]; v2 = v[1]; v3 = 1.; | |
900 } else if (cnt == 1) { | |
901 v1 = 0; v2 = render_context.event->Duration; v3 = v[0]; | |
902 } else { // cnt == 0 | |
903 v1 = 0; v2 = render_context.event->Duration; v3 = 1.; | |
904 } | |
905 render_context.detect_collisions = 0; | |
906 t1 = v1; | |
907 t2 = v2; | |
908 delta_t = v2 - v1; | |
909 t = frame_context.time - render_context.event->Start; // FIXME: move to render_context | |
910 if (t < t1) | |
911 k = 0.; | |
912 else if (t > t2) | |
913 k = 1.; | |
914 else k = ((double)(t - t1)) / delta_t; | |
915 while (*p == '\\') | |
916 p = parse_tag(p, k); // maybe k*pwr ? no, specs forbid nested \t's | |
917 skip_all(')'); // FIXME: better skip(')'), but much more tags support required | |
918 } else if (mystrcmp(&p, "clip")) { | |
919 int x0, y0, x1, y1; | |
920 int res = 1; | |
921 skip('('); | |
922 res &= mystrtoi(&p, 10, &x0); | |
923 skip(','); | |
924 res &= mystrtoi(&p, 10, &y0); | |
925 skip(','); | |
926 res &= mystrtoi(&p, 10, &x1); | |
927 skip(','); | |
928 res &= mystrtoi(&p, 10, &y1); | |
929 skip(')'); | |
930 if (res) { | |
931 render_context.clip_x0 = render_context.clip_x0 * (1-pwr) + x0 * pwr; | |
932 render_context.clip_x1 = render_context.clip_x1 * (1-pwr) + x1 * pwr; | |
933 render_context.clip_y0 = render_context.clip_y0 * (1-pwr) + y0 * pwr; | |
934 render_context.clip_y1 = render_context.clip_y1 * (1-pwr) + y1 * pwr; | |
935 } else { | |
936 render_context.clip_x0 = 0; | |
937 render_context.clip_y0 = 0; | |
938 render_context.clip_x1 = frame_context.track->PlayResX; | |
939 render_context.clip_y1 = frame_context.track->PlayResY; | |
940 } | |
941 } else if (mystrcmp(&p, "c")) { | |
942 uint32_t val; | |
943 if (!strtocolor(&p, &val)) | |
944 val = render_context.style->PrimaryColour; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
945 mp_msg(MSGT_ASS, MSGL_DBG2, "color: %X\n", val); |
19691 | 946 change_color(&render_context.c[0], val, pwr); |
18937 | 947 } else if ((*p >= '1') && (*p <= '4') && (++p) && (mystrcmp(&p, "c") || mystrcmp(&p, "a"))) { |
948 char n = *(p-2); | |
19691 | 949 int cidx = n - '1'; |
18937 | 950 char cmd = *(p-1); |
951 uint32_t val; | |
952 assert((n >= '1') && (n <= '4')); | |
953 if (!strtocolor(&p, &val)) | |
954 switch(n) { | |
955 case '1': val = render_context.style->PrimaryColour; break; | |
956 case '2': val = render_context.style->SecondaryColour; break; | |
957 case '3': val = render_context.style->OutlineColour; break; | |
958 case '4': val = render_context.style->BackColour; break; | |
959 default : val = 0; break; // impossible due to assert; avoid compilation warning | |
960 } | |
961 switch (cmd) { | |
19691 | 962 case 'c': change_color(render_context.c + cidx, val, pwr); break; |
963 case 'a': change_alpha(render_context.c + cidx, val >> 24, pwr); break; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
964 default: mp_msg(MSGT_ASS, MSGL_WARN, "Bad command: %c%c\n", n, cmd); break; |
18937 | 965 } |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
966 mp_msg(MSGT_ASS, MSGL_DBG2, "single c/a at %f: %c%c = %X \n", pwr, n, cmd, render_context.c[cidx]); |
18937 | 967 } else if (mystrcmp(&p, "r")) { |
19873 | 968 reset_render_context(); |
18937 | 969 } else if (mystrcmp(&p, "be")) { |
970 int val; | |
19848 | 971 if (mystrtoi(&p, 10, &val)) |
972 render_context.be = val ? 1 : 0; | |
973 else | |
974 render_context.be = 0; | |
18937 | 975 } else if (mystrcmp(&p, "b")) { |
976 int b; | |
977 if (mystrtoi(&p, 10, &b)) | |
978 render_context.bold = b; | |
979 else | |
980 render_context.bold = - render_context.style->Bold; | |
981 update_font(); | |
982 } else if (mystrcmp(&p, "i")) { | |
983 int i; | |
984 if (mystrtoi(&p, 10, &i)) | |
985 render_context.italic = i; | |
986 else | |
987 render_context.italic = - render_context.style->Italic; | |
988 update_font(); | |
989 } else if (mystrcmp(&p, "kf") || mystrcmp(&p, "K")) { | |
990 int val = strtol(p, &p, 10); | |
991 render_context.effect_type = EF_KARAOKE_KF; | |
19716
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
992 if (render_context.effect_timing) |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
993 render_context.effect_skip_timing += render_context.effect_timing; |
18937 | 994 render_context.effect_timing = val * 10; |
995 } else if (mystrcmp(&p, "ko")) { | |
996 int val = strtol(p, &p, 10); | |
997 render_context.effect_type = EF_KARAOKE_KO; | |
19716
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
998 if (render_context.effect_timing) |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
999 render_context.effect_skip_timing += render_context.effect_timing; |
18937 | 1000 render_context.effect_timing = val * 10; |
1001 } else if (mystrcmp(&p, "k")) { | |
1002 int val = strtol(p, &p, 10); | |
1003 render_context.effect_type = EF_KARAOKE; | |
19716
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1004 if (render_context.effect_timing) |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1005 render_context.effect_skip_timing += render_context.effect_timing; |
18937 | 1006 render_context.effect_timing = val * 10; |
19965 | 1007 } else if (mystrcmp(&p, "shad")) { |
1008 int val; | |
1009 if (mystrtoi(&p, 10, &val)) | |
1010 render_context.shadow = val; | |
1011 else | |
1012 render_context.shadow = render_context.style->Shadow; | |
18937 | 1013 } |
1014 | |
1015 return p; | |
1016 | |
1017 #undef skip | |
1018 #undef skip_all | |
1019 } | |
1020 | |
1021 /** | |
1022 * \brief Get next ucs4 char from string, parsing and executing style overrides | |
1023 * \param str string pointer | |
1024 * \return ucs4 code of the next char | |
1025 * On return str points to the unparsed part of the string | |
1026 */ | |
1027 static unsigned get_next_char(char** str) | |
1028 { | |
1029 char* p = *str; | |
1030 unsigned chr; | |
1031 if (*p == '{') { // '\0' goes here | |
1032 p++; | |
1033 while (1) { | |
1034 p = parse_tag(p, 1.); | |
1035 if (*p == '}') { // end of tag | |
1036 p++; | |
1037 if (*p == '{') { | |
1038 p++; | |
1039 continue; | |
1040 } else | |
1041 break; | |
1042 } else if (*p != '\\') | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1043 mp_msg(MSGT_ASS, MSGL_V, "Unable to parse: \"%s\" \n", p); |
18937 | 1044 if (*p == 0) |
1045 break; | |
1046 } | |
1047 } | |
1048 if (*p == '\t') { | |
1049 ++p; | |
1050 *str = p; | |
1051 return ' '; | |
1052 } | |
1053 if (*p == '\\') { | |
1054 if ((*(p+1) == 'N') || ((*(p+1) == 'n') && (frame_context.track->WrapStyle == 2))) { | |
1055 p += 2; | |
1056 *str = p; | |
1057 return '\n'; | |
1058 } else if (*(p+1) == 'n') { | |
1059 p += 2; | |
1060 *str = p; | |
1061 return ' '; | |
1062 } | |
1063 } | |
20503 | 1064 chr = utf8_get_char(&p); |
18937 | 1065 *str = p; |
1066 return chr; | |
1067 } | |
1068 | |
19556 | 1069 static void apply_transition_effects(ass_event_t* event) |
1070 { | |
1071 int v[4]; | |
1072 int cnt; | |
1073 char* p = event->Effect; | |
1074 | |
1075 if (!p || !*p) return; | |
1076 | |
1077 cnt = 0; | |
1078 while (cnt < 4 && (p = strchr(p, ';'))) { | |
1079 v[cnt++] = atoi(++p); | |
1080 } | |
1081 | |
1082 if (strncmp(event->Effect, "Banner;", 7) == 0) { | |
1083 int delay; | |
1084 if (cnt < 1) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1085 mp_msg(MSGT_ASS, MSGL_V, "Error parsing effect: %s \n", event->Effect); |
19556 | 1086 return; |
1087 } | |
1088 if (cnt >= 2 && v[1] == 0) // right-to-left | |
1089 render_context.scroll_direction = SCROLL_RL; | |
1090 else // left-to-right | |
1091 render_context.scroll_direction = SCROLL_LR; | |
1092 | |
1093 delay = v[0]; | |
1094 if (delay == 0) delay = 1; // ? | |
1095 render_context.scroll_shift = (frame_context.time - render_context.event->Start) / delay; | |
1096 render_context.evt_type = EVENT_HSCROLL; | |
1097 return; | |
1098 } | |
1099 | |
1100 if (strncmp(event->Effect, "Scroll up;", 10) == 0) { | |
1101 render_context.scroll_direction = SCROLL_BT; | |
1102 } else if (strncmp(event->Effect, "Scroll down;", 12) == 0) { | |
1103 render_context.scroll_direction = SCROLL_TB; | |
1104 } else { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1105 mp_msg(MSGT_ASS, MSGL_V, "Unknown transition effect: %s \n", event->Effect); |
19556 | 1106 return; |
1107 } | |
1108 // parse scroll up/down parameters | |
1109 { | |
1110 int delay; | |
1111 int y0, y1; | |
1112 if (cnt < 3) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1113 mp_msg(MSGT_ASS, MSGL_V, "Error parsing effect: %s \n", event->Effect); |
19556 | 1114 return; |
1115 } | |
1116 delay = v[2]; | |
1117 if (delay == 0) delay = 1; // ? | |
1118 render_context.scroll_shift = (frame_context.time - render_context.event->Start) / delay; | |
1119 if (v[0] < v[1]) { | |
1120 y0 = v[0]; y1 = v[1]; | |
1121 } else { | |
1122 y0 = v[1]; y1 = v[0]; | |
1123 } | |
1124 if (y1 == 0) | |
1125 y1 = frame_context.track->PlayResY; // y0=y1=0 means fullscreen scrolling | |
1126 render_context.clip_y0 = y0; | |
1127 render_context.clip_y1 = y1; | |
1128 render_context.evt_type = EVENT_VSCROLL; | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1129 render_context.detect_collisions = 0; |
19556 | 1130 } |
1131 | |
1132 } | |
1133 | |
18937 | 1134 /** |
19873 | 1135 * \brief partially reset render_context to style values |
1136 * Works like {\r}: resets some style overrides | |
1137 */ | |
1138 static void reset_render_context(void) | |
1139 { | |
1140 render_context.c[0] = render_context.style->PrimaryColour; | |
1141 render_context.c[1] = render_context.style->SecondaryColour; | |
1142 render_context.c[2] = render_context.style->OutlineColour; | |
1143 render_context.c[3] = render_context.style->BackColour; | |
1144 render_context.font_size = render_context.style->FontSize; | |
1145 | |
1146 if (render_context.family) | |
1147 free(render_context.family); | |
1148 render_context.family = strdup(render_context.style->FontName); | |
1149 render_context.bold = - render_context.style->Bold; | |
1150 render_context.italic = - render_context.style->Italic; | |
1151 update_font(); | |
1152 | |
1153 change_border(-1.); | |
1154 render_context.scale_x = render_context.style->ScaleX; | |
1155 render_context.scale_y = render_context.style->ScaleY; | |
1156 render_context.hspacing = 0; // FIXME | |
1157 render_context.be = 0; | |
19965 | 1158 render_context.shadow = render_context.style->Shadow; |
19873 | 1159 |
1160 // FIXME: does not reset unsupported attributes. | |
1161 } | |
1162 | |
1163 /** | |
18937 | 1164 * \brief Start new event. Reset render_context. |
1165 */ | |
19873 | 1166 static void init_render_context(ass_event_t* event) |
18937 | 1167 { |
1168 render_context.event = event; | |
1169 render_context.style = frame_context.track->styles + event->Style; | |
19873 | 1170 |
1171 reset_render_context(); | |
1172 | |
18937 | 1173 render_context.evt_type = EVENT_NORMAL; |
1174 render_context.alignment = 0; | |
19404 | 1175 render_context.rotation = M_PI * render_context.style->Angle / 180.; |
18937 | 1176 render_context.pos_x = 0; |
1177 render_context.pos_y = 0; | |
1178 render_context.org_x = 0; | |
1179 render_context.org_y = 0; | |
1180 render_context.clip_x0 = 0; | |
1181 render_context.clip_y0 = 0; | |
1182 render_context.clip_x1 = frame_context.track->PlayResX; | |
1183 render_context.clip_y1 = frame_context.track->PlayResY; | |
1184 render_context.detect_collisions = 1; | |
19692
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
1185 render_context.fade = 0; |
19716
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1186 render_context.effect_type = EF_NONE; |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1187 render_context.effect_timing = 0; |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1188 render_context.effect_skip_timing = 0; |
18937 | 1189 |
19556 | 1190 apply_transition_effects(event); |
18937 | 1191 } |
1192 | |
19873 | 1193 static void free_render_context(void) |
18937 | 1194 { |
1195 } | |
1196 | |
1197 /** | |
1198 * \brief Get normal and outline glyphs from cache (if possible) or font face | |
1199 * \param index face glyph index | |
1200 * \param symbol ucs4 char | |
1201 * \param info out: struct filled with extracted data | |
1202 * \param advance advance vector of the extracted glyph | |
1203 * \return 0 on success | |
1204 */ | |
1205 static int get_glyph(int index, int symbol, glyph_info_t* info, FT_Vector* advance) | |
1206 { | |
1207 int error; | |
1208 glyph_hash_val_t* val; | |
1209 glyph_hash_key_t* key = &(info->hash_key); | |
1210 | |
1211 key->face = render_context.face; | |
1212 key->size = render_context.font_size; | |
1213 key->index = index; | |
1214 key->outline = (render_context.border * 0xFFFF); // convert to 16.16 | |
1215 key->scale_x = (render_context.scale_x * 0xFFFF); | |
1216 key->scale_y = (render_context.scale_y * 0xFFFF); | |
1217 key->angle = (render_context.rotation * 0xFFFF); | |
1218 key->advance = *advance; | |
1219 key->bold = render_context.bold; | |
1220 key->italic = render_context.italic; | |
19848 | 1221 key->be = render_context.be; |
18937 | 1222 |
1223 val = cache_find_glyph(key); | |
1224 // val = 0; | |
1225 | |
1226 if (val) { | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
1227 info->glyph = info->outline_glyph = 0; |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
1228 info->bm = val->bm; |
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
1229 info->bm_o = val->bm_o; |
19965 | 1230 info->bm_s = val->bm_s; |
18937 | 1231 info->bbox = val->bbox_scaled; |
1232 info->advance.x = val->advance.x; | |
1233 info->advance.y = val->advance.y; | |
1234 | |
1235 return 0; | |
1236 } | |
1237 | |
1238 // not found, get a new outline glyph from face | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1239 // mp_msg(MSGT_ASS, MSGL_INFO, "miss, index = %d, symbol = %c, adv = (%d, %d)\n", index, symbol, advance->x, advance->y); |
18937 | 1240 |
1241 error = FT_Load_Glyph(render_context.face, index, FT_LOAD_NO_BITMAP ); | |
1242 if (error) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1243 mp_msg(MSGT_ASS, MSGL_WARN, "Error loading glyph\n"); |
18937 | 1244 return error; |
1245 } | |
1246 | |
1247 #if (FREETYPE_MAJOR > 2) || \ | |
1248 ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR >= 2)) || \ | |
1249 ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR == 1) && (FREETYPE_PATCH >= 10)) | |
1250 // FreeType >= 2.1.10 required | |
1251 if (!(render_context.face->style_flags & FT_STYLE_FLAG_ITALIC) && | |
1252 ((render_context.italic == 1) || (render_context.italic > 55))) { | |
1253 FT_GlyphSlot_Oblique(render_context.face->glyph); | |
1254 } | |
1255 #endif | |
1256 error = FT_Get_Glyph(render_context.face->glyph, &(info->glyph)); | |
1257 if (error) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1258 mp_msg(MSGT_ASS, MSGL_WARN, "Error getting glyph\n"); |
18937 | 1259 return error; |
1260 } | |
1261 | |
1262 info->advance.x = info->glyph->advance.x >> 10; | |
1263 info->advance.y = info->glyph->advance.y >> 10; | |
1264 | |
19873 | 1265 if (render_context.stroker) { |
1266 info->outline_glyph = info->glyph; | |
1267 error = FT_Glyph_Stroke( &(info->outline_glyph), render_context.stroker, 0 ); // don't destroy original | |
1268 if (error) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1269 mp_msg(MSGT_ASS, MSGL_WARN, "FT_Glyph_Stroke error %d \n", error); |
19873 | 1270 } |
1271 } else { | |
1272 info->outline_glyph = 0; | |
19002
da05237044c2
Ignoring FT_Glyph_Stroke() errors can potentially lead to double free().
eugeni
parents:
18937
diff
changeset
|
1273 } |
18937 | 1274 |
19965 | 1275 info->bm = info->bm_o = info->bm_s = 0; |
18937 | 1276 |
1277 return 0; | |
1278 } | |
1279 | |
1280 /** | |
19932
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1281 * This function goes through text_info and calculates text parameters. |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1282 * The following text_info fields are filled: |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1283 * n_lines |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1284 * height |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1285 * lines[].height |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1286 * lines[].asc |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1287 * lines[].desc |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1288 */ |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1289 static void measure_text() |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1290 { |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1291 int cur_line = 0, max_asc = 0, max_desc = 0; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1292 int i; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1293 text_info.height = 0; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1294 for (i = 0; i < text_info.length + 1; ++i) { |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1295 if ((i == text_info.length) || text_info.glyphs[i].linebreak) { |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1296 text_info.lines[cur_line].asc = max_asc; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1297 text_info.lines[cur_line].desc = max_desc; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1298 text_info.height += max_asc + max_desc; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1299 cur_line ++; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1300 max_asc = max_desc = 0; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1301 } |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1302 if (i < text_info.length) { |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1303 glyph_info_t* cur = text_info.glyphs + i; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1304 if (cur->asc > max_asc) |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1305 max_asc = cur->asc * render_context.scale_y; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1306 if (cur->desc > max_desc) |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1307 max_desc = cur->desc * render_context.scale_y; |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1308 } |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1309 } |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1310 } |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1311 |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1312 /** |
18937 | 1313 * \brief rearrange text between lines |
1314 * \param max_text_width maximal text line width in pixels | |
1315 * The algo is similar to the one in libvo/sub.c: | |
1316 * 1. Place text, wrapping it when current line is full | |
1317 * 2. Try moving words from the end of a line to the beginning of the next one while it reduces | |
1318 * the difference in lengths between this two lines. | |
1319 * The result may not be optimal, but usually is good enough. | |
1320 */ | |
1321 static void wrap_lines_smart(int max_text_width) | |
1322 { | |
1323 int i, j; | |
1324 glyph_info_t *cur, *s1, *e1, *s2, *s3, *w; | |
1325 int last_space; | |
1326 int break_type; | |
1327 int exit; | |
1328 int pen_shift_x; | |
1329 int pen_shift_y; | |
1330 int cur_line; | |
1331 | |
1332 last_space = -1; | |
1333 text_info.n_lines = 1; | |
1334 break_type = 0; | |
1335 s1 = text_info.glyphs; // current line start | |
1336 for (i = 0; i < text_info.length; ++i) { | |
19370 | 1337 int break_at, s_offset, len; |
18937 | 1338 cur = text_info.glyphs + i; |
19370 | 1339 break_at = -1; |
1340 s_offset = s1->bbox.xMin + s1->pos.x; | |
1341 len = (cur->bbox.xMax + cur->pos.x) - s_offset; | |
18937 | 1342 |
1343 if (cur->symbol == '\n') { | |
1344 break_type = 2; | |
1345 break_at = i; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1346 mp_msg(MSGT_ASS, MSGL_DBG2, "forced line break at %d\n", break_at); |
18937 | 1347 } |
1348 | |
1349 if (len >= max_text_width) { | |
1350 break_type = 1; | |
1351 break_at = last_space; | |
1352 if (break_at == -1) | |
1353 break_at = i - 1; | |
1354 if (break_at == -1) | |
1355 break_at = 0; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1356 mp_msg(MSGT_ASS, MSGL_DBG2, "overfill at %d\n", i); |
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1357 mp_msg(MSGT_ASS, MSGL_DBG2, "line break at %d\n", break_at); |
18937 | 1358 } |
1359 | |
1360 if (break_at != -1) { | |
1361 // need to use one more line | |
1362 // marking break_at+1 as start of a new line | |
1363 int lead = break_at + 1; // the first symbol of the new line | |
1364 if (text_info.n_lines >= MAX_LINES) { | |
1365 // to many lines ! | |
1366 // no more linebreaks | |
1367 for (j = lead; j < text_info.length; ++j) | |
1368 text_info.glyphs[j].linebreak = 0; | |
1369 break; | |
1370 } | |
1371 if (lead < text_info.length) | |
1372 text_info.glyphs[lead].linebreak = break_type; | |
1373 last_space = -1; | |
1374 s1 = text_info.glyphs + lead; | |
1375 s_offset = s1->bbox.xMin + s1->pos.x; | |
1376 text_info.n_lines ++; | |
1377 } | |
1378 | |
1379 if (cur->symbol == ' ') | |
1380 last_space = i; | |
1381 } | |
1382 #define DIFF(x,y) (((x) < (y)) ? (y - x) : (x - y)) | |
1383 exit = 0; | |
1384 while (!exit) { | |
1385 exit = 1; | |
1386 w = s3 = text_info.glyphs; | |
1387 s1 = s2 = 0; | |
1388 for (i = 0; i <= text_info.length; ++i) { | |
1389 cur = text_info.glyphs + i; | |
1390 if ((i == text_info.length) || cur->linebreak) { | |
1391 s1 = s2; | |
1392 s2 = s3; | |
1393 s3 = cur; | |
1394 if (s1 && (s2->linebreak == 1)) { // have at least 2 lines, and linebreak is 'soft' | |
1395 int l1, l2, l1_new, l2_new; | |
1396 | |
1397 w = s2; | |
1398 do { --w; } while ((w > s1) && (w->symbol == ' ')); | |
19663
042680f89e7d
Fix possible unallocated memory read in libass line wrapping code.
eugeni
parents:
19651
diff
changeset
|
1399 while ((w > s1) && (w->symbol != ' ')) { --w; } |
18937 | 1400 e1 = w; |
19663
042680f89e7d
Fix possible unallocated memory read in libass line wrapping code.
eugeni
parents:
19651
diff
changeset
|
1401 while ((e1 > s1) && (e1->symbol == ' ')) { --e1; } |
18937 | 1402 if (w->symbol == ' ') ++w; |
1403 | |
1404 l1 = ((s2-1)->bbox.xMax + (s2-1)->pos.x) - (s1->bbox.xMin + s1->pos.x); | |
1405 l2 = ((s3-1)->bbox.xMax + (s3-1)->pos.x) - (s2->bbox.xMin + s2->pos.x); | |
1406 l1_new = (e1->bbox.xMax + e1->pos.x) - (s1->bbox.xMin + s1->pos.x); | |
1407 l2_new = ((s3-1)->bbox.xMax + (s3-1)->pos.x) - (w->bbox.xMin + w->pos.x); | |
1408 | |
1409 if (DIFF(l1_new, l2_new) < DIFF(l1, l2)) { | |
1410 w->linebreak = 1; | |
1411 s2->linebreak = 0; | |
1412 exit = 0; | |
1413 } | |
1414 } | |
1415 } | |
1416 if (i == text_info.length) | |
1417 break; | |
1418 } | |
1419 | |
1420 } | |
1421 assert(text_info.n_lines >= 1); | |
1422 #undef DIFF | |
1423 | |
19932
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1424 measure_text(); |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1425 |
18937 | 1426 pen_shift_x = 0; |
1427 pen_shift_y = 0; | |
1428 cur_line = 1; | |
1429 for (i = 0; i < text_info.length; ++i) { | |
1430 cur = text_info.glyphs + i; | |
1431 if (cur->linebreak) { | |
1432 int height = text_info.lines[cur_line - 1].desc + text_info.lines[cur_line].asc; | |
1433 cur_line ++; | |
1434 pen_shift_x = - cur->pos.x; | |
1435 pen_shift_y += (height >> 6) + global_settings->line_spacing; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1436 mp_msg(MSGT_ASS, MSGL_DBG2, "shifting from %d to %d by (%d, %d)\n", i, text_info.length - 1, pen_shift_x, pen_shift_y); |
18937 | 1437 } |
1438 cur->pos.x += pen_shift_x; | |
1439 cur->pos.y += pen_shift_y; | |
1440 } | |
1441 } | |
1442 | |
1443 /** | |
1444 * \brief determine karaoke effects | |
1445 * Karaoke effects cannot be calculated during parse stage (get_next_char()), | |
1446 * so they are done in a separate step. | |
1447 * Parse stage: when karaoke style override is found, its parameters are stored in the next glyph's | |
1448 * (the first glyph of the karaoke word)'s effect_type and effect_timing. | |
1449 * This function: | |
1450 * 1. sets effect_type for all glyphs in the word (_karaoke_ word) | |
1451 * 2. sets effect_timing for all glyphs to x coordinate of the border line between the left and right karaoke parts | |
1452 * (left part is filled with PrimaryColour, right one - with SecondaryColour). | |
1453 */ | |
1454 static void process_karaoke_effects(void) | |
1455 { | |
1456 glyph_info_t *cur, *cur2; | |
1457 glyph_info_t *s1, *e1; // start and end of the current word | |
1458 glyph_info_t *s2; // start of the next word | |
1459 int i; | |
1460 int timing; // current timing | |
1461 int tm_start, tm_end; // timings at start and end of the current word | |
1462 int tm_current; | |
1463 double dt; | |
1464 int x; | |
1465 int x_start, x_end; | |
1466 | |
1467 tm_current = frame_context.time - render_context.event->Start; | |
1468 timing = 0; | |
1469 s1 = s2 = 0; | |
1470 for (i = 0; i <= text_info.length; ++i) { | |
1471 cur = text_info.glyphs + i; | |
1472 if ((i == text_info.length) || (cur->effect_type != EF_NONE)) { | |
1473 s1 = s2; | |
1474 s2 = cur; | |
1475 if (s1) { | |
1476 e1 = s2 - 1; | |
19716
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1477 tm_start = timing + s1->effect_skip_timing; |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1478 tm_end = tm_start + s1->effect_timing; |
18937 | 1479 timing = tm_end; |
20653
402484a85b9f
More precise bounding box calculation for karaoke effects.
eugeni
parents:
20629
diff
changeset
|
1480 x_start = 1000000; |
402484a85b9f
More precise bounding box calculation for karaoke effects.
eugeni
parents:
20629
diff
changeset
|
1481 x_end = -1000000; |
402484a85b9f
More precise bounding box calculation for karaoke effects.
eugeni
parents:
20629
diff
changeset
|
1482 for (cur2 = s1; cur2 <= e1; ++cur2) { |
402484a85b9f
More precise bounding box calculation for karaoke effects.
eugeni
parents:
20629
diff
changeset
|
1483 x_start = FFMIN(x_start, cur2->bbox.xMin + cur2->pos.x); |
402484a85b9f
More precise bounding box calculation for karaoke effects.
eugeni
parents:
20629
diff
changeset
|
1484 x_end = FFMAX(x_end, cur2->bbox.xMax + cur2->pos.x); |
402484a85b9f
More precise bounding box calculation for karaoke effects.
eugeni
parents:
20629
diff
changeset
|
1485 } |
18937 | 1486 |
1487 dt = (tm_current - tm_start); | |
1488 if ((s1->effect_type == EF_KARAOKE) || (s1->effect_type == EF_KARAOKE_KO)) { | |
1489 if (dt > 0) | |
1490 x = x_end + 1; | |
1491 else | |
1492 x = x_start; | |
1493 } else if (s1->effect_type == EF_KARAOKE_KF) { | |
1494 dt /= (tm_end - tm_start); | |
1495 x = x_start + (x_end - x_start) * dt; | |
1496 } else { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1497 mp_msg(MSGT_ASS, MSGL_ERR, "Unknown effect type (internal error) \n"); |
18937 | 1498 continue; |
1499 } | |
1500 | |
1501 for (cur2 = s1; cur2 <= e1; ++cur2) { | |
1502 cur2->effect_type = s1->effect_type; | |
1503 cur2->effect_timing = x - cur2->pos.x; | |
1504 } | |
1505 } | |
1506 } | |
1507 } | |
1508 } | |
1509 | |
19066
26a30496ec96
marks several function without a prototype which arent used outside its sourcefile as static, Patch by Stefan Huehner - stefan AT huehner-org
reynaldo
parents:
19044
diff
changeset
|
1510 static int get_face_ascender(FT_Face face) |
18937 | 1511 { |
1512 int v = face->size->metrics.ascender; | |
19693
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1513 int v2 = FT_MulFix(face->bbox.yMax, face->size->metrics.y_scale); |
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1514 if (v > v2 * 0.9) |
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1515 return v; |
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1516 else |
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1517 return v2; |
18937 | 1518 } |
1519 | |
19066
26a30496ec96
marks several function without a prototype which arent used outside its sourcefile as static, Patch by Stefan Huehner - stefan AT huehner-org
reynaldo
parents:
19044
diff
changeset
|
1520 static int get_face_descender(FT_Face face) |
18937 | 1521 { |
19693
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1522 int v = - face->size->metrics.descender; |
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1523 int v2 = - FT_MulFix(face->bbox.yMin, face->size->metrics.y_scale); |
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1524 if (v > v2 * 0.9) |
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1525 return v; |
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1526 else |
3fc2235ff062
Workaround for broken fonts with bad ascender/descender.
eugeni
parents:
19692
diff
changeset
|
1527 return v2; |
18937 | 1528 } |
1529 | |
1530 /** | |
20294
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1531 * \brief Calculate base point for positioning and rotation |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1532 * \param bbox text bbox |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1533 * \param alignment alignment |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1534 * \param bx, by out: base point coordinates |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1535 */ |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1536 static void get_base_point(FT_BBox bbox, int alignment, int* bx, int* by) |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1537 { |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1538 const int halign = alignment & 3; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1539 const int valign = alignment & 12; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1540 if (bx) |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1541 switch(halign) { |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1542 case HALIGN_LEFT: |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1543 *bx = bbox.xMin; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1544 break; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1545 case HALIGN_CENTER: |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1546 *bx = (bbox.xMax + bbox.xMin) / 2; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1547 break; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1548 case HALIGN_RIGHT: |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1549 *bx = bbox.xMax; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1550 break; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1551 } |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1552 if (by) |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1553 switch(valign) { |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1554 case VALIGN_TOP: |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1555 *by = bbox.yMin; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1556 break; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1557 case VALIGN_CENTER: |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1558 *by = (bbox.yMax + bbox.yMin) / 2; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1559 break; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1560 case VALIGN_SUB: |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1561 *by = bbox.yMax; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1562 break; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1563 } |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1564 } |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1565 |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1566 /** |
18937 | 1567 * \brief Main ass rendering function, glues everything together |
1568 * \param event event to render | |
1569 * Process event, appending resulting ass_image_t's to images_root. | |
1570 */ | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1571 static int ass_render_event(ass_event_t* event, event_images_t* event_images) |
18937 | 1572 { |
1573 char* p; | |
1574 FT_UInt glyph_index; | |
1575 FT_Bool use_kerning; | |
1576 FT_UInt previous; | |
1577 FT_UInt num_glyphs; | |
1578 FT_Vector pen; | |
1579 int error; | |
1580 unsigned code; | |
1581 FT_BBox bbox; | |
1582 int i, j; | |
1583 FT_Vector shift; | |
1584 int MarginL, MarginR, MarginV; | |
1585 int last_break; | |
1586 int alignment, halign, valign; | |
19556 | 1587 int device_x = 0, device_y = 0; |
18937 | 1588 |
19651 | 1589 if (event->Style >= frame_context.track->n_styles) { |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1590 mp_msg(MSGT_ASS, MSGL_WARN, "No style found!\n"); |
19650 | 1591 return 1; |
1592 } | |
1593 if (!event->Text) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1594 mp_msg(MSGT_ASS, MSGL_WARN, "Empty event!\n"); |
19650 | 1595 return 1; |
1596 } | |
1597 | |
18937 | 1598 init_render_context(event); |
1599 | |
1600 text_info.length = 0; | |
1601 pen.x = 0; | |
1602 pen.y = 0; | |
1603 previous = 0; | |
1604 num_glyphs = 0; | |
1605 p = event->Text; | |
1606 // Event parsing. | |
1607 while (1) { | |
1608 // get next char, executing style override | |
1609 // this affects render_context | |
1610 code = get_next_char(&p); | |
1611 | |
1612 // face could have been changed in get_next_char | |
1613 if (!render_context.face) { | |
1614 free_render_context(); | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1615 return 1; |
18937 | 1616 } |
1617 | |
1618 if (code == 0) | |
1619 break; | |
1620 | |
1621 use_kerning = FT_HAS_KERNING(render_context.face); | |
1622 | |
1623 if (text_info.length >= MAX_GLYPHS) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1624 mp_msg(MSGT_ASS, MSGL_WARN, "\nMAX_GLYPHS reached: event %d, start = %llu, duration = %llu\n Text = %s\n", |
18937 | 1625 (int)(event - frame_context.track->events), event->Start, event->Duration, event->Text); |
1626 break; | |
1627 } | |
1628 | |
1629 glyph_index = FT_Get_Char_Index( render_context.face, code); | |
1630 | |
1631 if ( use_kerning && previous && glyph_index ) { | |
1632 FT_Vector delta; | |
1633 FT_Get_Kerning( render_context.face, previous, glyph_index, FT_KERNING_DEFAULT, &delta ); | |
20320
33f0529d29e3
Don't forget to apply scaling coefficients to kerning values.
eugeni
parents:
20302
diff
changeset
|
1634 pen.x += delta.x * render_context.scale_x; |
33f0529d29e3
Don't forget to apply scaling coefficients to kerning values.
eugeni
parents:
20302
diff
changeset
|
1635 pen.y += delta.y * render_context.scale_y; |
18937 | 1636 } |
1637 | |
1638 shift.x = pen.x & 63; | |
1639 shift.y = pen.y & 63; | |
1640 | |
1641 if ((render_context.scale_x != 1.) || (render_context.scale_y != 1.) || | |
1642 (frame_context.font_scale_x != 1.)) { | |
1643 FT_Matrix matrix; | |
1644 matrix.xx = (FT_Fixed)( render_context.scale_x * frame_context.font_scale_x * 0x10000L ); | |
1645 matrix.xy = (FT_Fixed)( 0 * 0x10000L ); | |
1646 matrix.yx = (FT_Fixed)( 0 * 0x10000L ); | |
1647 matrix.yy = (FT_Fixed)( render_context.scale_y * 0x10000L ); | |
1648 | |
1649 FT_Set_Transform( render_context.face, &matrix, &shift ); | |
1650 } else { | |
1651 FT_Set_Transform(render_context.face, 0, &shift); | |
1652 } | |
1653 | |
1654 error = get_glyph(glyph_index, code, text_info.glyphs + text_info.length, &shift); | |
1655 | |
1656 if (error) { | |
1657 continue; | |
1658 } | |
1659 | |
1660 text_info.glyphs[text_info.length].pos.x = pen.x >> 6; | |
1661 text_info.glyphs[text_info.length].pos.y = pen.y >> 6; | |
1662 | |
1663 pen.x += text_info.glyphs[text_info.length].advance.x; | |
1664 pen.x += render_context.hspacing; | |
1665 pen.y += text_info.glyphs[text_info.length].advance.y; | |
1666 | |
1667 // if it's an outline glyph, we still need to fill the bbox | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19825
diff
changeset
|
1668 if (text_info.glyphs[text_info.length].glyph) { |
18937 | 1669 FT_Glyph_Get_CBox( text_info.glyphs[text_info.length].glyph, FT_GLYPH_BBOX_PIXELS, &(text_info.glyphs[text_info.length].bbox) ); |
1670 } | |
1671 | |
1672 | |
1673 previous = glyph_index; | |
1674 | |
1675 text_info.glyphs[text_info.length].symbol = code; | |
1676 text_info.glyphs[text_info.length].linebreak = 0; | |
19692
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
1677 for (i = 0; i < 4; ++i) { |
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
1678 uint32_t clr = render_context.c[i]; |
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
1679 change_alpha(&clr, mult_alpha(_a(clr), render_context.fade), 1.); |
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
1680 text_info.glyphs[text_info.length].c[i] = clr; |
5b40e87b9619
Change \fad behaviour so that it does not get cancelled by \r.
eugeni
parents:
19691
diff
changeset
|
1681 } |
18937 | 1682 text_info.glyphs[text_info.length].effect_type = render_context.effect_type; |
1683 text_info.glyphs[text_info.length].effect_timing = render_context.effect_timing; | |
19716
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1684 text_info.glyphs[text_info.length].effect_skip_timing = render_context.effect_skip_timing; |
18937 | 1685 text_info.glyphs[text_info.length].asc = get_face_ascender(render_context.face); |
1686 text_info.glyphs[text_info.length].desc = get_face_descender(render_context.face); | |
19848 | 1687 text_info.glyphs[text_info.length].be = render_context.be; |
19965 | 1688 text_info.glyphs[text_info.length].shadow = render_context.shadow; |
20295 | 1689 text_info.glyphs[text_info.length].frz = render_context.rotation; |
18937 | 1690 |
1691 text_info.length++; | |
19716
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1692 |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1693 render_context.effect_type = EF_NONE; |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1694 render_context.effect_timing = 0; |
e4e492fcc2f7
Bugfix: timing for empty karaoke words was lost, resulting
eugeni
parents:
19693
diff
changeset
|
1695 render_context.effect_skip_timing = 0; |
18937 | 1696 } |
1697 | |
1698 if (text_info.length == 0) { | |
1699 // no valid symbols in the event; this can be smth like {comment} | |
1700 free_render_context(); | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1701 return 1; |
18937 | 1702 } |
1703 | |
1704 // depends on glyph x coordinates being monotonous, so it should be done before line wrap | |
1705 process_karaoke_effects(); | |
1706 | |
1707 // alignments | |
1708 alignment = render_context.alignment; | |
1709 if (!alignment) | |
1710 alignment = render_context.style->Alignment; | |
1711 halign = alignment & 3; | |
1712 valign = alignment & 12; | |
1713 | |
19649 | 1714 MarginL = (event->MarginL) ? event->MarginL : render_context.style->MarginL; |
1715 MarginR = (event->MarginR) ? event->MarginR : render_context.style->MarginR; | |
1716 MarginV = (event->MarginV) ? event->MarginV : render_context.style->MarginV; | |
19556 | 1717 |
1718 if (render_context.evt_type != EVENT_HSCROLL) { | |
19931
399bb1fcdc94
Move variable declaration to a more deeply nested block. It is not used outside of it.
eugeni
parents:
19919
diff
changeset
|
1719 int max_text_width; |
399bb1fcdc94
Move variable declaration to a more deeply nested block. It is not used outside of it.
eugeni
parents:
19919
diff
changeset
|
1720 |
19557 | 1721 // calculate max length of a line |
1722 max_text_width = x2scr(frame_context.track->PlayResX - MarginR) - x2scr(MarginL); | |
19556 | 1723 |
19557 | 1724 // rearrange text in several lines |
1725 wrap_lines_smart(max_text_width); | |
19556 | 1726 |
19557 | 1727 // align text |
1728 last_break = -1; | |
1729 for (i = 1; i < text_info.length + 1; ++i) { // (text_info.length + 1) is the end of the last line | |
1730 if ((i == text_info.length) || text_info.glyphs[i].linebreak) { | |
1731 int width, shift; | |
1732 glyph_info_t* first_glyph = text_info.glyphs + last_break + 1; | |
1733 glyph_info_t* last_glyph = text_info.glyphs + i - 1; | |
18937 | 1734 |
20226
42140caaf210
Fix crash because of last_glyph < first_glyph, probably caused by first line
reimar
parents:
20202
diff
changeset
|
1735 while ((last_glyph > first_glyph) && ((last_glyph->symbol == '\n') || (last_glyph->symbol == 0))) |
19557 | 1736 last_glyph --; |
18937 | 1737 |
19557 | 1738 width = last_glyph->pos.x + last_glyph->bbox.xMax - first_glyph->pos.x - first_glyph->bbox.xMin; |
1739 shift = - first_glyph->bbox.xMin; // now text line starts exactly at 0 (left margin) | |
1740 if (halign == HALIGN_LEFT) { // left aligned, no action | |
1741 } else if (halign == HALIGN_RIGHT) { // right aligned | |
1742 shift = max_text_width - width; | |
1743 } else if (halign == HALIGN_CENTER) { // centered | |
1744 shift = (max_text_width - width) / 2; | |
1745 } | |
1746 for (j = last_break + 1; j < i; ++j) { | |
1747 text_info.glyphs[j].pos.x += shift; | |
1748 } | |
1749 last_break = i - 1; | |
18937 | 1750 } |
1751 } | |
19932
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1752 } else { // render_context.evt_type == EVENT_HSCROLL |
0b5b9cbbc74e
Move calculation of text parameters (number of lines, height, etc.) from
eugeni
parents:
19931
diff
changeset
|
1753 measure_text(); |
18937 | 1754 } |
1755 | |
1756 // determing text bounding box | |
1757 compute_string_bbox(&text_info, &bbox); | |
1758 | |
1759 // determine device coordinates for text | |
19556 | 1760 |
1761 // x coordinate for everything except positioned events | |
1762 if (render_context.evt_type == EVENT_NORMAL || | |
1763 render_context.evt_type == EVENT_VSCROLL) { | |
1764 device_x = x2scr(MarginL); | |
1765 } else if (render_context.evt_type == EVENT_HSCROLL) { | |
1766 if (render_context.scroll_direction == SCROLL_RL) | |
1767 device_x = x2scr(frame_context.track->PlayResX - render_context.scroll_shift); | |
1768 else if (render_context.scroll_direction == SCROLL_LR) | |
1769 device_x = x2scr(render_context.scroll_shift) - (bbox.xMax - bbox.xMin); | |
1770 } | |
18937 | 1771 |
19556 | 1772 // y coordinate for everything except positioned events |
1773 if (render_context.evt_type == EVENT_NORMAL || | |
1774 render_context.evt_type == EVENT_HSCROLL) { | |
18937 | 1775 if (valign == VALIGN_TOP) { // toptitle |
1776 device_y = y2scr_top(MarginV) + (text_info.lines[0].asc >> 6); | |
1777 } else if (valign == VALIGN_CENTER) { // midtitle | |
1778 int scr_y = y2scr(frame_context.track->PlayResY / 2); | |
1779 device_y = scr_y - (bbox.yMax - bbox.yMin) / 2; | |
1780 } else { // subtitle | |
1781 int scr_y; | |
1782 if (valign != VALIGN_SUB) | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1783 mp_msg(MSGT_ASS, MSGL_V, "Invalid valign, supposing 0 (subtitle)\n"); |
18937 | 1784 scr_y = y2scr_sub(frame_context.track->PlayResY - MarginV); |
1785 device_y = scr_y; | |
1786 device_y -= (text_info.height >> 6); | |
1787 device_y += (text_info.lines[0].asc >> 6); | |
1788 } | |
19556 | 1789 } else if (render_context.evt_type == EVENT_VSCROLL) { |
1790 if (render_context.scroll_direction == SCROLL_TB) | |
1791 device_y = y2scr(render_context.clip_y0 + render_context.scroll_shift) - (bbox.yMax - bbox.yMin); | |
1792 else if (render_context.scroll_direction == SCROLL_BT) | |
1793 device_y = y2scr(render_context.clip_y1 - render_context.scroll_shift); | |
1794 } | |
1795 | |
1796 // positioned events are totally different | |
1797 if (render_context.evt_type == EVENT_POSITIONED) { | |
20294
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1798 int base_x = 0; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1799 int base_y = 0; |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
1800 mp_msg(MSGT_ASS, MSGL_DBG2, "positioned event at %d, %d\n", render_context.pos_x, render_context.pos_y); |
20294
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1801 get_base_point(bbox, alignment, &base_x, &base_y); |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1802 device_x = x2scr(render_context.pos_x) - base_x; |
4d7c8478e523
Move base point calculation to a separate function. Will be reused soon.
eugeni
parents:
20293
diff
changeset
|
1803 device_y = y2scr(render_context.pos_y) - base_y; |
18937 | 1804 } |
1805 | |
1806 // fix clip coordinates (they depend on alignment) | |
1807 render_context.clip_x0 = x2scr(render_context.clip_x0); | |
1808 render_context.clip_x1 = x2scr(render_context.clip_x1); | |
19556 | 1809 if (render_context.evt_type == EVENT_NORMAL || |
1810 render_context.evt_type == EVENT_HSCROLL || | |
1811 render_context.evt_type == EVENT_VSCROLL) { | |
18937 | 1812 if (valign == VALIGN_TOP) { |
1813 render_context.clip_y0 = y2scr_top(render_context.clip_y0); | |
1814 render_context.clip_y1 = y2scr_top(render_context.clip_y1); | |
1815 } else if (valign == VALIGN_CENTER) { | |
1816 render_context.clip_y0 = y2scr(render_context.clip_y0); | |
1817 render_context.clip_y1 = y2scr(render_context.clip_y1); | |
1818 } else if (valign == VALIGN_SUB) { | |
1819 render_context.clip_y0 = y2scr_sub(render_context.clip_y0); | |
1820 render_context.clip_y1 = y2scr_sub(render_context.clip_y1); | |
1821 } | |
1822 } else if (render_context.evt_type == EVENT_POSITIONED) { | |
1823 render_context.clip_y0 = y2scr(render_context.clip_y0); | |
1824 render_context.clip_y1 = y2scr(render_context.clip_y1); | |
1825 } | |
1826 | |
1827 // rotate glyphs if needed | |
20295 | 1828 { |
1829 double angle = 0.; | |
18937 | 1830 FT_Vector center; |
1831 FT_Matrix matrix_rotate; | |
1832 | |
1833 if (((render_context.org_x != 0) || (render_context.org_y != 0)) && (render_context.evt_type == EVENT_POSITIONED)) { | |
1834 center.x = render_context.org_x; | |
1835 center.y = render_context.org_y; | |
1836 } else { | |
20296 | 1837 int bx, by; |
20302
2f7c26c86574
Fix center of rotation calculation. It was overly complex and
eugeni
parents:
20296
diff
changeset
|
1838 get_base_point(bbox, alignment, &bx, &by); |
2f7c26c86574
Fix center of rotation calculation. It was overly complex and
eugeni
parents:
20296
diff
changeset
|
1839 center.x = device_x + bx; |
2f7c26c86574
Fix center of rotation calculation. It was overly complex and
eugeni
parents:
20296
diff
changeset
|
1840 center.y = device_y + by; |
18937 | 1841 } |
1842 | |
1843 for (i = 0; i < text_info.length; ++i) { | |
20295 | 1844 FT_Vector start; |
1845 FT_Vector start_old; | |
18937 | 1846 glyph_info_t* info = text_info.glyphs + i; |
1847 | |
20295 | 1848 if (info->frz < 0.00001 && info->frz > -0.00001) |
1849 continue; | |
1850 | |
1851 if (info->frz != angle) { | |
1852 angle = info->frz; | |
1853 matrix_rotate.xx = (FT_Fixed)( cos( angle ) * 0x10000L ); | |
1854 matrix_rotate.xy = (FT_Fixed)( -sin( angle ) * 0x10000L ); | |
1855 matrix_rotate.yx = (FT_Fixed)( sin( angle ) * 0x10000L ); | |
1856 matrix_rotate.yy = (FT_Fixed)( cos( angle ) * 0x10000L ); | |
1857 } | |
1858 | |
18937 | 1859 // calculating shift vector |
1860 // shift = (position - center)*M - (position - center) | |
1861 start.x = (info->pos.x + device_x - center.x) << 6; | |
1862 start.y = - (info->pos.y + device_y - center.y) << 6; | |
1863 start_old.x = start.x; | |
1864 start_old.y = start.y; | |
1865 | |
1866 FT_Vector_Transform(&start, &matrix_rotate); | |
1867 | |
1868 start.x -= start_old.x; | |
1869 start.y -= start_old.y; | |
1870 | |
1871 info->pos.x += start.x >> 6; | |
1872 info->pos.y -= start.y >> 6; | |
1873 | |
19873 | 1874 if (info->glyph) |
18937 | 1875 FT_Glyph_Transform( info->glyph, &matrix_rotate, 0 ); |
19873 | 1876 if (info->outline_glyph) |
18937 | 1877 FT_Glyph_Transform( info->outline_glyph, &matrix_rotate, 0 ); |
1878 } | |
1879 } | |
1880 | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1881 event_images->top = device_y - (text_info.lines[0].asc >> 6); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1882 event_images->height = text_info.height >> 6; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1883 event_images->detect_collisions = render_context.detect_collisions; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1884 event_images->shift_direction = (valign == VALIGN_TOP) ? 1 : -1; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1885 event_images->event = event; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1886 event_images->imgs = render_text(&text_info, device_x, device_y); |
18937 | 1887 |
1888 free_render_context(); | |
1889 | |
1890 return 0; | |
1891 } | |
1892 | |
20477 | 1893 static void ass_reconfigure(ass_renderer_t* priv) |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1894 { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1895 priv->render_id = ++last_render_id; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1896 ass_glyph_cache_reset(); |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1897 } |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1898 |
20477 | 1899 void ass_set_frame_size(ass_renderer_t* priv, int w, int h) |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1900 { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1901 if (priv->settings.frame_width != w || priv->settings.frame_height != h) { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1902 priv->settings.frame_width = w; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1903 priv->settings.frame_height = h; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1904 if (priv->settings.aspect == 0.) |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1905 priv->settings.aspect = ((double)w) / h; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1906 ass_reconfigure(priv); |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1907 } |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1908 } |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1909 |
20477 | 1910 void ass_set_margins(ass_renderer_t* priv, int t, int b, int l, int r) |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1911 { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1912 if (priv->settings.left_margin != l || |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1913 priv->settings.right_margin != r || |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1914 priv->settings.top_margin != t || |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1915 priv->settings.bottom_margin != b) { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1916 priv->settings.left_margin = l; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1917 priv->settings.right_margin = r; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1918 priv->settings.top_margin = t; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1919 priv->settings.bottom_margin = b; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1920 ass_reconfigure(priv); |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1921 } |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1922 } |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1923 |
20477 | 1924 void ass_set_use_margins(ass_renderer_t* priv, int use) |
18937 | 1925 { |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1926 priv->settings.use_margins = use; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1927 } |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1928 |
20477 | 1929 void ass_set_aspect_ratio(ass_renderer_t* priv, double ar) |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1930 { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1931 if (priv->settings.aspect != ar) { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1932 priv->settings.aspect = ar; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1933 ass_reconfigure(priv); |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1934 } |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1935 } |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1936 |
20477 | 1937 void ass_set_font_scale(ass_renderer_t* priv, double font_scale) |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1938 { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1939 if (priv->settings.font_size_coeff != font_scale) { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1940 priv->settings.font_size_coeff = font_scale; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1941 ass_reconfigure(priv); |
19539 | 1942 } |
18937 | 1943 } |
1944 | |
20477 | 1945 int ass_set_fonts(ass_renderer_t* priv, const char* default_font, const char* default_family) |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1946 { |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1947 if (priv->settings.default_font) |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1948 free(priv->settings.default_font); |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1949 if (priv->settings.default_family) |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1950 free(priv->settings.default_family); |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1951 |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1952 priv->settings.default_font = default_font ? strdup(default_font) : 0; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1953 priv->settings.default_family = default_family ? strdup(default_family) : 0; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1954 |
20451 | 1955 if (priv->fontconfig_priv) |
1956 fontconfig_done(priv->fontconfig_priv); | |
20477 | 1957 priv->fontconfig_priv = fontconfig_init(priv->library->fonts_dir, default_family, default_font); |
20446
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1958 |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1959 return !!priv->fontconfig_priv; |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1960 } |
e8adc3778348
Split ass_configure() into several smaller functions.
eugeni
parents:
20320
diff
changeset
|
1961 |
18937 | 1962 /** |
1963 * \brief Start a new frame | |
1964 */ | |
20477 | 1965 static int ass_start_frame(ass_renderer_t *priv, ass_track_t* track, long long now) |
18937 | 1966 { |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1967 ass_image_t* img; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1968 |
20477 | 1969 ass_renderer = priv; |
18937 | 1970 global_settings = &priv->settings; |
1971 | |
1972 if (!priv->settings.frame_width && !priv->settings.frame_height) | |
1973 return 1; // library not initialized | |
1974 | |
1975 frame_context.ass_priv = priv; | |
1976 frame_context.width = global_settings->frame_width; | |
1977 frame_context.height = global_settings->frame_height; | |
19538 | 1978 frame_context.orig_width = global_settings->frame_width - global_settings->left_margin - global_settings->right_margin; |
18937 | 1979 frame_context.orig_height = global_settings->frame_height - global_settings->top_margin - global_settings->bottom_margin; |
1980 frame_context.track = track; | |
1981 frame_context.time = now; | |
1982 | |
1983 ass_lazy_track_init(); | |
1984 | |
19825
f351a3fc3e42
Make font outline width proportional to movie resolution.
eugeni
parents:
19716
diff
changeset
|
1985 frame_context.font_scale = global_settings->font_size_coeff * ass_internal_font_size_coeff * |
f351a3fc3e42
Make font outline width proportional to movie resolution.
eugeni
parents:
19716
diff
changeset
|
1986 frame_context.orig_height / frame_context.track->PlayResY; |
19917
6a31849e2b80
In r19831, font size multiplier was mistakenly applied to border width.
eugeni
parents:
19906
diff
changeset
|
1987 frame_context.border_scale = ((double)frame_context.orig_height) / frame_context.track->PlayResY; |
19825
f351a3fc3e42
Make font outline width proportional to movie resolution.
eugeni
parents:
19716
diff
changeset
|
1988 |
20497 | 1989 if (frame_context.orig_width * track->PlayResY == frame_context.orig_height * track->PlayResX) |
18937 | 1990 frame_context.font_scale_x = 1.; |
1991 else | |
19566 | 1992 frame_context.font_scale_x = ((double)(frame_context.orig_width * track->PlayResY)) / (frame_context.orig_height * track->PlayResX); |
18937 | 1993 |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1994 img = priv->images_root; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1995 while (img) { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1996 ass_image_t* next = img->next; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1997 free(img); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1998 img = next; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
1999 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2000 priv->images_root = 0; |
18937 | 2001 |
2002 return 0; | |
2003 } | |
2004 | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2005 static int cmp_event_layer(const void* p1, const void* p2) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2006 { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2007 ass_event_t* e1 = ((event_images_t*)p1)->event; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2008 ass_event_t* e2 = ((event_images_t*)p2)->event; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2009 if (e1->Layer < e2->Layer) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2010 return -1; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2011 if (e1->Layer > e2->Layer) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2012 return 1; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2013 if (e1->Start < e2->Start) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2014 return -1; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2015 if (e1->Start > e2->Start) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2016 return 1; |
19906
f72c694ee566
Sort events by ReadOrder (if both layer and start time are equal).
eugeni
parents:
19904
diff
changeset
|
2017 if (e1->ReadOrder < e2->ReadOrder) |
f72c694ee566
Sort events by ReadOrder (if both layer and start time are equal).
eugeni
parents:
19904
diff
changeset
|
2018 return -1; |
f72c694ee566
Sort events by ReadOrder (if both layer and start time are equal).
eugeni
parents:
19904
diff
changeset
|
2019 if (e1->ReadOrder > e2->ReadOrder) |
f72c694ee566
Sort events by ReadOrder (if both layer and start time are equal).
eugeni
parents:
19904
diff
changeset
|
2020 return 1; |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2021 return 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2022 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2023 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2024 #define MAX_EVENTS 100 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2025 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2026 static render_priv_t* get_render_priv(ass_event_t* event) |
18937 | 2027 { |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2028 if (!event->render_priv) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2029 event->render_priv = calloc(1, sizeof(render_priv_t)); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2030 // FIXME: check render_id |
20477 | 2031 if (ass_renderer->render_id != event->render_priv->render_id) { |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2032 memset(event->render_priv, 0, sizeof(render_priv_t)); |
20477 | 2033 event->render_priv->render_id = ass_renderer->render_id; |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2034 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2035 return event->render_priv; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2036 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2037 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2038 typedef struct segment_s { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2039 int a, b; // top and height |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2040 } segment_t; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2041 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2042 static int overlap(segment_t* s1, segment_t* s2) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2043 { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2044 if (s1->a >= s2->b || s2->a >= s1->b) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2045 return 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2046 return 1; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2047 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2048 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2049 static int cmp_segment(const void* p1, const void* p2) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2050 { |
20291 | 2051 return ((segment_t*)p1)->a - ((segment_t*)p2)->a; |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2052 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2053 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2054 static void shift_event(event_images_t* ei, int shift) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2055 { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2056 ass_image_t* cur = ei->imgs; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2057 while (cur) { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2058 cur->dst_y += shift; |
19664
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2059 // clip top and bottom |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2060 if (cur->dst_y < 0) { |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2061 int clip = - cur->dst_y; |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2062 cur->h -= clip; |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2063 cur->bitmap += clip * cur->stride; |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2064 cur->dst_y = 0; |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2065 } |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2066 if (cur->dst_y + cur->h >= frame_context.height) { |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2067 int clip = cur->dst_y + cur->h - frame_context.height; |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2068 cur->h -= clip; |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2069 } |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2070 if (cur->h <= 0) { |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2071 cur->h = 0; |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2072 cur->dst_y = 0; |
f6badf921e82
Add vertical clipping for subtitles that were moved because of a collision.
eugeni
parents:
19663
diff
changeset
|
2073 } |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2074 cur = cur->next; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2075 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2076 ei->top += shift; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2077 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2078 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2079 // dir: 1 - move down |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2080 // -1 - move up |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2081 static int fit_segment(segment_t* s, segment_t* fixed, int* cnt, int dir) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2082 { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2083 int i; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2084 int shift; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2085 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2086 if (*cnt == 0) { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2087 *cnt = 1; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2088 fixed[0].a = s->a; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2089 fixed[0].b = s->b; |
18937 | 2090 return 0; |
2091 } | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2092 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2093 if (dir == 1) { // move down |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2094 if (s->b <= fixed[0].a) // all ok |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2095 return 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2096 for (i = 0; i < *cnt; ++i) { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2097 shift = fixed[i].b - s->a; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2098 if (i == *cnt - 1 || fixed[i+1].a >= shift + s->b) { // here is a good place |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2099 fixed[i].b += s->b - s->a; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2100 return shift; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2101 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2102 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2103 } else { // dir == -1, move up |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2104 if (s->a >= fixed[*cnt-1].b) // all ok |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2105 return 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2106 for (i = *cnt-1; i >= 0; --i) { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2107 shift = fixed[i].a - s->b; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2108 if (i == 0 || fixed[i-1].b <= shift + s->a) { // here is a good place |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2109 fixed[i].a -= s->b - s->a; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2110 return shift; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2111 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2112 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2113 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2114 assert(0); // unreachable |
18937 | 2115 } |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2116 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2117 static void fix_collisions(event_images_t* imgs, int cnt) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2118 { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2119 segment_t used[MAX_EVENTS]; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2120 int cnt_used = 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2121 int i, j; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2122 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2123 // fill used[] with fixed events |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2124 for (i = 0; i < cnt; ++i) { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2125 render_priv_t* priv; |
20779
1721569b4d7d
s/break/continue/. A crazy mistake, somehow unnoticed for more that 2 months.
eugeni
parents:
20718
diff
changeset
|
2126 if (!imgs[i].detect_collisions) continue; |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2127 priv = get_render_priv(imgs[i].event); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2128 if (priv->height > 0) { // it's a fixed event |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2129 segment_t s; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2130 s.a = priv->top; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2131 s.b = priv->top + priv->height; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2132 if (priv->height != imgs[i].height) { // no, it's not |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
2133 mp_msg(MSGT_ASS, MSGL_WARN, "Achtung! Event height has changed! \n"); |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2134 priv->top = 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2135 priv->height = 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2136 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2137 for (j = 0; j < cnt_used; ++j) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2138 if (overlap(&s, used + j)) { // no, it's not |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2139 priv->top = 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2140 priv->height = 0; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2141 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2142 if (priv->height > 0) { // still a fixed event |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2143 used[cnt_used].a = priv->top; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2144 used[cnt_used].b = priv->top + priv->height; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2145 cnt_used ++; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2146 shift_event(imgs + i, priv->top - imgs[i].top); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2147 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2148 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2149 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2150 qsort(used, cnt_used, sizeof(segment_t), cmp_segment); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2151 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2152 // try to fit other events in free spaces |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2153 for (i = 0; i < cnt; ++i) { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2154 render_priv_t* priv; |
20779
1721569b4d7d
s/break/continue/. A crazy mistake, somehow unnoticed for more that 2 months.
eugeni
parents:
20718
diff
changeset
|
2155 if (!imgs[i].detect_collisions) continue; |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2156 priv = get_render_priv(imgs[i].event); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2157 if (priv->height == 0) { // not a fixed event |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2158 int shift; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2159 segment_t s; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2160 s.a = imgs[i].top; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2161 s.b = imgs[i].top + imgs[i].height; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2162 shift = fit_segment(&s, used, &cnt_used, imgs[i].shift_direction); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2163 if (shift) shift_event(imgs + i, shift); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2164 // make it fixed |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2165 priv->top = imgs[i].top; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2166 priv->height = imgs[i].height; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2167 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2168 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2169 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2170 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2171 |
18937 | 2172 /** |
2173 * \brief render a frame | |
2174 * \param priv library handle | |
2175 * \param track track | |
2176 * \param now current video timestamp (ms) | |
2177 */ | |
20477 | 2178 ass_image_t* ass_render_frame(ass_renderer_t *priv, ass_track_t* track, long long now) |
18937 | 2179 { |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2180 int i, cnt, rc; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2181 event_images_t eimg[MAX_EVENTS]; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2182 event_images_t* last; |
19891 | 2183 ass_image_t** tail; |
18937 | 2184 |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2185 // init frame |
18937 | 2186 rc = ass_start_frame(priv, track, now); |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2187 if (rc != 0) |
18937 | 2188 return 0; |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2189 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2190 // render events separately |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2191 cnt = 0; |
18937 | 2192 for (i = 0; i < track->n_events; ++i) { |
2193 ass_event_t* event = track->events + i; | |
2194 if ( (event->Start <= now) && (now < (event->Start + event->Duration)) ) { | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2195 if (cnt < MAX_EVENTS) { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2196 rc = ass_render_event(event, eimg + cnt); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2197 if (!rc) ++cnt; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2198 } else { |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20503
diff
changeset
|
2199 mp_msg(MSGT_ASS, MSGL_WARN, "Too many simultaneous events \n"); |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2200 break; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2201 } |
18937 | 2202 } |
2203 } | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2204 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2205 // sort by layer |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2206 qsort(eimg, cnt, sizeof(event_images_t), cmp_event_layer); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2207 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2208 // call fix_collisions for each group of events with the same layer |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2209 last = eimg; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2210 for (i = 1; i < cnt; ++i) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2211 if (last->event->Layer != eimg[i].event->Layer) { |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2212 fix_collisions(last, eimg + i - last); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2213 last = eimg + i; |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2214 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2215 if (cnt > 0) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2216 fix_collisions(last, eimg + cnt - last); |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2217 |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2218 // concat lists |
20477 | 2219 tail = &ass_renderer->images_root; |
19891 | 2220 for (i = 0; i < cnt; ++i) { |
2221 ass_image_t* cur = eimg[i].imgs; | |
2222 while (cur) { | |
2223 *tail = cur; | |
2224 tail = &cur->next; | |
2225 cur = cur->next; | |
2226 } | |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2227 } |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19636
diff
changeset
|
2228 |
20477 | 2229 return ass_renderer->images_root; |
18937 | 2230 } |
2231 |