view TOOLS/subfont-c/osd/gen_osd_h.c @ 14521:1fde3d6b8794

Good news everyone! I finally managed to sync all lavcenc options :) synced options: ibias, pbias, nr, qns, inter_matrix, intra_matrix, vqmod_amp, vqmod_freq, dc, cgop.
author kraymer
date Sun, 16 Jan 2005 21:16:04 +0000
parents 9a754317898e
children
line wrap: on
line source

#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");
}