From 5db0fbd95ec8790cd1a133bb57f701c5c9f970c0 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 9 Nov 2014 11:45:04 +0100 Subject: audio/out: consistently use double return type for get_delay ao_get_delay() returns double, but the get_delay callback still returned float. --- audio/out/push.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'audio/out/push.c') diff --git a/audio/out/push.c b/audio/out/push.c index 5872b01913..5bbc7d808f 100644 --- a/audio/out/push.c +++ b/audio/out/push.c @@ -93,11 +93,11 @@ static double unlocked_get_delay(struct ao *ao) return driver_delay + mp_audio_buffer_seconds(p->buffer); } -static float get_delay(struct ao *ao) +static double get_delay(struct ao *ao) { struct ao_push_state *p = ao->api_priv; pthread_mutex_lock(&p->lock); - float delay = unlocked_get_delay(ao); + double delay = unlocked_get_delay(ao); pthread_mutex_unlock(&p->lock); return delay; } -- cgit v1.2.3