|
|
|
@ -163,7 +163,13 @@ for (idx=0; idx<globbuf.gl_pathc; idx++) {
@@ -163,7 +163,13 @@ for (idx=0; idx<globbuf.gl_pathc; idx++) {
|
|
|
|
|
value = idx_values[idx].value; |
|
|
|
|
|
|
|
|
|
/* here, insert the input filter */ |
|
|
|
|
foo = crapulator(&B, infx, value); |
|
|
|
|
if (infx) { |
|
|
|
|
foo = crapulator(&B, infx, value); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
foo = filterstack_run(0, &B, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (foo) { |
|
|
|
|
fprintf(stderr, "%s: input fx fail %d\n", __func__, foo); |
|
|
|
|
exit(1); |
|
|
|
@ -181,9 +187,9 @@ for (idx=0; idx<globbuf.gl_pathc; idx++) {
@@ -181,9 +187,9 @@ for (idx=0; idx<globbuf.gl_pathc; idx++) {
|
|
|
|
|
// exit(1);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
foo = filterstack_run(0, &Out, 0); |
|
|
|
|
foo = filterstack_run(1, &Out, 0); |
|
|
|
|
if (foo) { |
|
|
|
|
fprintf(stderr, "run filt stk--> %d\n", foo); |
|
|
|
|
fprintf(stderr, "run filt stack--> %d\n", foo); |
|
|
|
|
return foo; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -282,7 +288,12 @@ if (foo) {
@@ -282,7 +288,12 @@ if (foo) {
|
|
|
|
|
exit(1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// filterstack_list(__FILE__);
|
|
|
|
|
if (verbosity) { |
|
|
|
|
puts("=============="); |
|
|
|
|
filterstack_list(0, __FILE__); |
|
|
|
|
filterstack_list(1, __FILE__); |
|
|
|
|
puts("=============="); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
nbrsteps = atoi(argv[optind+2]); |
|
|
|
|
foo = interpolator(argv[optind], argv[optind+1], nbrsteps, |
|
|
|
|