X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=prebuffer_filter.c;h=ac66b203c5526d75b52178a47383151d47a8f12d;hp=a83eacc9d7e53f627985f6cfdfc86eccb588fa47;hb=e7e55d0ad711a46e4768066be197bb41caa5c5eb;hpb=12a302780e2ed2933f1be628832f3a9e3a0c02ee diff --git a/prebuffer_filter.c b/prebuffer_filter.c index a83eacc9..ac66b203 100644 --- a/prebuffer_filter.c +++ b/prebuffer_filter.c @@ -49,19 +49,13 @@ static void prebuffer_pre_select(struct sched *s, struct task *t) tv_add(&tv, now, &ppd->barrier); } if (tv_diff(&ppd->barrier, now, &diff) < 0) - goto min_delay; - if (tv_diff(&diff, &s->timeout, NULL) < 0) - s->timeout = diff; - return; -min_delay: - s->timeout.tv_sec = 0; - s->timeout.tv_usec = 1; + return sched_min_delay(s); + sched_request_timeout(&diff, s); } static void prebuffer_close(struct filter_node *fn) { free(fn->private_data); - free(fn->buf); } static void prebuffer_post_select(__a_unused struct sched *s, struct task *t) @@ -112,8 +106,6 @@ static void prebuffer_open(struct filter_node *fn) ppd->conf = fn->conf; fn->private_data = ppd; - fn->bufsize = 8192; /* gets increased on demand */ - fn->buf = para_malloc(fn->bufsize); } static void prebuffer_free_config(void *conf)