annotate libass/ass_render.c @ 23026:91076557ab81

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