annotate libass/ass_cache.h @ 21280:db66f5bdb5cd

Remove unnecessary variable indirection.
author diego
date Sun, 26 Nov 2006 22:53:57 +0000
parents 0603972f083c
children dcfd069efd8f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20008
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*-
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
2 // vim:ts=8:sw=8:noet:ai:
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
3 /*
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
4 Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
5
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
6 This program is free software; you can redistribute it and/or modify
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
7 it under the terms of the GNU General Public License as published by
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
8 the Free Software Foundation; either version 2 of the License, or
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
9 (at your option) any later version.
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
10
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
11 This program is distributed in the hope that it will be useful,
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
14 GNU General Public License for more details.
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
15
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
16 You should have received a copy of the GNU General Public License
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
17 along with this program; if not, write to the Free Software
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
19 */
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19965
diff changeset
20
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
21 #ifndef __ASS_CACHE_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
22 #define __ASS_CACHE_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
23
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
24 #include <ft2build.h>
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
25 #include FT_FREETYPE_H
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
26 #include FT_STROKER_H
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
27 #include FT_GLYPH_H
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
28
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
29 // font cache
21265
4e7a7dea3e1f Rename:
eugeni
parents: 20008
diff changeset
30 typedef struct ass_font_desc_s {
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
31 char* family;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
32 unsigned bold;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
33 unsigned italic;
21265
4e7a7dea3e1f Rename:
eugeni
parents: 20008
diff changeset
34 } ass_font_desc_t;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
35
21266
cda1a5ebc150 Move ass_font_t to header.
eugeni
parents: 21265
diff changeset
36 typedef struct ass_font_s {
cda1a5ebc150 Move ass_font_t to header.
eugeni
parents: 21265
diff changeset
37 ass_font_desc_t desc;
cda1a5ebc150 Move ass_font_t to header.
eugeni
parents: 21265
diff changeset
38 char* path;
cda1a5ebc150 Move ass_font_t to header.
eugeni
parents: 21265
diff changeset
39 int index;
cda1a5ebc150 Move ass_font_t to header.
eugeni
parents: 21265
diff changeset
40 FT_Face face;
21277
0603972f083c Move fonts-related code to a separate file.
eugeni
parents: 21267
diff changeset
41 FT_Matrix m; // current transformation
0603972f083c Move fonts-related code to a separate file.
eugeni
parents: 21267
diff changeset
42 FT_Vector v; // current shift
0603972f083c Move fonts-related code to a separate file.
eugeni
parents: 21267
diff changeset
43 int size;
21266
cda1a5ebc150 Move ass_font_t to header.
eugeni
parents: 21265
diff changeset
44 } ass_font_t;
cda1a5ebc150 Move ass_font_t to header.
eugeni
parents: 21265
diff changeset
45
21265
4e7a7dea3e1f Rename:
eugeni
parents: 20008
diff changeset
46 void ass_font_cache_init(void);
21267
9ec30b8622ec Make ass_new_font return ass_font_t struct (instead of just FT_Face).
eugeni
parents: 21266
diff changeset
47 ass_font_t* ass_new_font(FT_Library library, void* fontconfig_priv, ass_font_desc_t* desc);
21265
4e7a7dea3e1f Rename:
eugeni
parents: 20008
diff changeset
48 void ass_font_cache_done(void);
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
49
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
50
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
51 // describes a glyph; glyphs with equivalents structs are considered identical
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
52 typedef struct glyph_hash_key_s {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
53 char bitmap; // bool : true = bitmap, false = outline
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
54 FT_Face face;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
55 int size; // font size
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
56 int index; // glyph index in the face
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
57 unsigned outline; // border width, 16.16 fixed point value
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
58 int bold, italic;
19848
07be98a5dd5f Add \be (blur edges) support to libass.
eugeni
parents: 19846
diff changeset
59 char be; // blur edges
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
60
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
61 // the following affects bitmap glyphs only
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
62 unsigned scale_x, scale_y; // 16.16
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
63 int angle; // signed 16.16
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
64
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
65 FT_Vector advance; // subpixel shift vector
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
66 } glyph_hash_key_t;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
67
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
68 typedef struct glyph_hash_val_s {
19846
bcc792bfa431 Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents: 19539
diff changeset
69 bitmap_t* bm; // the actual glyph bitmaps
bcc792bfa431 Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents: 19539
diff changeset
70 bitmap_t* bm_o;
19965
70352570e9ae Shadow support in libass.
eugeni
parents: 19848
diff changeset
71 bitmap_t* bm_s;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
72 FT_BBox bbox_scaled; // bbox after scaling, but before rotation
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
73 FT_Vector advance; // 26.6, advance distance to the next glyph in line
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
74 } glyph_hash_val_t;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
75
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
76 void ass_glyph_cache_init(void);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
77 void cache_add_glyph(glyph_hash_key_t* key, glyph_hash_val_t* val);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
78 glyph_hash_val_t* cache_find_glyph(glyph_hash_key_t* key);
19539
64009ae411fb Reset glyph cache on reconfigure.
eugeni
parents: 18937
diff changeset
79 void ass_glyph_cache_reset(void);
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
80 void ass_glyph_cache_done(void);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
81
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
82 #endif
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
83