X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=oggdec_filter.c;h=ad3ef60f637fbdc3239970d4b5a0f76a42614e93;hp=cec9c6c3dd15e971fdff1934d668bbcccbe616d1;hb=0c94435d0018260181e425c633c4d2cf8eed0f13;hpb=f76ab46a9216133332cb7e17d38d392caeca22cb diff --git a/oggdec_filter.c b/oggdec_filter.c index cec9c6c3..ad3ef60f 100644 --- a/oggdec_filter.c +++ b/oggdec_filter.c @@ -136,14 +136,13 @@ open: 0, /* no initial bytes */ ovc); /* the ov_open_callbacks */ if (oret == OV_ENOTVORBIS || oret == OV_EBADHEADER) { - /* this might be due to the input buffer being too small */ + /* maybe the input buffer is too small */ if (!btr_no_parent(btrn)) { fn->min_iqs += 1000; iqs = btr_get_input_queue_size(btrn); ret = 0; if (iqs < fn->min_iqs) goto out; - PARA_CRIT_LOG("iqs: %zu\n", iqs); btr_merge(btrn, fn->min_iqs); pod->converted = 0; goto open; @@ -184,7 +183,7 @@ out: static void ogg_pre_select(struct sched *s, struct task *t) { - struct filter_node *fn = container_of(t, struct filter_node, task); + struct filter_node *fn = task_context(t); struct private_oggdec_data *pod = fn->private_data; struct btr_node *btrn = fn->btrn; int ret; @@ -201,7 +200,7 @@ static void ogg_pre_select(struct sched *s, struct task *t) static int ogg_post_select(__a_unused struct sched *s, struct task *t) { - struct filter_node *fn = container_of(t, struct filter_node, task); + struct filter_node *fn = task_context(t); struct private_oggdec_data *pod = fn->private_data; struct btr_node *btrn = fn->btrn; int ret, have;