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