X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=fecdec_filter.c;h=26ea24a6375db1749f7f9e7b2cd3ebe05196aca8;hp=9d34106db7562b5bc1c6ab419bf955dc15eb9572;hb=5e8d8a8eea6de9459ebdf4498f9f061c84bfa63a;hpb=3cc5654fec9db630eac146f8475067228efe51ae diff --git a/fecdec_filter.c b/fecdec_filter.c index 9d34106d..26ea24a6 100644 --- a/fecdec_filter.c +++ b/fecdec_filter.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009-2014 Andre Noll + * Copyright (C) 2009 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -47,7 +47,7 @@ struct fec_header { uint16_t slice_bytes; /** Non-zero if this group is the beginning of the stream. */ uint8_t bos; - /** Non-zero if this stream embedds audio headers into fec groups. */ + /** Non-zero if this stream embeds audio headers into fec groups. */ uint8_t header_stream; }; @@ -436,9 +436,9 @@ static void fecdec_close(struct filter_node *fn) fn->private_data = NULL; } -static int fecdec_post_select(__a_unused struct sched *s, struct task *t) +static int fecdec_post_select(__a_unused struct sched *s, void *context) { - struct filter_node *fn = task_context(t); + struct filter_node *fn = context; struct btr_node *btrn = fn->btrn; int ret; struct fec_header h;