Mercurial > mplayer.hg
annotate libass/ass_cache.c @ 21542:0c19aa6f8e4e
Fix misplaced http_free
| author | reimar |
|---|---|
| date | Sat, 09 Dec 2006 19:50:08 +0000 |
| parents | 7af6c25a0cfc |
| children | fb365c2b3d05 |
| 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 | 21 #include "config.h" |
| 22 | |
| 23 #include <ft2build.h> | |
| 24 #include FT_FREETYPE_H | |
|
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19545
diff
changeset
|
25 #include FT_GLYPH_H |
| 18937 | 26 |
| 27 #include <assert.h> | |
| 28 | |
|
21026
d138463e820b
Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
20637
diff
changeset
|
29 #include "mputils.h" |
|
21458
7af6c25a0cfc
Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents:
21348
diff
changeset
|
30 #include "ass.h" |
| 18937 | 31 #include "ass_fontconfig.h" |
| 21322 | 32 #include "ass_font.h" |
|
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19545
diff
changeset
|
33 #include "ass_bitmap.h" |
| 18937 | 34 #include "ass_cache.h" |
| 35 | |
| 21265 | 36 #define MAX_FONT_CACHE_SIZE 100 |
| 18937 | 37 |
| 21317 | 38 static ass_font_t** font_cache; |
| 21265 | 39 static int font_cache_size; |
| 18937 | 40 |
| 21265 | 41 static int font_compare(ass_font_desc_t* a, ass_font_desc_t* b) { |
| 18937 | 42 if (strcmp(a->family, b->family) != 0) |
| 43 return 0; | |
| 44 if (a->bold != b->bold) | |
| 45 return 0; | |
| 46 if (a->italic != b->italic) | |
| 47 return 0; | |
| 48 return 1; | |
| 49 } | |
| 50 | |
| 51 /** | |
| 21317 | 52 * \brief Get a face struct from cache. |
| 18937 | 53 * \param desc required face description |
| 21317 | 54 * \return font struct |
| 55 */ | |
| 56 ass_font_t* ass_font_cache_find(ass_font_desc_t* desc) | |
| 18937 | 57 { |
| 58 int i; | |
| 59 | |
| 21265 | 60 for (i=0; i<font_cache_size; ++i) |
| 21317 | 61 if (font_compare(desc, &(font_cache[i]->desc))) |
| 62 return font_cache[i]; | |
| 63 | |
| 64 return 0; | |
| 65 } | |
| 18937 | 66 |
| 21317 | 67 /** |
| 68 * \brief Add a face struct to cache. | |
| 69 * \param font font struct | |
| 70 */ | |
| 71 void ass_font_cache_add(ass_font_t* font) | |
| 72 { | |
| 21265 | 73 if (font_cache_size == MAX_FONT_CACHE_SIZE) { |
| 21066 | 74 mp_msg(MSGT_ASS, MSGL_FATAL, MSGTR_LIBASS_TooManyFonts); |
| 21317 | 75 // FIXME: possible memory leak |
| 76 return; | |
| 18937 | 77 } |
| 78 | |
| 21317 | 79 font_cache[font_cache_size] = font; |
| 21277 | 80 font_cache_size++; |
| 18937 | 81 } |
| 82 | |
| 21265 | 83 void ass_font_cache_init(void) |
| 18937 | 84 { |
| 21317 | 85 font_cache = calloc(MAX_FONT_CACHE_SIZE, sizeof(ass_font_t*)); |
| 21265 | 86 font_cache_size = 0; |
| 18937 | 87 } |
| 88 | |
| 21265 | 89 void ass_font_cache_done(void) |
| 18937 | 90 { |
| 91 int i; | |
| 21265 | 92 for (i = 0; i < font_cache_size; ++i) { |
| 21317 | 93 ass_font_t* item = font_cache[i]; |
| 21277 | 94 ass_font_free(item); |
| 18937 | 95 } |
| 21265 | 96 free(font_cache); |
| 97 font_cache_size = 0; | |
| 18937 | 98 } |
| 99 | |
| 100 //--------------------------------- | |
| 101 // glyph cache | |
| 102 | |
| 103 #define GLYPH_HASH_SIZE (0xFFFF + 13) | |
| 104 | |
| 105 typedef struct glyph_hash_item_s { | |
| 106 glyph_hash_key_t key; | |
| 107 glyph_hash_val_t val; | |
| 108 struct glyph_hash_item_s* next; | |
| 109 } glyph_hash_item_t; | |
| 110 | |
| 111 typedef glyph_hash_item_t* glyph_hash_item_p; | |
| 112 | |
| 113 static glyph_hash_item_p* glyph_hash_root; | |
| 114 static int glyph_hash_size; | |
| 115 | |
| 116 static int glyph_compare(glyph_hash_key_t* a, glyph_hash_key_t* b) { | |
| 117 if (memcmp(a, b, sizeof(glyph_hash_key_t)) == 0) | |
| 118 return 1; | |
| 119 else | |
| 120 return 0; | |
| 121 } | |
| 122 | |
| 123 static unsigned glyph_hash(glyph_hash_key_t* key) { | |
| 124 unsigned val = 0; | |
| 125 unsigned i; | |
|
21348
d7920b488fa2
Use (ass_font_t, char code) instead of (FT_Face, glyph index) to identify
eugeni
parents:
21322
diff
changeset
|
126 for (i = 0; i < sizeof(key->font); ++i) |
|
d7920b488fa2
Use (ass_font_t, char code) instead of (FT_Face, glyph index) to identify
eugeni
parents:
21322
diff
changeset
|
127 val += *(unsigned char *)(&(key->font) + i); |
| 18937 | 128 val <<= 21; |
| 129 | |
| 130 if (key->bitmap) val &= 0x80000000; | |
| 19848 | 131 if (key->be) val &= 0x40000000; |
|
21348
d7920b488fa2
Use (ass_font_t, char code) instead of (FT_Face, glyph index) to identify
eugeni
parents:
21322
diff
changeset
|
132 val += key->ch; |
| 18937 | 133 val += key->size << 8; |
| 134 val += key->outline << 3; | |
| 135 val += key->advance.x << 10; | |
| 136 val += key->advance.y << 16; | |
| 137 val += key->bold << 1; | |
| 138 val += key->italic << 20; | |
| 139 return val; | |
| 140 } | |
| 141 | |
| 142 /** | |
| 143 * \brief Add a glyph to glyph cache. | |
| 144 * \param key hash key | |
| 145 * \param val hash val: 2 bitmap glyphs + some additional info | |
| 146 */ | |
| 147 void cache_add_glyph(glyph_hash_key_t* key, glyph_hash_val_t* val) | |
| 148 { | |
| 149 unsigned hash = glyph_hash(key); | |
| 150 glyph_hash_item_t** next = glyph_hash_root + (hash % GLYPH_HASH_SIZE); | |
| 151 while (*next) { | |
| 152 if (glyph_compare(key, &((*next)->key))) | |
| 153 return; | |
| 154 next = &((*next)->next); | |
| 155 assert(next); | |
| 156 } | |
| 157 (*next) = malloc(sizeof(glyph_hash_item_t)); | |
| 158 // (*next)->desc = glyph_key_copy(key, &((*next)->key)); | |
| 159 memcpy(&((*next)->key), key, sizeof(glyph_hash_key_t)); | |
| 160 memcpy(&((*next)->val), val, sizeof(glyph_hash_val_t)); | |
| 161 (*next)->next = 0; | |
| 162 | |
| 163 glyph_hash_size ++; | |
| 164 /* if (glyph_hash_size && (glyph_hash_size % 25 == 0)) { | |
| 165 printf("\nGlyph cache: %d entries, %d bytes\n", glyph_hash_size, glyph_hash_size * sizeof(glyph_hash_item_t)); | |
| 166 } */ | |
| 167 } | |
| 168 | |
| 169 /** | |
| 170 * \brief Get a glyph from glyph cache. | |
| 171 * \param key hash key | |
| 172 * \return requested hash val or 0 if not found | |
| 173 */ | |
| 174 glyph_hash_val_t* cache_find_glyph(glyph_hash_key_t* key) | |
| 175 { | |
| 176 unsigned hash = glyph_hash(key); | |
| 177 glyph_hash_item_t* item = glyph_hash_root[hash % GLYPH_HASH_SIZE]; | |
| 178 while (item) { | |
| 179 if (glyph_compare(key, &(item->key))) { | |
| 180 return &(item->val); | |
| 181 } | |
| 182 item = item->next; | |
| 183 } | |
| 184 return 0; | |
| 185 } | |
| 186 | |
| 187 void ass_glyph_cache_init(void) | |
| 188 { | |
| 189 glyph_hash_root = calloc(GLYPH_HASH_SIZE, sizeof(glyph_hash_item_p)); | |
| 190 glyph_hash_size = 0; | |
| 191 } | |
| 192 | |
| 19545 | 193 void ass_glyph_cache_done(void) |
| 18937 | 194 { |
| 195 int i; | |
| 196 for (i = 0; i < GLYPH_HASH_SIZE; ++i) { | |
| 197 glyph_hash_item_t* item = glyph_hash_root[i]; | |
| 198 while (item) { | |
| 199 glyph_hash_item_t* next = item->next; | |
|
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19545
diff
changeset
|
200 if (item->val.bm) ass_free_bitmap(item->val.bm); |
|
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19545
diff
changeset
|
201 if (item->val.bm_o) ass_free_bitmap(item->val.bm_o); |
| 19965 | 202 if (item->val.bm_s) ass_free_bitmap(item->val.bm_s); |
| 18937 | 203 free(item); |
| 204 item = next; | |
| 205 } | |
| 206 } | |
| 19545 | 207 free(glyph_hash_root); |
| 18937 | 208 glyph_hash_size = 0; |
| 209 } | |
| 210 | |
| 19545 | 211 void ass_glyph_cache_reset(void) |
| 19539 | 212 { |
| 19545 | 213 ass_glyph_cache_done(); |
| 214 ass_glyph_cache_init(); | |
| 19539 | 215 } |
| 216 |
