X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=amp_filter.c;h=9369e4bcbeb1f9c9eec251f5136a34d9e223f8bb;hb=e3a7e12639c34fd86d48a072beb48add8c498d09;hp=61b1653ea069ce479b6b609da5703fc57bc717c1;hpb=742c8b3f79a59278ced71e1855da1846b157b494;p=paraslash.git diff --git a/amp_filter.c b/amp_filter.c index 61b1653e..9369e4bc 100644 --- a/amp_filter.c +++ b/amp_filter.c @@ -43,7 +43,7 @@ static void amp_open(struct filter_node *fn) pad->amp, pad->amp / 64.0 + 1.0); } -static int amp_post_select(__a_unused struct sched *s, void *context) +static int amp_post_monitor(__a_unused struct sched *s, void *context) { struct filter_node *fn = context; struct private_amp_data *pad = fn->private_data; @@ -100,6 +100,6 @@ err: const struct filter lsg_filter_cmd_com_amp_user_data = { .open = amp_open, .close = amp_close, - .pre_select = generic_filter_pre_select, - .post_select = amp_post_select, + .pre_monitor = generic_filter_pre_monitor, + .post_monitor = amp_post_monitor, };