]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - amp_filter.c
Switch audiod over to the buffer tree API.
[paraslash.git] / amp_filter.c
index c0835f806ad322480cb38e7ca851b1ef78b3e366..e91791bf8655e58cbc494901ad232fc1787cbe10 100644 (file)
@@ -116,14 +116,18 @@ static void amp_post_select(__a_unused struct sched *s, struct task *t)
                return;
        }
 next_buffer:
-       ret = prepare_filter_node(fn);
-       in_bytes = btr_next_buffer(btrn, (char **)&in);
+       ret = btr_node_status(btrn, fn->min_iqs, BTR_NT_INTERNAL);
        if (ret < 0)
                goto err;
-       len = in_bytes / 2;
-       /* len == 0 happens if eof and in_bytes == 1. */
-       if (ret == 0 || len == 0)
+       if (ret == 0)
                return;
+       btr_merge(btrn, fn->min_iqs);
+       in_bytes = btr_next_buffer(btrn, (char **)&in);
+       len = in_bytes / 2;
+       if (len == 0) { /* eof and in_bytes == 1 */
+               ret = -E_AMP_EOF;
+               goto err;
+       }
 
        if (inplace)
                out = in;
@@ -149,8 +153,12 @@ next_buffer:
 err:
        assert(ret < 0);
        t->error = ret;
-       btr_del_node(btrn);
-       amp_close(fn);
+       btr_remove_node(btrn);
+}
+
+static void amp_free_config(void *conf)
+{
+       amp_cmdline_parser_free(conf);
 }
 
 /**
@@ -169,6 +177,7 @@ void amp_filter_init(struct filter *f)
        f->pre_select = generic_filter_pre_select;
        f->post_select = amp_post_select;
        f->parse_config = amp_parse_config;
+       f->free_config = amp_free_config;
        f->help = (struct ggo_help) {
                .short_help = amp_filter_args_info_help,
                .detailed_help = amp_filter_args_info_detailed_help