annotate TOOLS/subfont-c/osd/gen_osd_h.c @ 8996:c5772dde2914

- restore old behaviour of -channels,-srate,-format - disable audio if libaf init failed (to avoid sig11 in decoder)
author arpi
date Sat, 18 Jan 2003 19:08:42 +0000
parents 0dc9cb756b68
children 9a754317898e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7122
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
1 #include <stdio.h>
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
2
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
3 int main()
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
4 {
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
5 int c;
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
6 int cnt;
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
7 printf("unsigned char *osd_font_pfb = {");
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
8 for (cnt = 0;;cnt++) {
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
9 if (cnt % 16 == 0) printf("\n");
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
10 c = getchar();
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
11 if (c < 0) break;
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
12 printf("0x%02x,", c);
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
13 }
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
14 printf("};\n");
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
diff changeset
15 }