From 74617389c88ccf630b8cce4b54d9e2fa5afb2259 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 16 Sep 2011 23:31:48 +0200 Subject: output_plugin: the plugin allocates the audio_output object Pass audio_output objects around instead of void pointers. This will give some more control to the plugin, and prepares for non-blocking audio outputs. --- src/output_control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/output_control.c') diff --git a/src/output_control.c b/src/output_control.c index 7ddcb8b19..69553145a 100644 --- a/src/output_control.c +++ b/src/output_control.c @@ -335,5 +335,5 @@ void audio_output_finish(struct audio_output *ao) ao->thread = NULL; } - audio_output_destruct(ao); + audio_output_free(ao); } -- cgit v1.2.3