X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=opusdec_filter.c;h=4e69a46efaf535405d0d3016ced360e6cf33c550;hb=0879c9de4eaf8c78131c243d8e9fec013df0d14a;hp=9022fbab63e0c3e2626528bcfa752ff6fde8faa3;hpb=d1e6b28f66e243516d01916f9125baee75dd98d6;p=paraslash.git diff --git a/opusdec_filter.c b/opusdec_filter.c index 9022fbab..4e69a46e 100644 --- a/opusdec_filter.c +++ b/opusdec_filter.c @@ -207,9 +207,9 @@ static int decode_packet(struct opusdec_context *ctx, ogg_packet *op, #define OPUSDEC_MAX_OUTPUT_SIZE (1024 * 1024) -static int opusdec_post_select(__a_unused struct sched *s, struct task *t) +static int opusdec_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 opusdec_context *ctx = fn->private_data; struct btr_node *btrn = fn->btrn; int ret; @@ -269,9 +269,9 @@ out: return ret; } -static void opusdec_pre_select(struct sched *s, struct task *t) +static void opusdec_pre_select(struct sched *s, void *context) { - struct filter_node *fn = container_of(t, struct filter_node, task); + struct filter_node *fn = context; struct opusdec_context *ctx = fn->private_data; int ret = btr_node_status(fn->btrn, fn->min_iqs, BTR_NT_INTERNAL);