Mercurial > mplayer.hg
annotate libvo/font_load.h @ 6049:4bae3caef7a9
always reser audio input buffer pointer
author | arpi |
---|---|
date | Sun, 12 May 2002 00:44:32 +0000 |
parents | 48e91dc9534b |
children | 0dc9cb756b68 |
rev | line source |
---|---|
213 | 1 |
2 typedef struct { | |
3 unsigned char *bmp; | |
4 unsigned char *pal; | |
5 int w,h,c; | |
6 } raw_file; | |
7 | |
8 typedef struct { | |
214 | 9 char *name; |
1353 | 10 char *fpath; |
213 | 11 int spacewidth; |
12 int charspace; | |
13 int height; | |
14 // char *fname_a; | |
15 // char *fname_b; | |
16 raw_file* pic_a[16]; | |
17 raw_file* pic_b[16]; | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
339
diff
changeset
|
18 short font[65536]; |
5928
48e91dc9534b
.raw width>=65536 support by Georgi Georgiev <chutz@chubaka.homeip.net>
arpi
parents:
5294
diff
changeset
|
19 int start[65536]; // short is not enough for unicode fonts |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
339
diff
changeset
|
20 short width[65536]; |
213 | 21 } font_desc_t; |
22 | |
5294 | 23 extern font_desc_t* vo_font; |
24 | |
339 | 25 raw_file* load_raw(char *name,int verbose); |
26 font_desc_t* read_font_desc(char* fname,float factor,int verbose); |