Mercurial > mplayer.hg
view libvo/font_load.h @ 3893:38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
author | arpi |
---|---|
date | Sun, 30 Dec 2001 13:19:53 +0000 (2001-12-30) |
parents | c3e3b0ae4d06 |
children | 4e64fca268e9 |
line wrap: on
line source
typedef struct { unsigned char *bmp; unsigned char *pal; int w,h,c; } raw_file; typedef struct { char *name; char *fpath; int spacewidth; int charspace; int height; // char *fname_a; // char *fname_b; raw_file* pic_a[16]; raw_file* pic_b[16]; short font[65536]; short start[65536]; short width[65536]; } font_desc_t; raw_file* load_raw(char *name,int verbose); font_desc_t* read_font_desc(char* fname,float factor,int verbose);