This commit is contained in:
tTh 2024-05-01 12:32:06 +02:00
parent 8c4b9a6aa0
commit 85dbf384bd
3 changed files with 12 additions and 1 deletions

View File

@ -238,6 +238,7 @@ if (verbosity) {
fprintf(stderr, "\toutput dir '%s'\n", out_dir);
fprintf(stderr, "\tsrc filter '%s'\n", InFchain);
fprintf(stderr, "\tout filter '%s'\n", OutFchain);
fprintf(stderr, "\tfifo size %d\n", fifosize);
}
foo = parse_filter_chain(0, InFchain);

View File

@ -21,6 +21,16 @@
*/
extern int verbosity;
/* -------------------------------------------------------------- */
/* new Sun Mar 31 22:31:31 UTC 2024 */
int add_a_border_0(FloatImg *src, FloatImg *dst)
{
fprintf(stderr, "****** %s:%s to be implemented\n", __FILE__, __func__);
exit(1);
}
/* -------------------------------------------------------------- */
/*
* nouveau Sun Jul 16 07:37:22 UTC 2023

View File

@ -94,7 +94,7 @@ for (idx=0; idx<globbuf.gl_pathc; idx++) {
}
if (0==idx && verbosity) {
fprintf(stderr, "image size %dx%d\n",
fprintf(stderr, "\tfirst image size %dx%d\n",
image.width, image.height);
}