test: separate linker flags
[libass.git] / libass / ass_render.c
blob603ec15448b18e520b718f9665e7cacae8fa644e
1 /*
2 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
4 * This file is part of libass.
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include "config.h"
21 #include <assert.h>
22 #include <math.h>
24 #include "ass_render.h"
25 #include "ass_parse.h"
26 #include "ass_shaper.h"
28 #define MAX_GLYPHS_INITIAL 1024
29 #define MAX_LINES_INITIAL 64
30 #define SUBPIXEL_MASK 63
31 #define SUBPIXEL_ACCURACY 7
33 ASS_Renderer *ass_renderer_init(ASS_Library *library)
35 int error;
36 FT_Library ft;
37 ASS_Renderer *priv = 0;
38 int vmajor, vminor, vpatch;
40 error = FT_Init_FreeType(&ft);
41 if (error) {
42 ass_msg(library, MSGL_FATAL, "%s failed", "FT_Init_FreeType");
43 goto ass_init_exit;
46 FT_Library_Version(ft, &vmajor, &vminor, &vpatch);
47 ass_msg(library, MSGL_V, "Raster: FreeType %d.%d.%d",
48 vmajor, vminor, vpatch);
50 priv = calloc(1, sizeof(ASS_Renderer));
51 if (!priv) {
52 FT_Done_FreeType(ft);
53 goto ass_init_exit;
56 priv->synth_priv = ass_synth_init(BLUR_MAX_RADIUS);
58 priv->library = library;
59 priv->ftlibrary = ft;
60 // images_root and related stuff is zero-filled in calloc
62 priv->cache.font_cache = ass_font_cache_create();
63 priv->cache.bitmap_cache = ass_bitmap_cache_create();
64 priv->cache.composite_cache = ass_composite_cache_create();
65 priv->cache.outline_cache = ass_outline_cache_create();
66 priv->cache.glyph_max = GLYPH_CACHE_MAX;
67 priv->cache.bitmap_max_size = BITMAP_CACHE_MAX_SIZE;
69 priv->text_info.max_glyphs = MAX_GLYPHS_INITIAL;
70 priv->text_info.max_lines = MAX_LINES_INITIAL;
71 priv->text_info.glyphs = calloc(MAX_GLYPHS_INITIAL, sizeof(GlyphInfo));
72 priv->text_info.lines = calloc(MAX_LINES_INITIAL, sizeof(LineInfo));
74 priv->settings.font_size_coeff = 1.;
76 priv->shaper = ass_shaper_new(0);
77 ass_shaper_info(library);
78 #ifdef CONFIG_HARFBUZZ
79 priv->settings.shaper = ASS_SHAPING_COMPLEX;
80 #else
81 priv->settings.shaper = ASS_SHAPING_SIMPLE;
82 #endif
84 ass_init_exit:
85 if (priv)
86 ass_msg(library, MSGL_V, "Initialized");
87 else
88 ass_msg(library, MSGL_ERR, "Initialization failed");
90 return priv;
93 static void free_list_clear(ASS_Renderer *render_priv)
95 if (render_priv->free_head) {
96 FreeList *item = render_priv->free_head;
97 while(item) {
98 FreeList *oi = item;
99 free(item->object);
100 item = item->next;
101 free(oi);
103 render_priv->free_head = NULL;
107 void ass_renderer_done(ASS_Renderer *render_priv)
109 ass_cache_done(render_priv->cache.font_cache);
110 ass_cache_done(render_priv->cache.bitmap_cache);
111 ass_cache_done(render_priv->cache.composite_cache);
112 ass_cache_done(render_priv->cache.outline_cache);
114 ass_free_images(render_priv->images_root);
115 ass_free_images(render_priv->prev_images_root);
117 if (render_priv->state.stroker) {
118 FT_Stroker_Done(render_priv->state.stroker);
119 render_priv->state.stroker = 0;
121 if (render_priv->ftlibrary)
122 FT_Done_FreeType(render_priv->ftlibrary);
123 if (render_priv->fontconfig_priv)
124 fontconfig_done(render_priv->fontconfig_priv);
125 if (render_priv->synth_priv)
126 ass_synth_done(render_priv->synth_priv);
127 ass_shaper_free(render_priv->shaper);
128 free(render_priv->eimg);
129 free(render_priv->text_info.glyphs);
130 free(render_priv->text_info.lines);
132 free(render_priv->settings.default_font);
133 free(render_priv->settings.default_family);
135 free_list_clear(render_priv);
136 free(render_priv);
140 * \brief Create a new ASS_Image
141 * Parameters are the same as ASS_Image fields.
143 static ASS_Image *my_draw_bitmap(unsigned char *bitmap, int bitmap_w,
144 int bitmap_h, int stride, int dst_x,
145 int dst_y, uint32_t color)
147 ASS_Image *img = malloc(sizeof(ASS_Image));
149 if (img) {
150 img->w = bitmap_w;
151 img->h = bitmap_h;
152 img->stride = stride;
153 img->bitmap = bitmap;
154 img->color = color;
155 img->dst_x = dst_x;
156 img->dst_y = dst_y;
159 return img;
163 * \brief Mapping between script and screen coordinates
165 static double x2scr(ASS_Renderer *render_priv, double x)
167 return x * render_priv->orig_width_nocrop / render_priv->font_scale_x /
168 render_priv->track->PlayResX +
169 FFMAX(render_priv->settings.left_margin, 0);
171 static double x2scr_pos(ASS_Renderer *render_priv, double x)
173 return x * render_priv->orig_width / render_priv->font_scale_x / render_priv->track->PlayResX +
174 render_priv->settings.left_margin;
176 static double x2scr_scaled(ASS_Renderer *render_priv, double x)
178 return x * render_priv->orig_width_nocrop /
179 render_priv->track->PlayResX +
180 FFMAX(render_priv->settings.left_margin, 0);
182 static double x2scr_pos_scaled(ASS_Renderer *render_priv, double x)
184 return x * render_priv->orig_width / render_priv->track->PlayResX +
185 render_priv->settings.left_margin;
188 * \brief Mapping between script and screen coordinates
190 static double y2scr(ASS_Renderer *render_priv, double y)
192 return y * render_priv->orig_height_nocrop /
193 render_priv->track->PlayResY +
194 FFMAX(render_priv->settings.top_margin, 0);
196 static double y2scr_pos(ASS_Renderer *render_priv, double y)
198 return y * render_priv->orig_height / render_priv->track->PlayResY +
199 render_priv->settings.top_margin;
202 // the same for toptitles
203 static double y2scr_top(ASS_Renderer *render_priv, double y)
205 if (render_priv->settings.use_margins)
206 return y * render_priv->orig_height_nocrop /
207 render_priv->track->PlayResY;
208 else
209 return y * render_priv->orig_height_nocrop /
210 render_priv->track->PlayResY +
211 FFMAX(render_priv->settings.top_margin, 0);
213 // the same for subtitles
214 static double y2scr_sub(ASS_Renderer *render_priv, double y)
216 if (render_priv->settings.use_margins)
217 return y * render_priv->orig_height_nocrop /
218 render_priv->track->PlayResY +
219 FFMAX(render_priv->settings.top_margin, 0)
220 + FFMAX(render_priv->settings.bottom_margin, 0);
221 else
222 return y * render_priv->orig_height_nocrop /
223 render_priv->track->PlayResY +
224 FFMAX(render_priv->settings.top_margin, 0);
228 * \brief Convert bitmap glyphs into ASS_Image list with inverse clipping
230 * Inverse clipping with the following strategy:
231 * - find rectangle from (x0, y0) to (cx0, y1)
232 * - find rectangle from (cx0, y0) to (cx1, cy0)
233 * - find rectangle from (cx0, cy1) to (cx1, y1)
234 * - find rectangle from (cx1, y0) to (x1, y1)
235 * These rectangles can be invalid and in this case are discarded.
236 * Afterwards, they are clipped against the screen coordinates.
237 * In an additional pass, the rectangles need to be split up left/right for
238 * karaoke effects. This can result in a lot of bitmaps (6 to be exact).
240 static ASS_Image **render_glyph_i(ASS_Renderer *render_priv,
241 Bitmap *bm, int dst_x, int dst_y,
242 uint32_t color, uint32_t color2, int brk,
243 ASS_Image **tail)
245 int i, j, x0, y0, x1, y1, cx0, cy0, cx1, cy1, sx, sy, zx, zy;
246 Rect r[4];
247 ASS_Image *img;
249 dst_x += bm->left;
250 dst_y += bm->top;
252 // we still need to clip against screen boundaries
253 zx = x2scr_pos_scaled(render_priv, 0);
254 zy = y2scr_pos(render_priv, 0);
255 sx = x2scr_pos_scaled(render_priv, render_priv->track->PlayResX);
256 sy = y2scr_pos(render_priv, render_priv->track->PlayResY);
258 x0 = 0;
259 y0 = 0;
260 x1 = bm->w;
261 y1 = bm->h;
262 cx0 = render_priv->state.clip_x0 - dst_x;
263 cy0 = render_priv->state.clip_y0 - dst_y;
264 cx1 = render_priv->state.clip_x1 - dst_x;
265 cy1 = render_priv->state.clip_y1 - dst_y;
267 // calculate rectangles and discard invalid ones while we're at it.
268 i = 0;
269 r[i].x0 = x0;
270 r[i].y0 = y0;
271 r[i].x1 = (cx0 > x1) ? x1 : cx0;
272 r[i].y1 = y1;
273 if (r[i].x1 > r[i].x0 && r[i].y1 > r[i].y0) i++;
274 r[i].x0 = (cx0 < 0) ? x0 : cx0;
275 r[i].y0 = y0;
276 r[i].x1 = (cx1 > x1) ? x1 : cx1;
277 r[i].y1 = (cy0 > y1) ? y1 : cy0;
278 if (r[i].x1 > r[i].x0 && r[i].y1 > r[i].y0) i++;
279 r[i].x0 = (cx0 < 0) ? x0 : cx0;
280 r[i].y0 = (cy1 < 0) ? y0 : cy1;
281 r[i].x1 = (cx1 > x1) ? x1 : cx1;
282 r[i].y1 = y1;
283 if (r[i].x1 > r[i].x0 && r[i].y1 > r[i].y0) i++;
284 r[i].x0 = (cx1 < 0) ? x0 : cx1;
285 r[i].y0 = y0;
286 r[i].x1 = x1;
287 r[i].y1 = y1;
288 if (r[i].x1 > r[i].x0 && r[i].y1 > r[i].y0) i++;
290 // clip each rectangle to screen coordinates
291 for (j = 0; j < i; j++) {
292 r[j].x0 = (r[j].x0 + dst_x < zx) ? zx - dst_x : r[j].x0;
293 r[j].y0 = (r[j].y0 + dst_y < zy) ? zy - dst_y : r[j].y0;
294 r[j].x1 = (r[j].x1 + dst_x > sx) ? sx - dst_x : r[j].x1;
295 r[j].y1 = (r[j].y1 + dst_y > sy) ? sy - dst_y : r[j].y1;
298 // draw the rectangles
299 for (j = 0; j < i; j++) {
300 int lbrk = brk;
301 // kick out rectangles that are invalid now
302 if (r[j].x1 <= r[j].x0 || r[j].y1 <= r[j].y0)
303 continue;
304 // split up into left and right for karaoke, if needed
305 if (lbrk > r[j].x0) {
306 if (lbrk > r[j].x1) lbrk = r[j].x1;
307 img = my_draw_bitmap(bm->buffer + r[j].y0 * bm->stride + r[j].x0,
308 lbrk - r[j].x0, r[j].y1 - r[j].y0,
309 bm->stride, dst_x + r[j].x0, dst_y + r[j].y0, color);
310 if (!img) break;
311 *tail = img;
312 tail = &img->next;
314 if (lbrk < r[j].x1) {
315 if (lbrk < r[j].x0) lbrk = r[j].x0;
316 img = my_draw_bitmap(bm->buffer + r[j].y0 * bm->stride + lbrk,
317 r[j].x1 - lbrk, r[j].y1 - r[j].y0,
318 bm->stride, dst_x + lbrk, dst_y + r[j].y0, color2);
319 if (!img) break;
320 *tail = img;
321 tail = &img->next;
325 return tail;
329 * \brief convert bitmap glyph into ASS_Image struct(s)
330 * \param bit freetype bitmap glyph, FT_PIXEL_MODE_GRAY
331 * \param dst_x bitmap x coordinate in video frame
332 * \param dst_y bitmap y coordinate in video frame
333 * \param color first color, RGBA
334 * \param color2 second color, RGBA
335 * \param brk x coordinate relative to glyph origin, color is used to the left of brk, color2 - to the right
336 * \param tail pointer to the last image's next field, head of the generated list should be stored here
337 * \return pointer to the new list tail
338 * Performs clipping. Uses my_draw_bitmap for actual bitmap convertion.
340 static ASS_Image **
341 render_glyph(ASS_Renderer *render_priv, Bitmap *bm, int dst_x, int dst_y,
342 uint32_t color, uint32_t color2, int brk, ASS_Image **tail)
344 // Inverse clipping in use?
345 if (render_priv->state.clip_mode)
346 return render_glyph_i(render_priv, bm, dst_x, dst_y, color, color2,
347 brk, tail);
349 // brk is relative to dst_x
350 // color = color left of brk
351 // color2 = color right of brk
352 int b_x0, b_y0, b_x1, b_y1; // visible part of the bitmap
353 int clip_x0, clip_y0, clip_x1, clip_y1;
354 int tmp;
355 ASS_Image *img;
357 dst_x += bm->left;
358 dst_y += bm->top;
359 brk -= bm->left;
361 // clipping
362 clip_x0 = FFMINMAX(render_priv->state.clip_x0, 0, render_priv->width);
363 clip_y0 = FFMINMAX(render_priv->state.clip_y0, 0, render_priv->height);
364 clip_x1 = FFMINMAX(render_priv->state.clip_x1, 0, render_priv->width);
365 clip_y1 = FFMINMAX(render_priv->state.clip_y1, 0, render_priv->height);
366 b_x0 = 0;
367 b_y0 = 0;
368 b_x1 = bm->w;
369 b_y1 = bm->h;
371 tmp = dst_x - clip_x0;
372 if (tmp < 0) {
373 ass_msg(render_priv->library, MSGL_DBG2, "clip left");
374 b_x0 = -tmp;
376 tmp = dst_y - clip_y0;
377 if (tmp < 0) {
378 ass_msg(render_priv->library, MSGL_DBG2, "clip top");
379 b_y0 = -tmp;
381 tmp = clip_x1 - dst_x - bm->w;
382 if (tmp < 0) {
383 ass_msg(render_priv->library, MSGL_DBG2, "clip right");
384 b_x1 = bm->w + tmp;
386 tmp = clip_y1 - dst_y - bm->h;
387 if (tmp < 0) {
388 ass_msg(render_priv->library, MSGL_DBG2, "clip bottom");
389 b_y1 = bm->h + tmp;
392 if ((b_y0 >= b_y1) || (b_x0 >= b_x1))
393 return tail;
395 if (brk > b_x0) { // draw left part
396 if (brk > b_x1)
397 brk = b_x1;
398 img = my_draw_bitmap(bm->buffer + bm->stride * b_y0 + b_x0,
399 brk - b_x0, b_y1 - b_y0, bm->stride,
400 dst_x + b_x0, dst_y + b_y0, color);
401 if (!img) return tail;
402 *tail = img;
403 tail = &img->next;
405 if (brk < b_x1) { // draw right part
406 if (brk < b_x0)
407 brk = b_x0;
408 img = my_draw_bitmap(bm->buffer + bm->stride * b_y0 + brk,
409 b_x1 - brk, b_y1 - b_y0, bm->stride,
410 dst_x + brk, dst_y + b_y0, color2);
411 if (!img) return tail;
412 *tail = img;
413 tail = &img->next;
415 return tail;
419 * \brief Replace the bitmap buffer in ASS_Image with a copy
420 * \param img ASS_Image to operate on
421 * \return pointer to old bitmap buffer
423 static unsigned char *clone_bitmap_buffer(ASS_Image *img)
425 unsigned char *old_bitmap = img->bitmap;
426 int size = img->stride * (img->h - 1) + img->w;
427 img->bitmap = malloc(size);
428 memcpy(img->bitmap, old_bitmap, size);
429 return old_bitmap;
433 * \brief Calculate overlapping area of two consecutive bitmaps and in case they
434 * overlap, blend them together
435 * Mainly useful for translucent glyphs and especially borders, to avoid the
436 * luminance adding up where they overlap (which looks ugly)
438 static void
439 render_overlap(ASS_Renderer *render_priv, ASS_Image **last_tail,
440 ASS_Image **tail)
442 int left, top, bottom, right;
443 int old_left, old_top, w, h, cur_left, cur_top;
444 int x, y, opos, cpos;
445 char m;
446 CompositeHashKey hk;
447 CompositeHashValue *hv;
448 CompositeHashValue chv;
449 int ax = (*last_tail)->dst_x;
450 int ay = (*last_tail)->dst_y;
451 int aw = (*last_tail)->w;
452 int as = (*last_tail)->stride;
453 int ah = (*last_tail)->h;
454 int bx = (*tail)->dst_x;
455 int by = (*tail)->dst_y;
456 int bw = (*tail)->w;
457 int bs = (*tail)->stride;
458 int bh = (*tail)->h;
459 unsigned char *a;
460 unsigned char *b;
462 if ((*last_tail)->bitmap == (*tail)->bitmap)
463 return;
465 if ((*last_tail)->color != (*tail)->color)
466 return;
468 // Calculate overlap coordinates
469 left = (ax > bx) ? ax : bx;
470 top = (ay > by) ? ay : by;
471 right = ((ax + aw) < (bx + bw)) ? (ax + aw) : (bx + bw);
472 bottom = ((ay + ah) < (by + bh)) ? (ay + ah) : (by + bh);
473 if ((right <= left) || (bottom <= top))
474 return;
475 old_left = left - ax;
476 old_top = top - ay;
477 w = right - left;
478 h = bottom - top;
479 cur_left = left - bx;
480 cur_top = top - by;
482 // Query cache
483 hk.a = (*last_tail)->bitmap;
484 hk.b = (*tail)->bitmap;
485 hk.aw = aw;
486 hk.ah = ah;
487 hk.bw = bw;
488 hk.bh = bh;
489 hk.ax = ax;
490 hk.ay = ay;
491 hk.bx = bx;
492 hk.by = by;
493 hk.as = as;
494 hk.bs = bs;
495 hv = ass_cache_get(render_priv->cache.composite_cache, &hk);
496 if (hv) {
497 (*last_tail)->bitmap = hv->a;
498 (*tail)->bitmap = hv->b;
499 return;
501 // Allocate new bitmaps and copy over data
502 a = clone_bitmap_buffer(*last_tail);
503 b = clone_bitmap_buffer(*tail);
505 // Blend overlapping area
506 for (y = 0; y < h; y++)
507 for (x = 0; x < w; x++) {
508 opos = (old_top + y) * (as) + (old_left + x);
509 cpos = (cur_top + y) * (bs) + (cur_left + x);
510 m = FFMIN(a[opos] + b[cpos], 0xff);
511 (*last_tail)->bitmap[opos] = 0;
512 (*tail)->bitmap[cpos] = m;
515 // Insert bitmaps into the cache
516 chv.a = (*last_tail)->bitmap;
517 chv.b = (*tail)->bitmap;
518 ass_cache_put(render_priv->cache.composite_cache, &hk, &chv);
521 static void free_list_add(ASS_Renderer *render_priv, void *object)
523 if (!render_priv->free_head) {
524 render_priv->free_head = calloc(1, sizeof(FreeList));
525 render_priv->free_head->object = object;
526 render_priv->free_tail = render_priv->free_head;
527 } else {
528 FreeList *l = calloc(1, sizeof(FreeList));
529 l->object = object;
530 render_priv->free_tail->next = l;
531 render_priv->free_tail = render_priv->free_tail->next;
536 * Iterate through a list of bitmaps and blend with clip vector, if
537 * applicable. The blended bitmaps are added to a free list which is freed
538 * at the start of a new frame.
540 static void blend_vector_clip(ASS_Renderer *render_priv,
541 ASS_Image *head)
543 FT_Outline *outline;
544 Bitmap *clip_bm = NULL;
545 ASS_Image *cur;
546 ASS_Drawing *drawing = render_priv->state.clip_drawing;
547 BitmapHashKey key;
548 BitmapHashValue *val;
549 int error;
551 if (!drawing)
552 return;
554 // Try to get mask from cache
555 memset(&key, 0, sizeof(key));
556 key.type = BITMAP_CLIP;
557 key.u.clip.text = drawing->text;
558 val = ass_cache_get(render_priv->cache.bitmap_cache, &key);
560 if (val) {
561 clip_bm = val->bm;
562 } else {
563 BitmapHashValue v;
565 // Not found in cache, parse and rasterize it
566 outline = ass_drawing_parse(drawing, 1);
567 if (!outline) {
568 ass_msg(render_priv->library, MSGL_WARN,
569 "Clip vector parsing failed. Skipping.");
570 goto blend_vector_error;
573 // We need to translate the clip according to screen borders
574 if (render_priv->settings.left_margin != 0 ||
575 render_priv->settings.top_margin != 0) {
576 FT_Vector trans = {
577 .x = int_to_d6(render_priv->settings.left_margin),
578 .y = -int_to_d6(render_priv->settings.top_margin),
580 FT_Outline_Translate(outline, trans.x, trans.y);
583 ass_msg(render_priv->library, MSGL_DBG2,
584 "Parsed vector clip: scales (%f, %f) string [%s]\n",
585 drawing->scale_x, drawing->scale_y, drawing->text);
587 clip_bm = outline_to_bitmap(render_priv->library,
588 render_priv->ftlibrary, outline, 0);
589 if (clip_bm == NULL) {
590 ass_msg(render_priv->library, MSGL_WARN,
591 "Clip vector rasterization failed: %d. Skipping.", error);
594 // Add to cache
595 memset(&v, 0, sizeof(v));
596 key.u.clip.text = strdup(drawing->text);
597 v.bm = clip_bm;
598 ass_cache_put(render_priv->cache.bitmap_cache, &key, &v);
600 blend_vector_error:
602 if (!clip_bm) goto blend_vector_exit;
604 // Iterate through bitmaps and blend/clip them
605 for (cur = head; cur; cur = cur->next) {
606 int left, top, right, bottom, apos, bpos, y, x, w, h;
607 int ax, ay, aw, ah, as;
608 int bx, by, bw, bh, bs;
609 int aleft, atop, bleft, btop;
610 unsigned char *abuffer, *bbuffer, *nbuffer;
612 abuffer = cur->bitmap;
613 bbuffer = clip_bm->buffer;
614 ax = cur->dst_x;
615 ay = cur->dst_y;
616 aw = cur->w;
617 ah = cur->h;
618 as = cur->stride;
619 bx = clip_bm->left;
620 by = clip_bm->top;
621 bw = clip_bm->w;
622 bh = clip_bm->h;
623 bs = clip_bm->stride;
625 // Calculate overlap coordinates
626 left = (ax > bx) ? ax : bx;
627 top = (ay > by) ? ay : by;
628 right = ((ax + aw) < (bx + bw)) ? (ax + aw) : (bx + bw);
629 bottom = ((ay + ah) < (by + bh)) ? (ay + ah) : (by + bh);
630 aleft = left - ax;
631 atop = top - ay;
632 w = right - left;
633 h = bottom - top;
634 bleft = left - bx;
635 btop = top - by;
637 if (render_priv->state.clip_drawing_mode) {
638 // Inverse clip
639 if (ax + aw < bx || ay + ah < by || ax > bx + bw ||
640 ay > by + bh) {
641 continue;
644 // Allocate new buffer and add to free list
645 nbuffer = malloc(as * ah);
646 if (!nbuffer) goto blend_vector_exit;
647 free_list_add(render_priv, nbuffer);
649 // Blend together
650 memcpy(nbuffer, abuffer, as * (ah - 1) + aw);
651 for (y = 0; y < h; y++)
652 for (x = 0; x < w; x++) {
653 apos = (atop + y) * as + aleft + x;
654 bpos = (btop + y) * bs + bleft + x;
655 nbuffer[apos] = FFMAX(0, abuffer[apos] - bbuffer[bpos]);
657 } else {
658 // Regular clip
659 if (ax + aw < bx || ay + ah < by || ax > bx + bw ||
660 ay > by + bh) {
661 cur->w = cur->h = 0;
662 continue;
665 // Allocate new buffer and add to free list
666 nbuffer = calloc(as, ah);
667 if (!nbuffer) goto blend_vector_exit;
668 free_list_add(render_priv, nbuffer);
670 // Blend together
671 for (y = 0; y < h; y++)
672 for (x = 0; x < w; x++) {
673 apos = (atop + y) * as + aleft + x;
674 bpos = (btop + y) * bs + bleft + x;
675 nbuffer[apos] = (abuffer[apos] * bbuffer[bpos] + 255) >> 8;
678 cur->bitmap = nbuffer;
681 blend_vector_exit:
682 ass_drawing_free(render_priv->state.clip_drawing);
683 render_priv->state.clip_drawing = 0;
687 * \brief Convert TextInfo struct to ASS_Image list
688 * Splits glyphs in halves when needed (for \kf karaoke).
690 static ASS_Image *render_text(ASS_Renderer *render_priv, int dst_x, int dst_y)
692 int pen_x, pen_y;
693 int i;
694 Bitmap *bm;
695 ASS_Image *head;
696 ASS_Image **tail = &head;
697 ASS_Image **last_tail = 0;
698 ASS_Image **here_tail = 0;
699 TextInfo *text_info = &render_priv->text_info;
701 for (i = 0; i < text_info->length; ++i) {
702 GlyphInfo *info = text_info->glyphs + i;
703 if ((info->symbol == 0) || (info->symbol == '\n') || !info->bm_s
704 || (info->shadow_x == 0 && info->shadow_y == 0) || info->skip)
705 continue;
707 while (info) {
708 if (!info->bm_s) {
709 info = info->next;
710 continue;
713 pen_x =
714 dst_x + (info->pos.x >> 6) +
715 (int) (info->shadow_x * render_priv->border_scale);
716 pen_y =
717 dst_y + (info->pos.y >> 6) +
718 (int) (info->shadow_y * render_priv->border_scale);
719 bm = info->bm_s;
721 here_tail = tail;
722 tail =
723 render_glyph(render_priv, bm, pen_x, pen_y, info->c[3], 0,
724 1000000, tail);
726 if (last_tail && tail != here_tail && ((info->c[3] & 0xff) > 0))
727 render_overlap(render_priv, last_tail, here_tail);
728 last_tail = here_tail;
730 info = info->next;
734 last_tail = 0;
735 for (i = 0; i < text_info->length; ++i) {
736 GlyphInfo *info = text_info->glyphs + i;
737 if ((info->symbol == 0) || (info->symbol == '\n') || !info->bm_o
738 || info->skip)
739 continue;
741 while (info) {
742 if (!info->bm_o) {
743 info = info->next;
744 continue;
747 pen_x = dst_x + (info->pos.x >> 6);
748 pen_y = dst_y + (info->pos.y >> 6);
749 bm = info->bm_o;
751 if ((info->effect_type == EF_KARAOKE_KO)
752 && (info->effect_timing <= (info->bbox.xMax >> 6))) {
753 // do nothing
754 } else {
755 here_tail = tail;
756 tail =
757 render_glyph(render_priv, bm, pen_x, pen_y, info->c[2],
758 0, 1000000, tail);
759 if (last_tail && tail != here_tail && ((info->c[2] & 0xff) > 0))
760 render_overlap(render_priv, last_tail, here_tail);
762 last_tail = here_tail;
764 info = info->next;
768 for (i = 0; i < text_info->length; ++i) {
769 GlyphInfo *info = text_info->glyphs + i;
770 if ((info->symbol == 0) || (info->symbol == '\n') || !info->bm
771 || info->skip)
772 continue;
774 while (info) {
775 if (!info->bm) {
776 info = info->next;
777 continue;
780 pen_x = dst_x + (info->pos.x >> 6);
781 pen_y = dst_y + (info->pos.y >> 6);
782 bm = info->bm;
784 if ((info->effect_type == EF_KARAOKE)
785 || (info->effect_type == EF_KARAOKE_KO)) {
786 if (info->effect_timing > (info->bbox.xMax >> 6))
787 tail =
788 render_glyph(render_priv, bm, pen_x, pen_y,
789 info->c[0], 0, 1000000, tail);
790 else
791 tail =
792 render_glyph(render_priv, bm, pen_x, pen_y,
793 info->c[1], 0, 1000000, tail);
794 } else if (info->effect_type == EF_KARAOKE_KF) {
795 tail =
796 render_glyph(render_priv, bm, pen_x, pen_y, info->c[0],
797 info->c[1], info->effect_timing, tail);
798 } else
799 tail =
800 render_glyph(render_priv, bm, pen_x, pen_y, info->c[0],
801 0, 1000000, tail);
802 info = info->next;
806 *tail = 0;
807 blend_vector_clip(render_priv, head);
809 return head;
812 static void compute_string_bbox(TextInfo *text, DBBox *bbox)
814 int i;
816 if (text->length > 0) {
817 bbox->xMin = 32000;
818 bbox->xMax = -32000;
819 bbox->yMin = -1 * text->lines[0].asc + d6_to_double(text->glyphs[0].pos.y);
820 bbox->yMax = text->height - text->lines[0].asc +
821 d6_to_double(text->glyphs[0].pos.y);
823 for (i = 0; i < text->length; ++i) {
824 GlyphInfo *info = text->glyphs + i;
825 if (info->skip) continue;
826 while (info) {
827 double s = d6_to_double(info->pos.x);
828 double e = s + d6_to_double(info->advance.x);
829 bbox->xMin = FFMIN(bbox->xMin, s);
830 bbox->xMax = FFMAX(bbox->xMax, e);
831 info = info->next;
834 } else
835 bbox->xMin = bbox->xMax = bbox->yMin = bbox->yMax = 0.;
839 * \brief Compute the size of the target bitmap for a run of outlines.
840 * \param run first outline of the run
841 * \param len run length
842 * \param w returns target width, in pixels
843 * \param h returns target height, in pixels
845 static void compute_run_size(GlyphInfo *run, size_t len, int *w, int *h)
847 int i;
848 FT_BBox bbox;
849 bbox.xMin = bbox.yMin = INT_MAX;
850 bbox.xMax = bbox.yMax = INT_MIN;
852 for (i = 0; i < len; i++) {
853 GlyphInfo *info = run + i;
854 if (info->skip || info->symbol == 0 || info->symbol == '\n')
855 continue;
856 bbox.xMin = FFMIN(bbox.xMin, info->pos.x + info->bbox.xMin);
857 bbox.yMin = FFMIN(bbox.yMin, info->pos.y + info->bbox.yMin);
858 bbox.xMax = FFMAX(bbox.xMax, info->pos.x + info->bbox.xMax);
859 bbox.yMax = FFMAX(bbox.yMax, info->pos.y + info->bbox.yMax);
861 bbox.xMin &= ~63;
862 bbox.yMin &= ~63;
863 bbox.xMax = (bbox.xMax + 63) & ~63;
864 bbox.yMax = (bbox.yMax + 63) & ~63;
865 *w = (bbox.xMax - bbox.xMin) >> 6;
866 *h = (bbox.yMax - bbox.yMin) >> 6;
870 * \brief partially reset render_context to style values
871 * Works like {\r}: resets some style overrides
873 void reset_render_context(ASS_Renderer *render_priv)
875 render_priv->state.c[0] = render_priv->state.style->PrimaryColour;
876 render_priv->state.c[1] = render_priv->state.style->SecondaryColour;
877 render_priv->state.c[2] = render_priv->state.style->OutlineColour;
878 render_priv->state.c[3] = render_priv->state.style->BackColour;
879 render_priv->state.flags =
880 (render_priv->state.style->Underline ? DECO_UNDERLINE : 0) |
881 (render_priv->state.style->StrikeOut ? DECO_STRIKETHROUGH : 0);
882 render_priv->state.font_size = render_priv->state.style->FontSize;
884 free(render_priv->state.family);
885 render_priv->state.family = NULL;
886 render_priv->state.family = strdup(render_priv->state.style->FontName);
887 render_priv->state.treat_family_as_pattern =
888 render_priv->state.style->treat_fontname_as_pattern;
889 render_priv->state.bold = render_priv->state.style->Bold;
890 render_priv->state.italic = render_priv->state.style->Italic;
891 update_font(render_priv);
893 change_border(render_priv, -1., -1.);
894 render_priv->state.scale_x = render_priv->state.style->ScaleX;
895 render_priv->state.scale_y = render_priv->state.style->ScaleY;
896 render_priv->state.hspacing = render_priv->state.style->Spacing;
897 render_priv->state.be = 0;
898 render_priv->state.blur = 0.0;
899 render_priv->state.shadow_x = render_priv->state.style->Shadow;
900 render_priv->state.shadow_y = render_priv->state.style->Shadow;
901 render_priv->state.frx = render_priv->state.fry = 0.;
902 render_priv->state.frz = M_PI * render_priv->state.style->Angle / 180.;
903 render_priv->state.fax = render_priv->state.fay = 0.;
904 render_priv->state.wrap_style = render_priv->track->WrapStyle;
905 render_priv->state.font_encoding = render_priv->state.style->Encoding;
909 * \brief Start new event. Reset render_priv->state.
911 static void
912 init_render_context(ASS_Renderer *render_priv, ASS_Event *event)
914 render_priv->state.event = event;
915 render_priv->state.style = render_priv->track->styles + event->Style;
916 render_priv->state.parsed_tags = 0;
918 reset_render_context(render_priv);
920 render_priv->state.evt_type = EVENT_NORMAL;
921 render_priv->state.alignment = render_priv->state.style->Alignment;
922 render_priv->state.pos_x = 0;
923 render_priv->state.pos_y = 0;
924 render_priv->state.org_x = 0;
925 render_priv->state.org_y = 0;
926 render_priv->state.have_origin = 0;
927 render_priv->state.clip_x0 = 0;
928 render_priv->state.clip_y0 = 0;
929 render_priv->state.clip_x1 = render_priv->track->PlayResX;
930 render_priv->state.clip_y1 = render_priv->track->PlayResY;
931 render_priv->state.clip_mode = 0;
932 render_priv->state.detect_collisions = 1;
933 render_priv->state.fade = 0;
934 render_priv->state.drawing_mode = 0;
935 render_priv->state.effect_type = EF_NONE;
936 render_priv->state.effect_timing = 0;
937 render_priv->state.effect_skip_timing = 0;
938 render_priv->state.bm_run_id = 0;
939 ass_drawing_free(render_priv->state.drawing);
940 render_priv->state.drawing = ass_drawing_new(render_priv->library,
941 render_priv->ftlibrary);
943 apply_transition_effects(render_priv, event);
946 static void free_render_context(ASS_Renderer *render_priv)
948 free(render_priv->state.family);
949 ass_drawing_free(render_priv->state.drawing);
951 render_priv->state.family = NULL;
952 render_priv->state.drawing = NULL;
956 * Replace the outline of a glyph by a contour which makes up a simple
957 * opaque rectangle.
959 static void draw_opaque_box(ASS_Renderer *render_priv, int asc, int desc,
960 FT_Outline *ol, FT_Vector advance, int sx, int sy)
962 int i;
963 int adv = advance.x;
964 double scale_y = render_priv->state.scale_y;
965 double scale_x = render_priv->state.scale_x;
967 // to avoid gaps
968 sx = FFMAX(64, sx);
969 sy = FFMAX(64, sy);
971 // Emulate the WTFish behavior of VSFilter, i.e. double-scale
972 // the sizes of the opaque box.
973 adv += double_to_d6(render_priv->state.hspacing * render_priv->font_scale
974 * scale_x);
975 adv *= scale_x;
976 sx *= scale_x;
977 sy *= scale_y;
978 desc *= scale_y;
979 desc += asc * (scale_y - 1.0);
981 FT_Vector points[4] = {
982 { .x = -sx, .y = asc + sy },
983 { .x = adv + sx, .y = asc + sy },
984 { .x = adv + sx, .y = -desc - sy },
985 { .x = -sx, .y = -desc - sy },
988 FT_Outline_New(render_priv->ftlibrary, 4, 1, ol);
990 ol->n_points = ol->n_contours = 0;
991 for (i = 0; i < 4; i++) {
992 ol->points[ol->n_points] = points[i];
993 ol->tags[ol->n_points++] = 1;
995 ol->contours[ol->n_contours++] = ol->n_points - 1;
999 * Stroke an outline glyph in x/y direction. Applies various fixups to get
1000 * around limitations of the FreeType stroker.
1002 static void stroke_outline(ASS_Renderer *render_priv, FT_Outline *outline,
1003 int sx, int sy)
1005 if (sx <= 0 && sy <= 0)
1006 return;
1008 fix_freetype_stroker(outline, sx, sy);
1010 // Borders are equal; use the regular stroker
1011 if (sx == sy && render_priv->state.stroker) {
1012 int error;
1013 unsigned n_points, n_contours;
1015 FT_StrokerBorder border = FT_Outline_GetOutsideBorder(outline);
1016 error = FT_Stroker_ParseOutline(render_priv->state.stroker, outline, 0);
1017 if (error) {
1018 ass_msg(render_priv->library, MSGL_WARN,
1019 "FT_Stroker_ParseOutline failed, error: %d", error);
1021 error = FT_Stroker_GetBorderCounts(render_priv->state.stroker, border,
1022 &n_points, &n_contours);
1023 if (error) {
1024 ass_msg(render_priv->library, MSGL_WARN,
1025 "FT_Stroker_GetBorderCounts failed, error: %d", error);
1027 FT_Outline_Done(render_priv->ftlibrary, outline);
1028 FT_Outline_New(render_priv->ftlibrary, n_points, n_contours, outline);
1029 outline->n_points = outline->n_contours = 0;
1030 FT_Stroker_ExportBorder(render_priv->state.stroker, border, outline);
1032 // "Stroke" with the outline emboldener in two passes.
1033 // The outlines look uglier, but the emboldening never adds any points
1034 } else {
1035 int i;
1036 FT_Outline nol;
1038 FT_Outline_New(render_priv->ftlibrary, outline->n_points,
1039 outline->n_contours, &nol);
1040 FT_Outline_Copy(outline, &nol);
1042 FT_Outline_Embolden(outline, sx * 2);
1043 FT_Outline_Translate(outline, -sx, -sx);
1044 FT_Outline_Embolden(&nol, sy * 2);
1045 FT_Outline_Translate(&nol, -sy, -sy);
1047 for (i = 0; i < outline->n_points; i++)
1048 outline->points[i].y = nol.points[i].y;
1050 FT_Outline_Done(render_priv->ftlibrary, &nol);
1055 * \brief Prepare glyph hash
1057 static void
1058 fill_glyph_hash(ASS_Renderer *priv, OutlineHashKey *outline_key,
1059 GlyphInfo *info)
1061 if (info->drawing) {
1062 DrawingHashKey *key = &outline_key->u.drawing;
1063 outline_key->type = OUTLINE_DRAWING;
1064 key->scale_x = double_to_d16(info->scale_x);
1065 key->scale_y = double_to_d16(info->scale_y);
1066 key->outline.x = double_to_d16(info->border_x);
1067 key->outline.y = double_to_d16(info->border_y);
1068 key->border_style = priv->state.style->BorderStyle;
1069 key->hash = info->drawing->hash;
1070 key->text = info->drawing->text;
1071 key->pbo = info->drawing->pbo;
1072 key->scale = info->drawing->scale;
1073 } else {
1074 GlyphHashKey *key = &outline_key->u.glyph;
1075 outline_key->type = OUTLINE_GLYPH;
1076 key->font = info->font;
1077 key->size = info->font_size;
1078 key->face_index = info->face_index;
1079 key->glyph_index = info->glyph_index;
1080 key->bold = info->bold;
1081 key->italic = info->italic;
1082 key->scale_x = double_to_d16(info->scale_x);
1083 key->scale_y = double_to_d16(info->scale_y);
1084 key->outline.x = double_to_d16(info->border_x);
1085 key->outline.y = double_to_d16(info->border_y);
1086 key->flags = info->flags;
1087 key->border_style = priv->state.style->BorderStyle;
1092 * \brief Get normal and outline (border) glyphs
1093 * \param info out: struct filled with extracted data
1094 * Tries to get both glyphs from cache.
1095 * If they can't be found, gets a glyph from font face, generates outline with FT_Stroker,
1096 * and add them to cache.
1097 * The glyphs are returned in info->glyph and info->outline_glyph
1099 static void
1100 get_outline_glyph(ASS_Renderer *priv, GlyphInfo *info)
1102 OutlineHashValue *val;
1103 OutlineHashKey key;
1105 memset(&info->hash_key, 0, sizeof(key));
1107 fill_glyph_hash(priv, &key, info);
1108 val = ass_cache_get(priv->cache.outline_cache, &key);
1110 if (!val) {
1111 OutlineHashValue v;
1112 memset(&v, 0, sizeof(v));
1114 if (info->drawing) {
1115 ASS_Drawing *drawing = info->drawing;
1116 ass_drawing_hash(drawing);
1117 if(!ass_drawing_parse(drawing, 0))
1118 return;
1119 outline_copy(priv->ftlibrary, &drawing->outline,
1120 &v.outline);
1121 v.advance.x = drawing->advance.x;
1122 v.advance.y = drawing->advance.y;
1123 v.asc = drawing->asc;
1124 v.desc = drawing->desc;
1125 key.u.drawing.text = strdup(drawing->text);
1126 } else {
1127 ass_face_set_size(info->font->faces[info->face_index],
1128 info->font_size);
1129 ass_font_set_transform(info->font, info->scale_x,
1130 info->scale_y, NULL);
1131 FT_Glyph glyph =
1132 ass_font_get_glyph(priv->fontconfig_priv, info->font,
1133 info->symbol, info->face_index, info->glyph_index,
1134 priv->settings.hinting, info->flags);
1135 if (glyph != NULL) {
1136 outline_copy(priv->ftlibrary,
1137 &((FT_OutlineGlyph)glyph)->outline, &v.outline);
1138 if (priv->settings.shaper == ASS_SHAPING_SIMPLE) {
1139 v.advance.x = d16_to_d6(glyph->advance.x);
1140 v.advance.y = d16_to_d6(glyph->advance.y);
1142 FT_Done_Glyph(glyph);
1143 ass_font_get_asc_desc(info->font, info->symbol,
1144 &v.asc, &v.desc);
1145 v.asc *= info->scale_y;
1146 v.desc *= info->scale_y;
1150 if (!v.outline)
1151 return;
1153 FT_Outline_Get_CBox(v.outline, &v.bbox_scaled);
1155 if (priv->state.style->BorderStyle == 3 &&
1156 (info->border_x > 0 || info->border_y > 0)) {
1157 FT_Vector advance;
1159 v.border = calloc(1, sizeof(FT_Outline));
1161 if (priv->settings.shaper == ASS_SHAPING_SIMPLE || info->drawing)
1162 advance = v.advance;
1163 else
1164 advance = info->advance;
1166 draw_opaque_box(priv, v.asc, v.desc, v.border, advance,
1167 double_to_d6(info->border_x * priv->border_scale),
1168 double_to_d6(info->border_y * priv->border_scale));
1170 } else if ((info->border_x > 0 || info->border_y > 0)
1171 && double_to_d6(info->scale_x) && double_to_d6(info->scale_y)) {
1173 outline_copy(priv->ftlibrary, v.outline, &v.border);
1174 stroke_outline(priv, v.border,
1175 double_to_d6(info->border_x * priv->border_scale),
1176 double_to_d6(info->border_y * priv->border_scale));
1179 v.lib = priv->ftlibrary;
1180 val = ass_cache_put(priv->cache.outline_cache, &key, &v);
1183 info->hash_key.u.outline.outline = val;
1184 info->outline = val->outline;
1185 info->border = val->border;
1186 info->bbox = val->bbox_scaled;
1187 if (info->drawing || priv->settings.shaper == ASS_SHAPING_SIMPLE) {
1188 info->cluster_advance.x = info->advance.x = val->advance.x;
1189 info->cluster_advance.y = info->advance.y = val->advance.y;
1191 info->asc = val->asc;
1192 info->desc = val->desc;
1194 ass_drawing_free(info->drawing);
1198 * \brief Apply transformation to outline points of a glyph
1199 * Applies rotations given by frx, fry and frz and projects the points back
1200 * onto the screen plane.
1202 static void
1203 transform_3d_points(FT_Vector shift, FT_Outline *outline, double frx, double fry,
1204 double frz, double fax, double fay, double scale,
1205 int yshift)
1207 double sx = sin(frx);
1208 double sy = sin(fry);
1209 double sz = sin(frz);
1210 double cx = cos(frx);
1211 double cy = cos(fry);
1212 double cz = cos(frz);
1213 FT_Vector *p = outline->points;
1214 double x, y, z, xx, yy, zz;
1215 int i, dist;
1217 dist = 20000 * scale;
1218 for (i = 0; i < outline->n_points; i++) {
1219 x = (double) p[i].x + shift.x + (fax * (yshift - p[i].y));
1220 y = (double) p[i].y + shift.y + (-fay * p[i].x);
1221 z = 0.;
1223 xx = x * cz + y * sz;
1224 yy = -(x * sz - y * cz);
1225 zz = z;
1227 x = xx;
1228 y = yy * cx + zz * sx;
1229 z = yy * sx - zz * cx;
1231 xx = x * cy + z * sy;
1232 yy = y;
1233 zz = x * sy - z * cy;
1235 zz = FFMAX(zz, 1000 - dist);
1237 x = (xx * dist) / (zz + dist);
1238 y = (yy * dist) / (zz + dist);
1239 p[i].x = x - shift.x + 0.5;
1240 p[i].y = y - shift.y + 0.5;
1245 * \brief Apply 3d transformation to several objects
1246 * \param shift FreeType vector
1247 * \param glyph FreeType glyph
1248 * \param glyph2 FreeType glyph
1249 * \param frx x-axis rotation angle
1250 * \param fry y-axis rotation angle
1251 * \param frz z-axis rotation angle
1252 * Rotates both glyphs by frx, fry and frz. Shift vector is added before rotation and subtracted after it.
1254 static void
1255 transform_3d(FT_Vector shift, FT_Outline *outline, FT_Outline *border,
1256 double frx, double fry, double frz, double fax, double fay,
1257 double scale, int yshift)
1259 frx = -frx;
1260 frz = -frz;
1261 if (frx != 0. || fry != 0. || frz != 0. || fax != 0. || fay != 0.) {
1262 if (outline)
1263 transform_3d_points(shift, outline, frx, fry, frz,
1264 fax, fay, scale, yshift);
1266 if (border)
1267 transform_3d_points(shift, border, frx, fry, frz,
1268 fax, fay, scale, yshift);
1273 * \brief Get bitmaps for a glyph
1274 * \param info glyph info
1275 * Tries to get glyph bitmaps from bitmap cache.
1276 * If they can't be found, they are generated by rotating and rendering the glyph.
1277 * After that, bitmaps are added to the cache.
1278 * They are returned in info->bm (glyph), info->bm_o (outline) and info->bm_s (shadow).
1280 static void
1281 get_bitmap_glyph(ASS_Renderer *render_priv, GlyphInfo *info)
1283 BitmapHashValue *val;
1284 OutlineBitmapHashKey *key = &info->hash_key.u.outline;
1286 if (!info->outline || info->symbol == '\n' || info->symbol == 0 || info->skip)
1287 return;
1289 val = ass_cache_get(render_priv->cache.bitmap_cache, &info->hash_key);
1291 if (!val) {
1292 FT_Vector shift;
1293 BitmapHashValue hash_val;
1294 int error;
1295 double fax_scaled, fay_scaled;
1296 FT_Outline *outline, *border;
1297 double scale_x = render_priv->font_scale_x;
1299 hash_val.bm = hash_val.bm_o = hash_val.bm_s = 0;
1301 outline_copy(render_priv->ftlibrary, info->outline, &outline);
1302 outline_copy(render_priv->ftlibrary, info->border, &border);
1304 // calculating rotation shift vector (from rotation origin to the glyph basepoint)
1305 shift.x = key->shift_x;
1306 shift.y = key->shift_y;
1307 fax_scaled = info->fax * render_priv->state.scale_x;
1308 fay_scaled = info->fay * render_priv->state.scale_y;
1310 // apply rotation
1311 transform_3d(shift, outline, border,
1312 info->frx, info->fry, info->frz, fax_scaled,
1313 fay_scaled, render_priv->font_scale, info->asc);
1315 // PAR correction scaling
1316 FT_Matrix m = { double_to_d16(scale_x), 0,
1317 0, double_to_d16(1.0) };
1319 // subpixel shift
1320 if (outline) {
1321 if (scale_x != 1.0)
1322 FT_Outline_Transform(outline, &m);
1323 FT_Outline_Translate(outline, key->advance.x, -key->advance.y);
1325 if (border) {
1326 if (scale_x != 1.0)
1327 FT_Outline_Transform(border, &m);
1328 FT_Outline_Translate(border, key->advance.x, -key->advance.y);
1331 // render glyph
1332 error = outline_to_bitmap3(render_priv->library,
1333 render_priv->synth_priv,
1334 render_priv->ftlibrary,
1335 outline, border,
1336 &hash_val.bm, &hash_val.bm_o,
1337 &hash_val.bm_s, info->be,
1338 info->blur * render_priv->border_scale,
1339 key->shadow_offset,
1340 render_priv->state.style->BorderStyle);
1341 if (error)
1342 info->symbol = 0;
1344 val = ass_cache_put(render_priv->cache.bitmap_cache, &info->hash_key,
1345 &hash_val);
1347 outline_free(render_priv->ftlibrary, outline);
1348 outline_free(render_priv->ftlibrary, border);
1351 info->bm = val->bm;
1352 info->bm_o = val->bm_o;
1353 info->bm_s = val->bm_s;
1355 // VSFilter compatibility: invisible fill and no border?
1356 // In this case no shadow is supposed to be rendered.
1357 if (!info->border && (info->c[0] & 0xFF) == 0xFF)
1358 info->bm_s = 0;
1362 * This function goes through text_info and calculates text parameters.
1363 * The following text_info fields are filled:
1364 * height
1365 * lines[].height
1366 * lines[].asc
1367 * lines[].desc
1369 static void measure_text(ASS_Renderer *render_priv)
1371 TextInfo *text_info = &render_priv->text_info;
1372 int cur_line = 0;
1373 double max_asc = 0., max_desc = 0.;
1374 GlyphInfo *last = NULL;
1375 int i;
1376 int empty_line = 1;
1377 text_info->height = 0.;
1378 for (i = 0; i < text_info->length + 1; ++i) {
1379 if ((i == text_info->length) || text_info->glyphs[i].linebreak) {
1380 if (empty_line && cur_line > 0 && last && i < text_info->length) {
1381 max_asc = d6_to_double(last->asc) / 2.0;
1382 max_desc = d6_to_double(last->desc) / 2.0;
1384 text_info->lines[cur_line].asc = max_asc;
1385 text_info->lines[cur_line].desc = max_desc;
1386 text_info->height += max_asc + max_desc;
1387 cur_line++;
1388 max_asc = max_desc = 0.;
1389 empty_line = 1;
1390 } else
1391 empty_line = 0;
1392 if (i < text_info->length) {
1393 GlyphInfo *cur = text_info->glyphs + i;
1394 if (d6_to_double(cur->asc) > max_asc)
1395 max_asc = d6_to_double(cur->asc);
1396 if (d6_to_double(cur->desc) > max_desc)
1397 max_desc = d6_to_double(cur->desc);
1398 if (cur->symbol != '\n' && cur->symbol != 0)
1399 last = cur;
1402 text_info->height +=
1403 (text_info->n_lines -
1404 1) * render_priv->settings.line_spacing;
1408 * Mark extra whitespace for later removal.
1410 #define IS_WHITESPACE(x) ((x->symbol == ' ' || x->symbol == '\n') \
1411 && !x->linebreak)
1412 static void trim_whitespace(ASS_Renderer *render_priv)
1414 int i, j;
1415 GlyphInfo *cur;
1416 TextInfo *ti = &render_priv->text_info;
1418 // Mark trailing spaces
1419 i = ti->length - 1;
1420 cur = ti->glyphs + i;
1421 while (i && IS_WHITESPACE(cur)) {
1422 cur->skip++;
1423 cur = ti->glyphs + --i;
1426 // Mark leading whitespace
1427 i = 0;
1428 cur = ti->glyphs;
1429 while (i < ti->length && IS_WHITESPACE(cur)) {
1430 cur->skip++;
1431 cur = ti->glyphs + ++i;
1434 // Mark all extraneous whitespace inbetween
1435 for (i = 0; i < ti->length; ++i) {
1436 cur = ti->glyphs + i;
1437 if (cur->linebreak) {
1438 // Mark whitespace before
1439 j = i - 1;
1440 cur = ti->glyphs + j;
1441 while (j && IS_WHITESPACE(cur)) {
1442 cur->skip++;
1443 cur = ti->glyphs + --j;
1445 // A break itself can contain a whitespace, too
1446 cur = ti->glyphs + i;
1447 if (cur->symbol == ' ') {
1448 cur->skip++;
1449 // Mark whitespace after
1450 j = i + 1;
1451 cur = ti->glyphs + j;
1452 while (j < ti->length && IS_WHITESPACE(cur)) {
1453 cur->skip++;
1454 cur = ti->glyphs + ++j;
1456 i = j - 1;
1461 #undef IS_WHITESPACE
1464 * \brief rearrange text between lines
1465 * \param max_text_width maximal text line width in pixels
1466 * The algo is similar to the one in libvo/sub.c:
1467 * 1. Place text, wrapping it when current line is full
1468 * 2. Try moving words from the end of a line to the beginning of the next one while it reduces
1469 * the difference in lengths between this two lines.
1470 * The result may not be optimal, but usually is good enough.
1472 * FIXME: implement style 0 and 3 correctly
1474 static void
1475 wrap_lines_smart(ASS_Renderer *render_priv, double max_text_width)
1477 int i;
1478 GlyphInfo *cur, *s1, *e1, *s2, *s3, *w;
1479 int last_space;
1480 int break_type;
1481 int exit;
1482 double pen_shift_x;
1483 double pen_shift_y;
1484 int cur_line;
1485 int run_offset;
1486 TextInfo *text_info = &render_priv->text_info;
1488 last_space = -1;
1489 text_info->n_lines = 1;
1490 break_type = 0;
1491 s1 = text_info->glyphs; // current line start
1492 for (i = 0; i < text_info->length; ++i) {
1493 int break_at = -1;
1494 double s_offset, len;
1495 cur = text_info->glyphs + i;
1496 s_offset = d6_to_double(s1->bbox.xMin + s1->pos.x);
1497 len = d6_to_double(cur->bbox.xMax + cur->pos.x) - s_offset;
1499 if (cur->symbol == '\n') {
1500 break_type = 2;
1501 break_at = i;
1502 ass_msg(render_priv->library, MSGL_DBG2,
1503 "forced line break at %d", break_at);
1504 } else if (cur->symbol == ' ') {
1505 last_space = i;
1506 } else if (len >= max_text_width
1507 && (render_priv->state.wrap_style != 2)) {
1508 break_type = 1;
1509 break_at = last_space;
1510 if (break_at >= 0)
1511 ass_msg(render_priv->library, MSGL_DBG2, "line break at %d",
1512 break_at);
1515 if (break_at != -1) {
1516 // need to use one more line
1517 // marking break_at+1 as start of a new line
1518 int lead = break_at + 1; // the first symbol of the new line
1519 if (text_info->n_lines >= text_info->max_lines) {
1520 // Raise maximum number of lines
1521 text_info->max_lines *= 2;
1522 text_info->lines = realloc(text_info->lines,
1523 sizeof(LineInfo) *
1524 text_info->max_lines);
1526 if (lead < text_info->length) {
1527 text_info->glyphs[lead].linebreak = break_type;
1528 last_space = -1;
1529 s1 = text_info->glyphs + lead;
1530 s_offset = d6_to_double(s1->bbox.xMin + s1->pos.x);
1531 text_info->n_lines++;
1535 #define DIFF(x,y) (((x) < (y)) ? (y - x) : (x - y))
1536 exit = 0;
1537 while (!exit && render_priv->state.wrap_style != 1) {
1538 exit = 1;
1539 w = s3 = text_info->glyphs;
1540 s1 = s2 = 0;
1541 for (i = 0; i <= text_info->length; ++i) {
1542 cur = text_info->glyphs + i;
1543 if ((i == text_info->length) || cur->linebreak) {
1544 s1 = s2;
1545 s2 = s3;
1546 s3 = cur;
1547 if (s1 && (s2->linebreak == 1)) { // have at least 2 lines, and linebreak is 'soft'
1548 double l1, l2, l1_new, l2_new;
1550 w = s2;
1551 do {
1552 --w;
1553 } while ((w > s1) && (w->symbol == ' '));
1554 while ((w > s1) && (w->symbol != ' ')) {
1555 --w;
1557 e1 = w;
1558 while ((e1 > s1) && (e1->symbol == ' ')) {
1559 --e1;
1561 if (w->symbol == ' ')
1562 ++w;
1564 l1 = d6_to_double(((s2 - 1)->bbox.xMax + (s2 - 1)->pos.x) -
1565 (s1->bbox.xMin + s1->pos.x));
1566 l2 = d6_to_double(((s3 - 1)->bbox.xMax + (s3 - 1)->pos.x) -
1567 (s2->bbox.xMin + s2->pos.x));
1568 l1_new = d6_to_double(
1569 (e1->bbox.xMax + e1->pos.x) -
1570 (s1->bbox.xMin + s1->pos.x));
1571 l2_new = d6_to_double(
1572 ((s3 - 1)->bbox.xMax + (s3 - 1)->pos.x) -
1573 (w->bbox.xMin + w->pos.x));
1575 if (DIFF(l1_new, l2_new) < DIFF(l1, l2)) {
1576 w->linebreak = 1;
1577 s2->linebreak = 0;
1578 exit = 0;
1582 if (i == text_info->length)
1583 break;
1587 assert(text_info->n_lines >= 1);
1588 #undef DIFF
1590 measure_text(render_priv);
1591 trim_whitespace(render_priv);
1593 pen_shift_x = 0.;
1594 pen_shift_y = 0.;
1595 cur_line = 1;
1596 run_offset = 0;
1598 i = 0;
1599 cur = text_info->glyphs + i;
1600 while (i < text_info->length && cur->skip)
1601 cur = text_info->glyphs + ++i;
1602 pen_shift_x = d6_to_double(-cur->pos.x);
1604 for (i = 0; i < text_info->length; ++i) {
1605 cur = text_info->glyphs + i;
1606 if (cur->linebreak) {
1607 while (i < text_info->length && cur->skip && cur->symbol != '\n')
1608 cur = text_info->glyphs + ++i;
1609 double height =
1610 text_info->lines[cur_line - 1].desc +
1611 text_info->lines[cur_line].asc;
1612 text_info->lines[cur_line - 1].len = i -
1613 text_info->lines[cur_line - 1].offset;
1614 text_info->lines[cur_line].offset = i;
1615 cur_line++;
1616 run_offset++;
1617 pen_shift_x = d6_to_double(-cur->pos.x);
1618 pen_shift_y += height + render_priv->settings.line_spacing;
1619 ass_msg(render_priv->library, MSGL_DBG2,
1620 "shifting from %d to %d by (%f, %f)", i,
1621 text_info->length - 1, pen_shift_x, pen_shift_y);
1623 cur->bm_run_id += run_offset;
1624 cur->pos.x += double_to_d6(pen_shift_x);
1625 cur->pos.y += double_to_d6(pen_shift_y);
1627 text_info->lines[cur_line - 1].len =
1628 text_info->length - text_info->lines[cur_line - 1].offset;
1630 #if 0
1631 // print line info
1632 for (i = 0; i < text_info->n_lines; i++) {
1633 printf("line %d offset %d length %d\n", i, text_info->lines[i].offset,
1634 text_info->lines[i].len);
1636 #endif
1640 * \brief Calculate base point for positioning and rotation
1641 * \param bbox text bbox
1642 * \param alignment alignment
1643 * \param bx, by out: base point coordinates
1645 static void get_base_point(DBBox *bbox, int alignment, double *bx, double *by)
1647 const int halign = alignment & 3;
1648 const int valign = alignment & 12;
1649 if (bx)
1650 switch (halign) {
1651 case HALIGN_LEFT:
1652 *bx = bbox->xMin;
1653 break;
1654 case HALIGN_CENTER:
1655 *bx = (bbox->xMax + bbox->xMin) / 2.0;
1656 break;
1657 case HALIGN_RIGHT:
1658 *bx = bbox->xMax;
1659 break;
1661 if (by)
1662 switch (valign) {
1663 case VALIGN_TOP:
1664 *by = bbox->yMin;
1665 break;
1666 case VALIGN_CENTER:
1667 *by = (bbox->yMax + bbox->yMin) / 2.0;
1668 break;
1669 case VALIGN_SUB:
1670 *by = bbox->yMax;
1671 break;
1676 * Prepare bitmap hash key of a glyph
1678 static void
1679 fill_bitmap_hash(ASS_Renderer *priv, GlyphInfo *info,
1680 OutlineBitmapHashKey *hash_key)
1682 hash_key->frx = rot_key(info->frx);
1683 hash_key->fry = rot_key(info->fry);
1684 hash_key->frz = rot_key(info->frz);
1685 hash_key->fax = double_to_d16(info->fax);
1686 hash_key->fay = double_to_d16(info->fay);
1687 hash_key->be = info->be;
1688 hash_key->blur = info->blur;
1689 hash_key->shadow_offset.x = double_to_d6(
1690 info->shadow_x * priv->border_scale -
1691 (int) (info->shadow_x * priv->border_scale));
1692 hash_key->shadow_offset.y = double_to_d6(
1693 info->shadow_y * priv->border_scale -
1694 (int) (info->shadow_y * priv->border_scale));
1698 * \brief Main ass rendering function, glues everything together
1699 * \param event event to render
1700 * \param event_images struct containing resulting images, will also be initialized
1701 * Process event, appending resulting ASS_Image's to images_root.
1703 static int
1704 ass_render_event(ASS_Renderer *render_priv, ASS_Event *event,
1705 EventImages *event_images)
1707 char *p;
1708 FT_UInt previous;
1709 FT_UInt num_glyphs;
1710 FT_Vector pen;
1711 unsigned code;
1712 DBBox bbox;
1713 int i, j;
1714 int MarginL, MarginR, MarginV;
1715 int last_break;
1716 int alignment, halign, valign;
1717 double device_x = 0;
1718 double device_y = 0;
1719 TextInfo *text_info = &render_priv->text_info;
1720 GlyphInfo *glyphs = render_priv->text_info.glyphs;
1721 ASS_Drawing *drawing;
1723 if (event->Style >= render_priv->track->n_styles) {
1724 ass_msg(render_priv->library, MSGL_WARN, "No style found");
1725 return 1;
1727 if (!event->Text) {
1728 ass_msg(render_priv->library, MSGL_WARN, "Empty event");
1729 return 1;
1732 init_render_context(render_priv, event);
1734 drawing = render_priv->state.drawing;
1735 text_info->length = 0;
1736 num_glyphs = 0;
1737 p = event->Text;
1739 // Event parsing.
1740 while (1) {
1741 // get next char, executing style override
1742 // this affects render_context
1743 do {
1744 code = get_next_char(render_priv, &p);
1745 if (render_priv->state.drawing_mode && code)
1746 ass_drawing_add_char(drawing, (char) code);
1747 } while (code && render_priv->state.drawing_mode); // skip everything in drawing mode
1749 if (text_info->length >= text_info->max_glyphs) {
1750 // Raise maximum number of glyphs
1751 text_info->max_glyphs *= 2;
1752 text_info->glyphs = glyphs =
1753 realloc(text_info->glyphs,
1754 sizeof(GlyphInfo) * text_info->max_glyphs);
1757 // Clear current GlyphInfo
1758 memset(&glyphs[text_info->length], 0, sizeof(GlyphInfo));
1760 // Parse drawing
1761 if (drawing->i) {
1762 drawing->scale_x = render_priv->state.scale_x *
1763 render_priv->font_scale;
1764 drawing->scale_y = render_priv->state.scale_y *
1765 render_priv->font_scale;
1766 p--;
1767 code = 0xfffc; // object replacement character
1768 glyphs[text_info->length].drawing = drawing;
1771 // face could have been changed in get_next_char
1772 if (!render_priv->state.font) {
1773 free_render_context(render_priv);
1774 return 1;
1777 if (code == 0)
1778 break;
1780 // Fill glyph information
1781 glyphs[text_info->length].symbol = code;
1782 glyphs[text_info->length].font = render_priv->state.font;
1783 for (i = 0; i < 4; ++i) {
1784 uint32_t clr = render_priv->state.c[i];
1785 change_alpha(&clr,
1786 mult_alpha(_a(clr), render_priv->state.fade), 1.);
1787 glyphs[text_info->length].c[i] = clr;
1789 glyphs[text_info->length].effect_type = render_priv->state.effect_type;
1790 glyphs[text_info->length].effect_timing =
1791 render_priv->state.effect_timing;
1792 glyphs[text_info->length].effect_skip_timing =
1793 render_priv->state.effect_skip_timing;
1794 glyphs[text_info->length].font_size = ensure_font_size(render_priv,
1795 render_priv->state.font_size * render_priv->font_scale);
1796 glyphs[text_info->length].be = render_priv->state.be;
1797 glyphs[text_info->length].blur = render_priv->state.blur;
1798 glyphs[text_info->length].shadow_x = render_priv->state.shadow_x;
1799 glyphs[text_info->length].shadow_y = render_priv->state.shadow_y;
1800 glyphs[text_info->length].scale_x= render_priv->state.scale_x;
1801 glyphs[text_info->length].scale_y = render_priv->state.scale_y;
1802 glyphs[text_info->length].border_x= render_priv->state.border_x;
1803 glyphs[text_info->length].border_y = render_priv->state.border_y;
1804 glyphs[text_info->length].bold = render_priv->state.bold;
1805 glyphs[text_info->length].italic = render_priv->state.italic;
1806 glyphs[text_info->length].flags = render_priv->state.flags;
1807 glyphs[text_info->length].frx = render_priv->state.frx;
1808 glyphs[text_info->length].fry = render_priv->state.fry;
1809 glyphs[text_info->length].frz = render_priv->state.frz;
1810 glyphs[text_info->length].fax = render_priv->state.fax;
1811 glyphs[text_info->length].fay = render_priv->state.fay;
1812 glyphs[text_info->length].bm_run_id = render_priv->state.bm_run_id;
1814 if (glyphs[text_info->length].drawing) {
1815 drawing = render_priv->state.drawing =
1816 ass_drawing_new(render_priv->library, render_priv->ftlibrary);
1819 text_info->length++;
1821 render_priv->state.effect_type = EF_NONE;
1822 render_priv->state.effect_timing = 0;
1823 render_priv->state.effect_skip_timing = 0;
1827 if (text_info->length == 0) {
1828 // no valid symbols in the event; this can be smth like {comment}
1829 free_render_context(render_priv);
1830 return 1;
1833 // Find shape runs and shape text
1834 ass_shaper_set_base_direction(render_priv->shaper,
1835 resolve_base_direction(render_priv->state.font_encoding));
1836 ass_shaper_find_runs(render_priv->shaper, render_priv, glyphs,
1837 text_info->length);
1838 ass_shaper_shape(render_priv->shaper, text_info);
1840 // Retrieve glyphs
1841 for (i = 0; i < text_info->length; i++) {
1842 GlyphInfo *info = glyphs + i;
1843 while (info) {
1844 get_outline_glyph(render_priv, info);
1845 info = info->next;
1847 info = glyphs + i;
1849 // Add additional space after italic to non-italic style changes
1850 if (i && glyphs[i - 1].italic && !info->italic) {
1851 int back = i - 1;
1852 GlyphInfo *og = &glyphs[back];
1853 while (back && og->bbox.xMax - og->bbox.xMin == 0
1854 && og->italic)
1855 og = &glyphs[--back];
1856 if (og->bbox.xMax > og->cluster_advance.x)
1857 og->cluster_advance.x = og->bbox.xMax;
1860 // add horizontal letter spacing
1861 info->cluster_advance.x += double_to_d6(render_priv->state.hspacing *
1862 render_priv->font_scale * info->scale_x);
1864 // add displacement for vertical shearing
1865 info->cluster_advance.y += (info->fay * info->scale_y) * info->cluster_advance.x;
1869 // Preliminary layout (for line wrapping)
1870 previous = 0;
1871 pen.x = 0;
1872 pen.y = 0;
1873 for (i = 0; i < text_info->length; i++) {
1874 GlyphInfo *info = glyphs + i;
1875 FT_Vector cluster_pen = pen;
1876 while (info) {
1877 info->pos.x = cluster_pen.x;
1878 info->pos.y = cluster_pen.y;
1880 cluster_pen.x += info->advance.x;
1881 cluster_pen.y += info->advance.y;
1883 // fill bitmap hash
1884 info->hash_key.type = BITMAP_OUTLINE;
1885 fill_bitmap_hash(render_priv, info, &info->hash_key.u.outline);
1887 info = info->next;
1889 info = glyphs + i;
1890 pen.x += info->cluster_advance.x;
1891 pen.y += info->cluster_advance.y;
1892 previous = info->symbol;
1896 // depends on glyph x coordinates being monotonous, so it should be done before line wrap
1897 process_karaoke_effects(render_priv);
1899 // alignments
1900 alignment = render_priv->state.alignment;
1901 halign = alignment & 3;
1902 valign = alignment & 12;
1904 MarginL =
1905 (event->MarginL) ? event->MarginL : render_priv->state.style->MarginL;
1906 MarginR =
1907 (event->MarginR) ? event->MarginR : render_priv->state.style->MarginR;
1908 MarginV =
1909 (event->MarginV) ? event->MarginV : render_priv->state.style->MarginV;
1911 // calculate max length of a line
1912 double max_text_width =
1913 x2scr(render_priv, render_priv->track->PlayResX - MarginR) -
1914 x2scr(render_priv, MarginL);
1916 // wrap lines
1917 if (render_priv->state.evt_type != EVENT_HSCROLL) {
1918 // rearrange text in several lines
1919 wrap_lines_smart(render_priv, max_text_width);
1920 } else {
1921 // no breaking or wrapping, everything in a single line
1922 text_info->lines[0].offset = 0;
1923 text_info->lines[0].len = text_info->length;
1924 text_info->n_lines = 1;
1925 measure_text(render_priv);
1928 // Reorder text into visual order
1929 FriBidiStrIndex *cmap = ass_shaper_reorder(render_priv->shaper, text_info);
1931 // Reposition according to the map
1932 pen.x = 0;
1933 pen.y = 0;
1934 int lineno = 1;
1935 for (i = 0; i < text_info->length; i++) {
1936 GlyphInfo *info = glyphs + cmap[i];
1937 if (glyphs[i].linebreak) {
1938 pen.x = 0;
1939 pen.y += double_to_d6(text_info->lines[lineno-1].desc);
1940 pen.y += double_to_d6(text_info->lines[lineno].asc);
1941 pen.y += double_to_d6(render_priv->settings.line_spacing);
1942 lineno++;
1944 if (info->skip) continue;
1945 FT_Vector cluster_pen = pen;
1946 while (info) {
1947 info->pos.x = info->offset.x + cluster_pen.x;
1948 info->pos.y = info->offset.y + cluster_pen.y;
1949 cluster_pen.x += info->advance.x;
1950 cluster_pen.y += info->advance.y;
1951 info = info->next;
1953 info = glyphs + cmap[i];
1954 pen.x += info->cluster_advance.x;
1955 pen.y += info->cluster_advance.y;
1958 // align lines
1959 if (render_priv->state.evt_type != EVENT_HSCROLL) {
1960 last_break = -1;
1961 double width = 0;
1962 for (i = 0; i <= text_info->length; ++i) { // (text_info->length + 1) is the end of the last line
1963 if ((i == text_info->length) || glyphs[i].linebreak) {
1964 // remove letter spacing (which is included in cluster_advance)
1965 if (i > 0)
1966 width -= render_priv->state.hspacing * render_priv->font_scale *
1967 glyphs[i-1].scale_x;
1968 double shift = 0;
1969 if (halign == HALIGN_LEFT) { // left aligned, no action
1970 shift = 0;
1971 } else if (halign == HALIGN_RIGHT) { // right aligned
1972 shift = max_text_width - width;
1973 } else if (halign == HALIGN_CENTER) { // centered
1974 shift = (max_text_width - width) / 2.0;
1976 for (j = last_break + 1; j < i; ++j) {
1977 GlyphInfo *info = glyphs + j;
1978 while (info) {
1979 info->pos.x += double_to_d6(shift);
1980 info = info->next;
1983 last_break = i - 1;
1984 width = 0;
1986 if (i < text_info->length && !glyphs[i].skip &&
1987 glyphs[i].symbol != '\n' && glyphs[i].symbol != 0) {
1988 width += d6_to_double(glyphs[i].cluster_advance.x);
1993 // determing text bounding box
1994 compute_string_bbox(text_info, &bbox);
1996 // determine device coordinates for text
1998 // x coordinate for everything except positioned events
1999 if (render_priv->state.evt_type == EVENT_NORMAL ||
2000 render_priv->state.evt_type == EVENT_VSCROLL) {
2001 device_x = x2scr(render_priv, MarginL);
2002 } else if (render_priv->state.evt_type == EVENT_HSCROLL) {
2003 if (render_priv->state.scroll_direction == SCROLL_RL)
2004 device_x =
2005 x2scr(render_priv,
2006 render_priv->track->PlayResX -
2007 render_priv->state.scroll_shift);
2008 else if (render_priv->state.scroll_direction == SCROLL_LR)
2009 device_x =
2010 x2scr(render_priv,
2011 render_priv->state.scroll_shift) - (bbox.xMax -
2012 bbox.xMin);
2015 // y coordinate for everything except positioned events
2016 if (render_priv->state.evt_type == EVENT_NORMAL ||
2017 render_priv->state.evt_type == EVENT_HSCROLL) {
2018 if (valign == VALIGN_TOP) { // toptitle
2019 device_y =
2020 y2scr_top(render_priv,
2021 MarginV) + text_info->lines[0].asc;
2022 } else if (valign == VALIGN_CENTER) { // midtitle
2023 double scr_y =
2024 y2scr(render_priv, render_priv->track->PlayResY / 2.0);
2025 device_y = scr_y - (bbox.yMax + bbox.yMin) / 2.0;
2026 } else { // subtitle
2027 double scr_y;
2028 if (valign != VALIGN_SUB)
2029 ass_msg(render_priv->library, MSGL_V,
2030 "Invalid valign, assuming 0 (subtitle)");
2031 scr_y =
2032 y2scr_sub(render_priv,
2033 render_priv->track->PlayResY - MarginV);
2034 device_y = scr_y;
2035 device_y -= text_info->height;
2036 device_y += text_info->lines[0].asc;
2038 } else if (render_priv->state.evt_type == EVENT_VSCROLL) {
2039 if (render_priv->state.scroll_direction == SCROLL_TB)
2040 device_y =
2041 y2scr(render_priv,
2042 render_priv->state.clip_y0 +
2043 render_priv->state.scroll_shift) - (bbox.yMax -
2044 bbox.yMin);
2045 else if (render_priv->state.scroll_direction == SCROLL_BT)
2046 device_y =
2047 y2scr(render_priv,
2048 render_priv->state.clip_y1 -
2049 render_priv->state.scroll_shift);
2052 // positioned events are totally different
2053 if (render_priv->state.evt_type == EVENT_POSITIONED) {
2054 double base_x = 0;
2055 double base_y = 0;
2056 ass_msg(render_priv->library, MSGL_DBG2, "positioned event at %f, %f",
2057 render_priv->state.pos_x, render_priv->state.pos_y);
2058 get_base_point(&bbox, alignment, &base_x, &base_y);
2059 device_x =
2060 x2scr_pos(render_priv, render_priv->state.pos_x) - base_x;
2061 device_y =
2062 y2scr_pos(render_priv, render_priv->state.pos_y) - base_y;
2065 // fix clip coordinates (they depend on alignment)
2066 if (render_priv->state.evt_type == EVENT_NORMAL ||
2067 render_priv->state.evt_type == EVENT_HSCROLL ||
2068 render_priv->state.evt_type == EVENT_VSCROLL) {
2069 render_priv->state.clip_x0 =
2070 x2scr_scaled(render_priv, render_priv->state.clip_x0);
2071 render_priv->state.clip_x1 =
2072 x2scr_scaled(render_priv, render_priv->state.clip_x1);
2073 if (valign == VALIGN_TOP) {
2074 render_priv->state.clip_y0 =
2075 y2scr_top(render_priv, render_priv->state.clip_y0);
2076 render_priv->state.clip_y1 =
2077 y2scr_top(render_priv, render_priv->state.clip_y1);
2078 } else if (valign == VALIGN_CENTER) {
2079 render_priv->state.clip_y0 =
2080 y2scr(render_priv, render_priv->state.clip_y0);
2081 render_priv->state.clip_y1 =
2082 y2scr(render_priv, render_priv->state.clip_y1);
2083 } else if (valign == VALIGN_SUB) {
2084 render_priv->state.clip_y0 =
2085 y2scr_sub(render_priv, render_priv->state.clip_y0);
2086 render_priv->state.clip_y1 =
2087 y2scr_sub(render_priv, render_priv->state.clip_y1);
2089 } else if (render_priv->state.evt_type == EVENT_POSITIONED) {
2090 render_priv->state.clip_x0 =
2091 x2scr_pos_scaled(render_priv, render_priv->state.clip_x0);
2092 render_priv->state.clip_x1 =
2093 x2scr_pos_scaled(render_priv, render_priv->state.clip_x1);
2094 render_priv->state.clip_y0 =
2095 y2scr_pos(render_priv, render_priv->state.clip_y0);
2096 render_priv->state.clip_y1 =
2097 y2scr_pos(render_priv, render_priv->state.clip_y1);
2100 // calculate rotation parameters
2102 DVector center;
2104 if (render_priv->state.have_origin) {
2105 center.x = x2scr(render_priv, render_priv->state.org_x);
2106 center.y = y2scr(render_priv, render_priv->state.org_y);
2107 } else {
2108 double bx = 0., by = 0.;
2109 get_base_point(&bbox, alignment, &bx, &by);
2110 center.x = device_x + bx;
2111 center.y = device_y + by;
2114 for (i = 0; i < text_info->length; ++i) {
2115 GlyphInfo *info = glyphs + i;
2116 while (info) {
2117 OutlineBitmapHashKey *key = &info->hash_key.u.outline;
2119 if (key->frx || key->fry || key->frz || key->fax || key->fay) {
2120 key->shift_x = info->pos.x + double_to_d6(device_x - center.x);
2121 key->shift_y = -(info->pos.y + double_to_d6(device_y - center.y));
2122 } else {
2123 key->shift_x = 0;
2124 key->shift_y = 0;
2126 info = info->next;
2131 // convert glyphs to bitmaps
2132 int left = render_priv->settings.left_margin;
2133 device_x = (device_x - left) * render_priv->font_scale_x + left;
2134 for (i = 0; i < text_info->length; ++i) {
2135 GlyphInfo *info = glyphs + i;
2136 while (info) {
2137 OutlineBitmapHashKey *key = &info->hash_key.u.outline;
2138 info->pos.x *= render_priv->font_scale_x;
2139 key->advance.x =
2140 double_to_d6(device_x - (int) device_x +
2141 d6_to_double(info->pos.x & SUBPIXEL_MASK)) & ~SUBPIXEL_ACCURACY;
2142 key->advance.y =
2143 double_to_d6(device_y - (int) device_y +
2144 d6_to_double(info->pos.y & SUBPIXEL_MASK)) & ~SUBPIXEL_ACCURACY;
2145 get_bitmap_glyph(render_priv, info);
2146 info = info->next;
2150 #if 0
2151 // Compute runs and their bboxes
2152 // XXX: currently does nothing visible/functional
2153 for (i = 0; i < text_info->length; i++) {
2154 GlyphInfo *g = glyphs + i;
2155 OutlineBitmapHashKey *key = &g->hash_key.u.outline;
2156 int w, h;
2158 // skip non-visual glyphs
2159 if (g->skip || g->symbol == '\n' || g->symbol == 0)
2160 continue;
2162 // Determine run length and compute run bbox
2163 int run_len = 0;
2164 int cur_run = g->bm_run_id;
2165 while (g->bm_run_id == cur_run && (i + run_len) < text_info->length) {
2166 g++;
2167 run_len++;
2169 g = glyphs + i;
2170 compute_run_size(g, run_len, &w, &h);
2171 //printf("run_id %d len %d size %d %d\n", g->bm_run_id, run_len, w, h);
2173 i += run_len - 1;
2175 #endif
2177 memset(event_images, 0, sizeof(*event_images));
2178 event_images->top = device_y - text_info->lines[0].asc;
2179 event_images->height = text_info->height;
2180 event_images->left =
2181 (device_x + bbox.xMin * render_priv->font_scale_x) + 0.5;
2182 event_images->width =
2183 (bbox.xMax - bbox.xMin) * render_priv->font_scale_x + 0.5;
2184 event_images->detect_collisions = render_priv->state.detect_collisions;
2185 event_images->shift_direction = (valign == VALIGN_TOP) ? 1 : -1;
2186 event_images->event = event;
2187 event_images->imgs = render_text(render_priv, (int) device_x, (int) device_y);
2189 ass_shaper_cleanup(render_priv->shaper, text_info);
2190 free_render_context(render_priv);
2192 return 0;
2196 * \brief deallocate image list
2197 * \param img list pointer
2199 void ass_free_images(ASS_Image *img)
2201 while (img) {
2202 ASS_Image *next = img->next;
2203 free(img);
2204 img = next;
2209 * \brief Check cache limits and reset cache if they are exceeded
2211 static void check_cache_limits(ASS_Renderer *priv, CacheStore *cache)
2213 if (ass_cache_empty(cache->bitmap_cache, cache->bitmap_max_size)) {
2214 ass_cache_empty(cache->composite_cache, 0);
2215 ass_free_images(priv->prev_images_root);
2216 priv->prev_images_root = 0;
2218 if (ass_cache_empty(cache->outline_cache, cache->glyph_max)) {
2219 ass_cache_empty(cache->bitmap_cache, 0);
2220 ass_cache_empty(cache->composite_cache, 0);
2221 ass_free_images(priv->prev_images_root);
2222 priv->prev_images_root = 0;
2227 * \brief Start a new frame
2229 static int
2230 ass_start_frame(ASS_Renderer *render_priv, ASS_Track *track,
2231 long long now)
2233 ASS_Settings *settings_priv = &render_priv->settings;
2235 if (!render_priv->settings.frame_width
2236 && !render_priv->settings.frame_height)
2237 return 1; // library not initialized
2239 if (render_priv->library != track->library)
2240 return 1;
2242 if (!render_priv->fontconfig_priv)
2243 return 1;
2245 free_list_clear(render_priv);
2247 if (track->n_events == 0)
2248 return 1; // nothing to do
2250 render_priv->track = track;
2251 render_priv->time = now;
2253 ass_lazy_track_init(render_priv->library, render_priv->track);
2255 render_priv->font_scale = settings_priv->font_size_coeff *
2256 render_priv->orig_height / render_priv->track->PlayResY;
2257 if (render_priv->track->ScaledBorderAndShadow)
2258 render_priv->border_scale =
2259 ((double) render_priv->orig_height) /
2260 render_priv->track->PlayResY;
2261 else
2262 render_priv->border_scale = 1.;
2264 ass_shaper_set_kerning(render_priv->shaper, track->Kerning);
2265 if (track->Language)
2266 ass_shaper_set_language(render_priv->shaper, track->Language);
2267 ass_shaper_set_level(render_priv->shaper, render_priv->settings.shaper);
2269 // PAR correction
2270 render_priv->font_scale_x = render_priv->settings.aspect /
2271 render_priv->settings.storage_aspect;
2273 render_priv->prev_images_root = render_priv->images_root;
2274 render_priv->images_root = 0;
2276 check_cache_limits(render_priv, &render_priv->cache);
2278 return 0;
2281 static int cmp_event_layer(const void *p1, const void *p2)
2283 ASS_Event *e1 = ((EventImages *) p1)->event;
2284 ASS_Event *e2 = ((EventImages *) p2)->event;
2285 if (e1->Layer < e2->Layer)
2286 return -1;
2287 if (e1->Layer > e2->Layer)
2288 return 1;
2289 if (e1->ReadOrder < e2->ReadOrder)
2290 return -1;
2291 if (e1->ReadOrder > e2->ReadOrder)
2292 return 1;
2293 return 0;
2296 static ASS_RenderPriv *get_render_priv(ASS_Renderer *render_priv,
2297 ASS_Event *event)
2299 if (!event->render_priv)
2300 event->render_priv = calloc(1, sizeof(ASS_RenderPriv));
2301 if (render_priv->render_id != event->render_priv->render_id) {
2302 memset(event->render_priv, 0, sizeof(ASS_RenderPriv));
2303 event->render_priv->render_id = render_priv->render_id;
2306 return event->render_priv;
2309 static int overlap(Segment *s1, Segment *s2)
2311 if (s1->a >= s2->b || s2->a >= s1->b ||
2312 s1->ha >= s2->hb || s2->ha >= s1->hb)
2313 return 0;
2314 return 1;
2317 static int cmp_segment(const void *p1, const void *p2)
2319 return ((Segment *) p1)->a - ((Segment *) p2)->a;
2322 static void
2323 shift_event(ASS_Renderer *render_priv, EventImages *ei, int shift)
2325 ASS_Image *cur = ei->imgs;
2326 while (cur) {
2327 cur->dst_y += shift;
2328 // clip top and bottom
2329 if (cur->dst_y < 0) {
2330 int clip = -cur->dst_y;
2331 cur->h -= clip;
2332 cur->bitmap += clip * cur->stride;
2333 cur->dst_y = 0;
2335 if (cur->dst_y + cur->h >= render_priv->height) {
2336 int clip = cur->dst_y + cur->h - render_priv->height;
2337 cur->h -= clip;
2339 if (cur->h <= 0) {
2340 cur->h = 0;
2341 cur->dst_y = 0;
2343 cur = cur->next;
2345 ei->top += shift;
2348 // dir: 1 - move down
2349 // -1 - move up
2350 static int fit_segment(Segment *s, Segment *fixed, int *cnt, int dir)
2352 int i;
2353 int shift = 0;
2355 if (dir == 1) // move down
2356 for (i = 0; i < *cnt; ++i) {
2357 if (s->b + shift <= fixed[i].a || s->a + shift >= fixed[i].b ||
2358 s->hb <= fixed[i].ha || s->ha >= fixed[i].hb)
2359 continue;
2360 shift = fixed[i].b - s->a;
2361 } else // dir == -1, move up
2362 for (i = *cnt - 1; i >= 0; --i) {
2363 if (s->b + shift <= fixed[i].a || s->a + shift >= fixed[i].b ||
2364 s->hb <= fixed[i].ha || s->ha >= fixed[i].hb)
2365 continue;
2366 shift = fixed[i].a - s->b;
2369 fixed[*cnt].a = s->a + shift;
2370 fixed[*cnt].b = s->b + shift;
2371 fixed[*cnt].ha = s->ha;
2372 fixed[*cnt].hb = s->hb;
2373 (*cnt)++;
2374 qsort(fixed, *cnt, sizeof(Segment), cmp_segment);
2376 return shift;
2379 static void
2380 fix_collisions(ASS_Renderer *render_priv, EventImages *imgs, int cnt)
2382 Segment *used = malloc(cnt * sizeof(*used));
2383 int cnt_used = 0;
2384 int i, j;
2386 // fill used[] with fixed events
2387 for (i = 0; i < cnt; ++i) {
2388 ASS_RenderPriv *priv;
2389 if (!imgs[i].detect_collisions)
2390 continue;
2391 priv = get_render_priv(render_priv, imgs[i].event);
2392 if (priv->height > 0) { // it's a fixed event
2393 Segment s;
2394 s.a = priv->top;
2395 s.b = priv->top + priv->height;
2396 s.ha = priv->left;
2397 s.hb = priv->left + priv->width;
2398 if (priv->height != imgs[i].height) { // no, it's not
2399 ass_msg(render_priv->library, MSGL_WARN,
2400 "Event height has changed");
2401 priv->top = 0;
2402 priv->height = 0;
2403 priv->left = 0;
2404 priv->width = 0;
2406 for (j = 0; j < cnt_used; ++j)
2407 if (overlap(&s, used + j)) { // no, it's not
2408 priv->top = 0;
2409 priv->height = 0;
2410 priv->left = 0;
2411 priv->width = 0;
2413 if (priv->height > 0) { // still a fixed event
2414 used[cnt_used].a = priv->top;
2415 used[cnt_used].b = priv->top + priv->height;
2416 used[cnt_used].ha = priv->left;
2417 used[cnt_used].hb = priv->left + priv->width;
2418 cnt_used++;
2419 shift_event(render_priv, imgs + i, priv->top - imgs[i].top);
2423 qsort(used, cnt_used, sizeof(Segment), cmp_segment);
2425 // try to fit other events in free spaces
2426 for (i = 0; i < cnt; ++i) {
2427 ASS_RenderPriv *priv;
2428 if (!imgs[i].detect_collisions)
2429 continue;
2430 priv = get_render_priv(render_priv, imgs[i].event);
2431 if (priv->height == 0) { // not a fixed event
2432 int shift;
2433 Segment s;
2434 s.a = imgs[i].top;
2435 s.b = imgs[i].top + imgs[i].height;
2436 s.ha = imgs[i].left;
2437 s.hb = imgs[i].left + imgs[i].width;
2438 shift = fit_segment(&s, used, &cnt_used, imgs[i].shift_direction);
2439 if (shift)
2440 shift_event(render_priv, imgs + i, shift);
2441 // make it fixed
2442 priv->top = imgs[i].top;
2443 priv->height = imgs[i].height;
2444 priv->left = imgs[i].left;
2445 priv->width = imgs[i].width;
2450 free(used);
2454 * \brief compare two images
2455 * \param i1 first image
2456 * \param i2 second image
2457 * \return 0 if identical, 1 if different positions, 2 if different content
2459 static int ass_image_compare(ASS_Image *i1, ASS_Image *i2)
2461 if (i1->w != i2->w)
2462 return 2;
2463 if (i1->h != i2->h)
2464 return 2;
2465 if (i1->stride != i2->stride)
2466 return 2;
2467 if (i1->color != i2->color)
2468 return 2;
2469 if (i1->bitmap != i2->bitmap)
2470 return 2;
2471 if (i1->dst_x != i2->dst_x)
2472 return 1;
2473 if (i1->dst_y != i2->dst_y)
2474 return 1;
2475 return 0;
2479 * \brief compare current and previous image list
2480 * \param priv library handle
2481 * \return 0 if identical, 1 if different positions, 2 if different content
2483 static int ass_detect_change(ASS_Renderer *priv)
2485 ASS_Image *img, *img2;
2486 int diff;
2488 img = priv->prev_images_root;
2489 img2 = priv->images_root;
2490 diff = 0;
2491 while (img && diff < 2) {
2492 ASS_Image *next, *next2;
2493 next = img->next;
2494 if (img2) {
2495 int d = ass_image_compare(img, img2);
2496 if (d > diff)
2497 diff = d;
2498 next2 = img2->next;
2499 } else {
2500 // previous list is shorter
2501 diff = 2;
2502 break;
2504 img = next;
2505 img2 = next2;
2508 // is the previous list longer?
2509 if (img2)
2510 diff = 2;
2512 return diff;
2516 * \brief render a frame
2517 * \param priv library handle
2518 * \param track track
2519 * \param now current video timestamp (ms)
2520 * \param detect_change a value describing how the new images differ from the previous ones will be written here:
2521 * 0 if identical, 1 if different positions, 2 if different content.
2522 * Can be NULL, in that case no detection is performed.
2524 ASS_Image *ass_render_frame(ASS_Renderer *priv, ASS_Track *track,
2525 long long now, int *detect_change)
2527 int i, cnt, rc;
2528 EventImages *last;
2529 ASS_Image **tail;
2531 // init frame
2532 rc = ass_start_frame(priv, track, now);
2533 if (rc != 0)
2534 return 0;
2536 // render events separately
2537 cnt = 0;
2538 for (i = 0; i < track->n_events; ++i) {
2539 ASS_Event *event = track->events + i;
2540 if ((event->Start <= now)
2541 && (now < (event->Start + event->Duration))) {
2542 if (cnt >= priv->eimg_size) {
2543 priv->eimg_size += 100;
2544 priv->eimg =
2545 realloc(priv->eimg,
2546 priv->eimg_size * sizeof(EventImages));
2548 rc = ass_render_event(priv, event, priv->eimg + cnt);
2549 if (!rc)
2550 ++cnt;
2554 // sort by layer
2555 qsort(priv->eimg, cnt, sizeof(EventImages), cmp_event_layer);
2557 // call fix_collisions for each group of events with the same layer
2558 last = priv->eimg;
2559 for (i = 1; i < cnt; ++i)
2560 if (last->event->Layer != priv->eimg[i].event->Layer) {
2561 fix_collisions(priv, last, priv->eimg + i - last);
2562 last = priv->eimg + i;
2564 if (cnt > 0)
2565 fix_collisions(priv, last, priv->eimg + cnt - last);
2567 // concat lists
2568 tail = &priv->images_root;
2569 for (i = 0; i < cnt; ++i) {
2570 ASS_Image *cur = priv->eimg[i].imgs;
2571 while (cur) {
2572 *tail = cur;
2573 tail = &cur->next;
2574 cur = cur->next;
2578 if (detect_change)
2579 *detect_change = ass_detect_change(priv);
2581 // free the previous image list
2582 ass_free_images(priv->prev_images_root);
2583 priv->prev_images_root = 0;
2585 return priv->images_root;