diff options
author | Max Kellermann <max@duempel.org> | 2009-02-25 18:34:02 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-25 18:34:02 +0100 |
commit | dcd84c19cdb71cfb594851995cdaffdf39453bdc (patch) | |
tree | ad8dd47f69aafab71e36c5975db03a26f38a3f33 /src/output_init.c | |
parent | 0cf4f09e4ffb4866eba5c4055fabfe1e60c780e4 (diff) | |
download | mpd-dcd84c19cdb71cfb594851995cdaffdf39453bdc.tar.gz mpd-dcd84c19cdb71cfb594851995cdaffdf39453bdc.tar.xz mpd-dcd84c19cdb71cfb594851995cdaffdf39453bdc.zip |
output_plugin: don't pass audio_output object to method init()
audio_output_get_name() has been removed, which was the only function
left in output_api.h. The output plugin doesn't need the audio_output
object at all, remove the parameter from the init() method.
Diffstat (limited to '')
-rw-r--r-- | src/output_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output_init.c b/src/output_init.c index 1e2592e8d..c4f2f55b6 100644 --- a/src/output_init.c +++ b/src/output_init.c @@ -109,7 +109,7 @@ audio_output_init(struct audio_output *ao, const struct config_param *param) notify_init(&ao->notify); ao->command = AO_COMMAND_NONE; - ao->data = ao_plugin_init(plugin, ao, + ao->data = ao_plugin_init(plugin, format ? &ao->config_audio_format : NULL, param); if (ao->data == NULL) |