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