From e01df06cd7b4331436564942c931ed351fb4e76f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 13 Dec 2011 21:11:04 +0100 Subject: output/null: implement output_plugin method delay() --- src/output/null_output_plugin.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'src/output/null_output_plugin.c') diff --git a/src/output/null_output_plugin.c b/src/output/null_output_plugin.c index 0865ae055..9d7588fff 100644 --- a/src/output/null_output_plugin.c +++ b/src/output/null_output_plugin.c @@ -79,6 +79,16 @@ null_close(struct audio_output *ao) timer_free(nd->timer); } +static unsigned +null_delay(struct audio_output *ao) +{ + struct null_data *nd = (struct null_data *)ao; + + return nd->sync && nd->timer->started + ? timer_delay(nd->timer) + : 0; +} + static size_t null_play(struct audio_output *ao, G_GNUC_UNUSED const void *chunk, size_t size, G_GNUC_UNUSED GError **error) @@ -91,9 +101,6 @@ null_play(struct audio_output *ao, G_GNUC_UNUSED const void *chunk, size_t size, if (!timer->started) timer_start(timer); - else - timer_sync(timer); - timer_add(timer, size); return size; @@ -116,6 +123,7 @@ const struct audio_output_plugin null_output_plugin = { .finish = null_finish, .open = null_open, .close = null_close, + .delay = null_delay, .play = null_play, .cancel = null_cancel, }; -- cgit v1.2.3