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/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio/out/internal.h') diff --git a/audio/out/internal.h b/audio/out/internal.h index fbea763306..4d18adef78 100644 --- a/audio/out/internal.h +++ b/audio/out/internal.h @@ -135,7 +135,7 @@ struct ao_driver { // push based: see ao_play() int (*play)(struct ao *ao, void **data, int samples, int flags); // push based: see ao_get_delay() - float (*get_delay)(struct ao *ao); + double (*get_delay)(struct ao *ao); // push based: block until all queued audio is played (optional) void (*drain)(struct ao *ao); // Optional. Return true if audio has stopped in any way. -- cgit v1.2.3