annotate libass/ass_render.c @ 28779:5d2340c92b12

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