aboutsummaryrefslogtreecommitdiffstats
path: root/src/AudioConfig.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-08-03 21:00:50 +0200
committerMax Kellermann <max@duempel.org>2013-08-03 21:37:56 +0200
commitd1e7b4e38136f9342aad76c685a13adf0e69f869 (patch)
tree49643b937ddfe735511b566a71398da5a945d7aa /src/AudioConfig.hxx
parent67f591a9ce60651da41afc499bd9a22e25314e35 (diff)
downloadmpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.gz
mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.xz
mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.zip
audio_format: convert to C++
Diffstat (limited to '')
-rw-r--r--src/AudioConfig.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/AudioConfig.hxx b/src/AudioConfig.hxx
index 717a8e2e7..ebe202974 100644
--- a/src/AudioConfig.hxx
+++ b/src/AudioConfig.hxx
@@ -20,10 +20,10 @@
#ifndef MPD_AUDIO_CONFIG_HXX
#define MPD_AUDIO_CONFIG_HXX
-struct audio_format;
+struct AudioFormat;
-void getOutputAudioFormat(const struct audio_format *inFormat,
- struct audio_format *outFormat);
+AudioFormat
+getOutputAudioFormat(AudioFormat inFormat);
/* make sure initPlayerData is called before this function!! */
void initAudioConfig(void);