[Mplayer-cvslog] CVS: main/TOOLS/subfont-c/osd gen_osd_h.c,NONE,1.1

Arpi of Ize arpi at mplayerhq.hu
Wed Aug 28 22:52:04 CEST 2002


Update of /cvsroot/mplayer/main/TOOLS/subfont-c/osd
In directory mail:/var/tmp.root/cvs-serv17935/TOOLS/subfont-c/osd

Added Files:
	gen_osd_h.c 
Log Message:
freetype 2.0/2.1+ support - disabled by default until bugs fixed
patch by Jindrich Makovicka <makovick at kmlinux.fjfi.cvut.cz>


--- NEW FILE ---
#include <stdio.h>

int main()
{
    int c;
    int cnt;
    printf("unsigned char *osd_font_pfb = {");
    for (cnt = 0;;cnt++) {
	if (cnt % 16 == 0) printf("\n");
	c = getchar();
	if (c < 0) break;
	printf("0x%02x,", c);
    }
    printf("};\n");
}




More information about the MPlayer-cvslog mailing list