diff options
author | Max Kellermann <max@duempel.org> | 2013-08-03 21:00:50 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-03 21:37:56 +0200 |
commit | d1e7b4e38136f9342aad76c685a13adf0e69f869 (patch) | |
tree | 49643b937ddfe735511b566a71398da5a945d7aa /src/OutputPlugin.cxx | |
parent | 67f591a9ce60651da41afc499bd9a22e25314e35 (diff) | |
download | mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.gz mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.xz mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.zip |
audio_format: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/OutputPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OutputPlugin.cxx b/src/OutputPlugin.cxx index 1e49ddbaa..00901aad2 100644 --- a/src/OutputPlugin.cxx +++ b/src/OutputPlugin.cxx @@ -54,7 +54,7 @@ ao_plugin_disable(struct audio_output *ao) } bool -ao_plugin_open(struct audio_output *ao, struct audio_format *audio_format, +ao_plugin_open(struct audio_output *ao, AudioFormat &audio_format, GError **error) { return ao->plugin->open(ao, audio_format, error); |