]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - filter_common.c
wav_filter: Kill non-btr code.
[paraslash.git] / filter_common.c
index 94e553b6e6ae63270cc81fc602b0fd57f1eb67e3..7fa30803d6c02a87699b3cc927e0c8b7966e36c9 100644 (file)
@@ -179,6 +179,7 @@ void close_filters(struct filter_chain *fc)
                close_callbacks(fn);
                PARA_INFO_LOG("closing %s filter\n", f->name);
                f->close(fn);
+               free(fn->conf);
        }
        free(fc->filter_nodes);
 }
@@ -275,3 +276,15 @@ void print_filter_helps(int detailed)
        }
 
 }
+
+void generic_filter_pre_select(struct sched *s, struct task *t)
+{
+       struct filter_node *fn = container_of(t, struct filter_node, task);
+
+       t->error = 0;
+       if (btr_node_status(fn->btrn, fn->min_iqs, BTR_NT_INTERNAL) != 0) {
+               s->timeout.tv_sec = 0;
+               s->timeout.tv_usec = 1;
+       }
+}
+