X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=wav_filter.c;h=692306b541fcb28012b1a2a4d873a83d93855437;hb=08471ab23c0abdf0ddd7ff836a15bd81fbce7520;hp=e749160d3337e87dc7c908c023ea100c955590e4;hpb=d5e27e2a346da2f18188d317926a60687d082732;p=paraslash.git diff --git a/wav_filter.c b/wav_filter.c index e749160d..692306b5 100644 --- a/wav_filter.c +++ b/wav_filter.c @@ -58,7 +58,7 @@ static void wav_open(struct filter_node *fn) *bof = 1; } -static void wav_pre_select(struct sched *s, void *context) +static void wav_pre_monitor(struct sched *s, void *context) { struct filter_node *fn = context; size_t iqs = btr_get_input_queue_size(fn->btrn); @@ -68,7 +68,7 @@ static void wav_pre_select(struct sched *s, void *context) sched_min_delay(s); } -static int wav_post_select(__a_unused struct sched *s, void *context) +static int wav_post_monitor(__a_unused struct sched *s, void *context) { struct filter_node *fn = context; struct btr_node *btrn = fn->btrn; @@ -118,6 +118,6 @@ err: const struct filter lsg_filter_cmd_com_wav_user_data = { .close = wav_close, .open = wav_open, - .pre_select = wav_pre_select, - .post_select = wav_post_select, + .pre_monitor = wav_pre_monitor, + .post_monitor = wav_post_monitor, };