aboutsummaryrefslogtreecommitdiffstats
path: root/src/AudioParser.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/AudioParser.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/AudioParser.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AudioParser.hxx b/src/AudioParser.hxx
index f7855e8e3..14c26392c 100644
--- a/src/AudioParser.hxx
+++ b/src/AudioParser.hxx
@@ -27,7 +27,7 @@
#include "gerror.h"
-struct audio_format;
+struct AudioFormat;
/**
* Parses a string in the form "SAMPLE_RATE:BITS:CHANNELS" into an
@@ -41,7 +41,7 @@ struct audio_format;
* @return true on success
*/
bool
-audio_format_parse(struct audio_format *dest, const char *src,
+audio_format_parse(AudioFormat &dest, const char *src,
bool mask, GError **error_r);
#endif