X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;ds=sidebyside;f=spxdec_filter.c;h=b7b6329543773f0d0c12c96e21b952700790211f;hb=d38109ab121b2dce9a40d3f8649d0bc1df0ffab2;hp=3bf547e0ff924fa3e5bcf3129a831dd3eeca5041;hpb=03e915eacaec02c700dd17254310cb61d0c80a59;p=paraslash.git diff --git a/spxdec_filter.c b/spxdec_filter.c index 3bf547e0..b7b63295 100644 --- a/spxdec_filter.c +++ b/spxdec_filter.c @@ -1,6 +1,6 @@ /* * Copyright (C) 2002-2006 Jean-Marc Valin - * Copyright (C) 2010-2013 Andre Noll + * Copyright (C) 2010 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -75,7 +75,7 @@ struct private_spxdec_data { int lookahead; /** The state information about the current stream. */ ogg_stream_state os; - /** Whether \a os initialized. */ + /** Whether \a os is initialized. */ bool stream_init; }; @@ -238,9 +238,9 @@ static int compute_skip_samples(ogg_page *og, struct private_spxdec_data *psd) return ret; } -static int speexdec_post_select(__a_unused struct sched *s, struct task *t) +static int speexdec_post_select(__a_unused struct sched *s, void *context) { - struct filter_node *fn = container_of(t, struct filter_node, task); + struct filter_node *fn = context; struct private_spxdec_data *psd = fn->private_data; struct btr_node *btrn = fn->btrn; int ret, ns; @@ -304,7 +304,6 @@ void spxdec_filter_init(struct filter *f) f->open = spxdec_open; f->close = speexdec_close; f->pre_select = generic_filter_pre_select; - f->new_post_select = speexdec_post_select; - f->post_select = NULL; + f->post_select = speexdec_post_select; f->execute = speexdec_execute; }