Mercurial > mplayer.hg
annotate libvo/font_load.h @ 1258:50b8a3a5eeed
Portability and old binutils support
author | nick |
---|---|
date | Tue, 03 Jul 2001 07:50:52 +0000 |
parents | 8a7666a78f83 |
children | c3e3b0ae4d06 |
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; |
213 | 10 int spacewidth; |
11 int charspace; | |
12 int height; | |
13 // char *fname_a; | |
14 // char *fname_b; | |
15 raw_file* pic_a[16]; | |
16 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
|
17 short font[65536]; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
339
diff
changeset
|
18 short start[65536]; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
339
diff
changeset
|
19 short width[65536]; |
213 | 20 } font_desc_t; |
21 | |
339 | 22 raw_file* load_raw(char *name,int verbose); |
23 font_desc_t* read_font_desc(char* fname,float factor,int verbose); |