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