mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
bfa6c4f83a
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@340 b3059339-0415-0410-9bf9-f77b7e298cf2
24 lines
466 B
C
24 lines
466 B
C
|
|
typedef struct {
|
|
unsigned char *bmp;
|
|
unsigned char *pal;
|
|
int w,h,c;
|
|
} raw_file;
|
|
|
|
typedef struct {
|
|
char *name;
|
|
int spacewidth;
|
|
int charspace;
|
|
int height;
|
|
// char *fname_a;
|
|
// char *fname_b;
|
|
raw_file* pic_a[16];
|
|
raw_file* pic_b[16];
|
|
short font[512];
|
|
short start[512];
|
|
short width[512];
|
|
} font_desc_t;
|
|
|
|
raw_file* load_raw(char *name,int verbose);
|
|
font_desc_t* read_font_desc(char* fname,float factor,int verbose);
|