Mercurial > mplayer.hg
annotate libass/ass_cache.c @ 24315:12f2487fb845
Fix compilation after patch to remove global vo_hdc
author | reimar |
---|---|
date | Mon, 03 Sep 2007 13:18:26 +0000 |
parents | bb2f626c72a4 |
children | 0f892cd714b2 |
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 | |
22292 | 23 #include <inttypes.h> |
18937 | 24 #include <ft2build.h> |
25 #include FT_FREETYPE_H | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19545
diff
changeset
|
26 #include FT_GLYPH_H |
18937 | 27 |
28 #include <assert.h> | |
29 | |
21026
d138463e820b
Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
20637
diff
changeset
|
30 #include "mputils.h" |
21458
7af6c25a0cfc
Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents:
21348
diff
changeset
|
31 #include "ass.h" |
18937 | 32 #include "ass_fontconfig.h" |
21322 | 33 #include "ass_font.h" |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19545
diff
changeset
|
34 #include "ass_bitmap.h" |
18937 | 35 #include "ass_cache.h" |
36 | |
23016 | 37 |
38 typedef struct hashmap_item_s { | |
39 void* key; | |
40 void* value; | |
41 struct hashmap_item_s* next; | |
42 } hashmap_item_t; | |
43 typedef hashmap_item_t* hashmap_item_p; | |
44 | |
45 struct hashmap_s { | |
46 int nbuckets; | |
47 size_t key_size, value_size; | |
48 hashmap_item_p* root; | |
49 hashmap_item_dtor_t item_dtor; // a destructor for hashmap key/value pairs | |
50 hashmap_key_compare_t key_compare; | |
51 hashmap_hash_t hash; | |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
52 // stats |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
53 int hit_count; |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
54 int miss_count; |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
55 int count; |
23016 | 56 }; |
57 | |
58 #define FNV1_32A_INIT (unsigned)0x811c9dc5 | |
59 | |
60 static inline unsigned fnv_32a_buf(void* buf, size_t len, unsigned hval) | |
61 { | |
62 unsigned char *bp = buf; | |
63 unsigned char *be = bp + len; | |
64 while (bp < be) { | |
65 hval ^= (unsigned)*bp++; | |
66 hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24); | |
67 } | |
68 return hval; | |
69 } | |
70 static inline unsigned fnv_32a_str(char* str, unsigned hval) | |
71 { | |
72 unsigned char* s = (unsigned char*)str; | |
73 while (*s) { | |
74 hval ^= (unsigned)*s++; | |
75 hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24); | |
76 } | |
77 return hval; | |
78 } | |
79 | |
80 static unsigned hashmap_hash(void* buf, size_t len) | |
81 { | |
82 return fnv_32a_buf(buf, len, FNV1_32A_INIT); | |
83 } | |
84 | |
85 static int hashmap_key_compare(void* a, void* b, size_t size) | |
86 { | |
87 return (memcmp(a, b, size) == 0); | |
88 } | |
89 | |
90 static void hashmap_item_dtor(void* key, size_t key_size, void* value, size_t value_size) | |
91 { | |
92 free(key); | |
93 free(value); | |
94 } | |
18937 | 95 |
23016 | 96 hashmap_t* hashmap_init(size_t key_size, size_t value_size, int nbuckets, |
97 hashmap_item_dtor_t item_dtor, hashmap_key_compare_t key_compare, | |
98 hashmap_hash_t hash) | |
99 { | |
100 hashmap_t* map = calloc(1, sizeof(hashmap_t)); | |
101 map->nbuckets = nbuckets; | |
102 map->key_size = key_size; | |
103 map->value_size = value_size; | |
104 map->root = calloc(nbuckets, sizeof(hashmap_item_p)); | |
105 map->item_dtor = item_dtor ? item_dtor : hashmap_item_dtor; | |
106 map->key_compare = key_compare ? key_compare : hashmap_key_compare; | |
107 map->hash = hash ? hash : hashmap_hash; | |
108 return map; | |
109 } | |
110 | |
111 void hashmap_done(hashmap_t* map) | |
112 { | |
113 int i; | |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
114 // print stats |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
115 if (map->count > 0 || map->hit_count + map->miss_count > 0) |
23020 | 116 mp_msg(MSGT_ASS, MSGL_V, "cache statistics: \n total accesses: %d\n hits: %d\n misses: %d\n object count: %d\n", |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
117 map->hit_count + map->miss_count, map->hit_count, map->miss_count, map->count); |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
118 |
23016 | 119 for (i = 0; i < map->nbuckets; ++i) { |
120 hashmap_item_t* item = map->root[i]; | |
121 while (item) { | |
122 hashmap_item_t* next = item->next; | |
123 map->item_dtor(item->key, map->key_size, item->value, map->value_size); | |
124 free(item); | |
125 item = next; | |
126 } | |
127 } | |
128 free(map->root); | |
129 free(map); | |
130 } | |
18937 | 131 |
23016 | 132 // does nothing if key already exists |
23211
d9b4bfea1093
Make cache_*_add functions return the pointer to new (copied) value.
eugeni
parents:
23025
diff
changeset
|
133 void* hashmap_insert(hashmap_t* map, void* key, void* value) |
23016 | 134 { |
135 unsigned hash = map->hash(key, map->key_size); | |
136 hashmap_item_t** next = map->root + (hash % map->nbuckets); | |
137 while (*next) { | |
138 if (map->key_compare(key, (*next)->key, map->key_size)) | |
23214 | 139 return (*next)->value; |
23016 | 140 next = &((*next)->next); |
141 assert(next); | |
142 } | |
143 (*next) = malloc(sizeof(hashmap_item_t)); | |
144 (*next)->key = malloc(map->key_size); | |
145 (*next)->value = malloc(map->value_size); | |
146 memcpy((*next)->key, key, map->key_size); | |
147 memcpy((*next)->value, value, map->value_size); | |
148 (*next)->next = 0; | |
149 | |
150 map->count ++; | |
23211
d9b4bfea1093
Make cache_*_add functions return the pointer to new (copied) value.
eugeni
parents:
23025
diff
changeset
|
151 return (*next)->value; |
23016 | 152 } |
153 | |
154 void* hashmap_find(hashmap_t* map, void* key) | |
155 { | |
156 unsigned hash = map->hash(key, map->key_size); | |
157 hashmap_item_t* item = map->root[hash % map->nbuckets]; | |
158 while (item) { | |
159 if (map->key_compare(key, item->key, map->key_size)) { | |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
160 map->hit_count++; |
23016 | 161 return item->value; |
162 } | |
163 item = item->next; | |
164 } | |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
165 map->miss_count++; |
23016 | 166 return 0; |
167 } | |
168 | |
169 //--------------------------------- | |
170 // font cache | |
171 | |
172 hashmap_t* font_cache; | |
173 | |
174 static unsigned font_desc_hash(void* buf, size_t len) | |
175 { | |
176 ass_font_desc_t* desc = buf; | |
177 unsigned hval; | |
178 hval = fnv_32a_str(desc->family, FNV1_32A_INIT); | |
179 hval = fnv_32a_buf(&desc->bold, sizeof(desc->bold), hval); | |
180 hval = fnv_32a_buf(&desc->italic, sizeof(desc->italic), hval); | |
181 return hval; | |
182 } | |
183 | |
184 static int font_compare(void* key1, void* key2, size_t key_size) { | |
185 ass_font_desc_t* a = key1; | |
186 ass_font_desc_t* b = key2; | |
18937 | 187 if (strcmp(a->family, b->family) != 0) |
188 return 0; | |
189 if (a->bold != b->bold) | |
190 return 0; | |
191 if (a->italic != b->italic) | |
192 return 0; | |
193 return 1; | |
194 } | |
195 | |
23016 | 196 static void font_hash_dtor(void* key, size_t key_size, void* value, size_t value_size) |
197 { | |
198 ass_font_free(value); | |
199 free(key); | |
200 } | |
201 | |
21317 | 202 ass_font_t* ass_font_cache_find(ass_font_desc_t* desc) |
18937 | 203 { |
23016 | 204 return hashmap_find(font_cache, desc); |
21317 | 205 } |
18937 | 206 |
21317 | 207 /** |
208 * \brief Add a face struct to cache. | |
209 * \param font font struct | |
210 */ | |
23211
d9b4bfea1093
Make cache_*_add functions return the pointer to new (copied) value.
eugeni
parents:
23025
diff
changeset
|
211 void* ass_font_cache_add(ass_font_t* font) |
21317 | 212 { |
23211
d9b4bfea1093
Make cache_*_add functions return the pointer to new (copied) value.
eugeni
parents:
23025
diff
changeset
|
213 return hashmap_insert(font_cache, &(font->desc), font); |
18937 | 214 } |
215 | |
21265 | 216 void ass_font_cache_init(void) |
18937 | 217 { |
23016 | 218 font_cache = hashmap_init(sizeof(ass_font_desc_t), |
219 sizeof(ass_font_t), | |
220 1000, | |
221 font_hash_dtor, font_compare, font_desc_hash); | |
18937 | 222 } |
223 | |
21265 | 224 void ass_font_cache_done(void) |
18937 | 225 { |
23016 | 226 hashmap_done(font_cache); |
18937 | 227 } |
228 | |
229 //--------------------------------- | |
23017 | 230 // bitmap cache |
18937 | 231 |
23017 | 232 hashmap_t* bitmap_cache; |
18937 | 233 |
23017 | 234 static void bitmap_hash_dtor(void* key, size_t key_size, void* value, size_t value_size) |
23016 | 235 { |
23017 | 236 bitmap_hash_val_t* v = value; |
23016 | 237 if (v->bm) ass_free_bitmap(v->bm); |
238 if (v->bm_o) ass_free_bitmap(v->bm_o); | |
239 if (v->bm_s) ass_free_bitmap(v->bm_s); | |
240 free(key); | |
241 free(value); | |
18937 | 242 } |
243 | |
23211
d9b4bfea1093
Make cache_*_add functions return the pointer to new (copied) value.
eugeni
parents:
23025
diff
changeset
|
244 void* cache_add_bitmap(bitmap_hash_key_t* key, bitmap_hash_val_t* val) |
18937 | 245 { |
23211
d9b4bfea1093
Make cache_*_add functions return the pointer to new (copied) value.
eugeni
parents:
23025
diff
changeset
|
246 return hashmap_insert(bitmap_cache, key, val); |
18937 | 247 } |
248 | |
249 /** | |
23017 | 250 * \brief Get a bitmap from bitmap cache. |
18937 | 251 * \param key hash key |
252 * \return requested hash val or 0 if not found | |
253 */ | |
23017 | 254 bitmap_hash_val_t* cache_find_bitmap(bitmap_hash_key_t* key) |
18937 | 255 { |
23017 | 256 return hashmap_find(bitmap_cache, key); |
18937 | 257 } |
258 | |
23017 | 259 void ass_bitmap_cache_init(void) |
18937 | 260 { |
23017 | 261 bitmap_cache = hashmap_init(sizeof(bitmap_hash_key_t), |
262 sizeof(bitmap_hash_val_t), | |
23016 | 263 0xFFFF + 13, |
23017 | 264 bitmap_hash_dtor, NULL, NULL); |
18937 | 265 } |
266 | |
23017 | 267 void ass_bitmap_cache_done(void) |
18937 | 268 { |
23017 | 269 hashmap_done(bitmap_cache); |
18937 | 270 } |
271 | |
23017 | 272 void ass_bitmap_cache_reset(void) |
19539 | 273 { |
23017 | 274 ass_bitmap_cache_done(); |
275 ass_bitmap_cache_init(); | |
19539 | 276 } |
277 | |
23018 | 278 //--------------------------------- |
279 // glyph cache | |
280 | |
281 hashmap_t* glyph_cache; | |
282 | |
283 static void glyph_hash_dtor(void* key, size_t key_size, void* value, size_t value_size) | |
284 { | |
285 glyph_hash_val_t* v = value; | |
286 if (v->glyph) FT_Done_Glyph(v->glyph); | |
23025
ab0943242d1a
Store outline_glyph (glyph border) in glyph cache.
eugeni
parents:
23020
diff
changeset
|
287 if (v->outline_glyph) FT_Done_Glyph(v->outline_glyph); |
23018 | 288 free(key); |
289 free(value); | |
290 } | |
291 | |
23211
d9b4bfea1093
Make cache_*_add functions return the pointer to new (copied) value.
eugeni
parents:
23025
diff
changeset
|
292 void* cache_add_glyph(glyph_hash_key_t* key, glyph_hash_val_t* val) |
23018 | 293 { |
23211
d9b4bfea1093
Make cache_*_add functions return the pointer to new (copied) value.
eugeni
parents:
23025
diff
changeset
|
294 return hashmap_insert(glyph_cache, key, val); |
23018 | 295 } |
296 | |
297 /** | |
298 * \brief Get a glyph from glyph cache. | |
299 * \param key hash key | |
300 * \return requested hash val or 0 if not found | |
301 */ | |
302 glyph_hash_val_t* cache_find_glyph(glyph_hash_key_t* key) | |
303 { | |
304 return hashmap_find(glyph_cache, key); | |
305 } | |
306 | |
307 void ass_glyph_cache_init(void) | |
308 { | |
309 glyph_cache = hashmap_init(sizeof(glyph_hash_key_t), | |
310 sizeof(glyph_hash_val_t), | |
311 0xFFFF + 13, | |
312 glyph_hash_dtor, NULL, NULL); | |
313 } | |
314 | |
315 void ass_glyph_cache_done(void) | |
316 { | |
317 hashmap_done(glyph_cache); | |
318 } | |
319 | |
320 void ass_glyph_cache_reset(void) | |
321 { | |
322 ass_glyph_cache_done(); | |
323 ass_glyph_cache_init(); | |
324 } |