Compare commits
No commits in common. "97698bb66f7c46d8485ebfb4b415e7a8ca080e5b" and "5c9f76c74946990be866131d347ab09a95907d47" have entirely different histories.
97698bb66f
...
5c9f76c749
@ -9,8 +9,7 @@ LIBS = ../libfloatimg.a -ltiff -lpnglite -lm -lz -lcfitsio
|
||||
OBJS = fonctions.o sfx.o crapulator.o glitches.o metriques.o \
|
||||
filterstack.o single.o
|
||||
|
||||
DEPS = ../floatimg.h \
|
||||
fonctions.h crapulator.h metriques.h glitches.h sfx.h \
|
||||
DEPS = fonctions.h crapulator.h metriques.h glitches.h sfx.h \
|
||||
filterstack.h crapdef.h crapstr.h single.h
|
||||
|
||||
all: fonderie interpolator singlepass t
|
||||
|
@ -217,8 +217,8 @@ char *out_dir = "p8";
|
||||
// OBSOLETE int out_effect = 0;
|
||||
int steps = 1;
|
||||
int blanks = 20;
|
||||
char *InFchain = "none";
|
||||
char *OutFchain = "none";
|
||||
char *InFchain = "0";
|
||||
char *OutFchain = "0";
|
||||
|
||||
fprintf(stderr, "*** %s\n\tcompiled %s, %s, pid %d\n",
|
||||
argv[0], __DATE__, __TIME__, getpid());
|
||||
@ -255,10 +255,10 @@ while ((opt = getopt(argc, argv, "B:E:F:ghI:LO:s:T:vw:x:")) != -1) {
|
||||
}
|
||||
|
||||
if (verbosity) {
|
||||
fprintf(stderr, "\tinput glob '%s'\n", in_pattern);
|
||||
fprintf(stderr, "\toutput dir '%s'\n", out_dir);
|
||||
fprintf(stderr, "\tsrc filter '%s'\n", InFchain);
|
||||
fprintf(stderr, "\tout filter '%s'\n", OutFchain);
|
||||
fprintf(stderr, "input glob '%s'\n", in_pattern);
|
||||
fprintf(stderr, "output dir '%s'\n", out_dir);
|
||||
fprintf(stderr, "src filter '%s'\n", InFchain);
|
||||
fprintf(stderr, "out filter '%s'\n", OutFchain);
|
||||
}
|
||||
|
||||
foo = parse_filter_chain(0, InFchain);
|
||||
@ -272,12 +272,6 @@ if (foo) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (verbosity) {
|
||||
filterstack_list(0, "input");
|
||||
filterstack_list(1, "ouput");
|
||||
fprintf(stderr, ".\n");
|
||||
}
|
||||
|
||||
foo = demarre_la_machine(in_pattern, out_dir, fifosize, 0,
|
||||
0, steps, blanks);
|
||||
fprintf(stderr, "retour du big-run de la machine -> %d\n", foo);
|
||||
|
Loading…
Reference in New Issue
Block a user