Compare commits

...

2 Commits

Author SHA1 Message Date
f7ff7e385a more debug in verbose mode 2020-05-29 13:32:15 +02:00
tonton th
7ff4453fb1 add debian package name 2020-05-29 13:30:37 +02:00
2 changed files with 6 additions and 2 deletions

View File

@ -210,7 +210,9 @@ lesquels sont décrits en page \pageref{outils}.
Vous devez, en dehors des outils classiques (bash, gcc, make\dots),
avoir quelques bibliothèques installées\footnote{Les \texttt{-dev}
pour Debian et dérivées}~:
\textsf{libv4l2, libpnglite, libtiff, libnetpbm, libz},
\textsf{libv4l2, libpnglite, libtiff,
libnetpbm\footnote{package libnetpbm10-dev},
libz\footnote{package zlib1g-dev}},
éventuellement avec le \textsf{-dev} correspondant,
et probablement d'autres choses.

View File

@ -111,7 +111,8 @@ if (type < 0) {
fname = argv[optind];
width = atoi(argv[optind+1]); height = atoi(argv[optind+2]);
if (verbosity) fprintf(stderr, "making '%s' %d x %d\n", fname, width, height);
if (verbosity) fprintf(stderr, "making '%s' %d x %d, type %d\n",
fname, width, height, type);
srand48(getpid() ^ time(NULL));
@ -130,6 +131,7 @@ switch(type) {
case T_HDEG_A: fimg_hdeg_a(&fimg, 1.0); break;
case T_VDEG_A: fimg_vdeg_a(&fimg, 1.0); break;
case T_TPAT0: fimg_test_pattern(&fimg, 0, fvalue); break;
case -1: exit(1);
}
foo = fimg_dump_to_file(&fimg, fname, 0);