From 3cae6856b8c6096b3f932a4ab30476a8d1187e58 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 24 Sep 2008 07:20:36 +0200 Subject: output: pass audio_format to plugin.init() and plugin.open() Pass the globally configured audio_format as a const pointer to plugin.init(). plugin.open() gets a writable pointer which contains the audio_format requested by the plugin. Its initial value is either the configured audio_format or the input file's audio_format. --- src/audioOutputs/audioOutput_null.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/audioOutputs/audioOutput_null.c') diff --git a/src/audioOutputs/audioOutput_null.c b/src/audioOutputs/audioOutput_null.c index 28e58d49e..37e0ec0c8 100644 --- a/src/audioOutputs/audioOutput_null.c +++ b/src/audioOutputs/audioOutput_null.c @@ -20,15 +20,17 @@ #include "../timer.h" static int null_initDriver(struct audio_output *audioOutput, + mpd_unused const struct audio_format *audio_format, mpd_unused ConfigParam *param) { audioOutput->data = NULL; return 0; } -static int null_openDevice(struct audio_output *audioOutput) +static int null_openDevice(struct audio_output *audioOutput, + struct audio_format *audio_format) { - audioOutput->data = timer_new(&audioOutput->outAudioFormat); + audioOutput->data = timer_new(audio_format); audioOutput->open = 1; return 0; } -- cgit v1.2.3