X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=amp_filter.c;h=9369e4bcbeb1f9c9eec251f5136a34d9e223f8bb;hb=08471ab23c0abdf0ddd7ff836a15bd81fbce7520;hp=4f8e04907e6367b221a42230cce9f9cfa0bc5b26;hpb=66b97974ebba5c6ea967b713f84f62a1b72da8d2;p=paraslash.git diff --git a/amp_filter.c b/amp_filter.c index 4f8e0490..9369e4bc 100644 --- a/amp_filter.c +++ b/amp_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file amp_filter.c Paraslash's amplify filter. */ @@ -47,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; @@ -104,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, };