X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=play.c;h=9639501069baaed4e3a396eb03f98813a0380584;hp=cca203b5d393aa95dc50d0e7df1ffcceb0180420;hb=74c88020bd325865fe26ed25ea8ad0ace0924136;hpb=3879481ddabc38236b9eee979a090c2a9bfa74d3 diff --git a/play.c b/play.c index cca203b5..96395010 100644 --- a/play.c +++ b/play.c @@ -7,7 +7,6 @@ /** \file play.c Paraslash's standalone player. */ #include -#include #include #include @@ -369,7 +368,7 @@ static int open_new_file(struct play_task *pt) tmp = NULL; } pt->rn.task.pre_select = afh_recv->pre_select; - pt->rn.task.post_select = afh_recv->post_select; + pt->rn.task.new_post_select = afh_recv->new_post_select; sprintf(pt->rn.task.status, "%s receiver node", afh_recv->name); return 1; fail: @@ -410,7 +409,7 @@ static int load_file(struct play_task *pt) pt->fn.filter_num = ret; decoder = filters + ret; pt->fn.task.pre_select = decoder->pre_select; - pt->fn.task.post_select = decoder->post_select; + pt->fn.task.new_post_select = decoder->new_post_select; sprintf(pt->fn.task.status, "%s decoder", af); pt->fn.btrn = btr_new_node(&(struct btr_node_description) EMBRACE(.name = decoder->name, .parent = pt->rn.btrn, @@ -1196,7 +1195,7 @@ static unsigned get_time_string(struct play_task *pt, char **result) ); } -static void play_post_select(struct sched *s, struct task *t) +static int play_post_select(struct sched *s, struct task *t) { struct play_task *pt = container_of(t, struct play_task, task); int ret; @@ -1204,7 +1203,7 @@ static void play_post_select(struct sched *s, struct task *t) ret = eof_cleanup(pt); if (ret < 0) { pt->rq = CRT_TERM_RQ; - return; + return 0; } ret = session_post_select(s, t); if (ret < 0) @@ -1234,7 +1233,7 @@ static void play_post_select(struct sched *s, struct task *t) } ret = 1; out: - t->error = ret; + return ret; } /** @@ -1255,7 +1254,7 @@ int main(int argc, char *argv[]) filter_init(); writer_init(); - gettimeofday(now, NULL); + clock_get_realtime(now); sched.default_timeout.tv_sec = 5; parse_config_or_die(argc, argv); @@ -1271,7 +1270,7 @@ int main(int argc, char *argv[]) pt->current_file = conf.inputs_num - 1; pt->playing = true; pt->task.pre_select = play_pre_select; - pt->task.post_select = play_post_select; + pt->task.new_post_select = play_post_select; sprintf(pt->task.status, "play task"); register_task(&sched, &pt->task); ret = schedule(&sched);