aboutsummaryrefslogtreecommitdiffstats
path: root/src/OutputInternal.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/OutputInternal.hxx
parent67f591a9ce60651da41afc499bd9a22e25314e35 (diff)
downloadmpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.gz
mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.xz
mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.zip
audio_format: convert to C++
Diffstat (limited to 'src/OutputInternal.hxx')
-rw-r--r--src/OutputInternal.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/OutputInternal.hxx b/src/OutputInternal.hxx
index a0d376827..b23ec95b6 100644
--- a/src/OutputInternal.hxx
+++ b/src/OutputInternal.hxx
@@ -20,7 +20,7 @@
#ifndef MPD_OUTPUT_INTERNAL_HXX
#define MPD_OUTPUT_INTERNAL_HXX
-#include "audio_format.h"
+#include "AudioFormat.hxx"
#include "pcm/PcmBuffer.hxx"
#include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
@@ -134,13 +134,13 @@ struct audio_output {
/**
* The configured audio format.
*/
- struct audio_format config_audio_format;
+ AudioFormat config_audio_format;
/**
* The audio_format in which audio data is received from the
* player thread (which in turn receives it from the decoder).
*/
- struct audio_format in_audio_format;
+ AudioFormat in_audio_format;
/**
* The audio_format which is really sent to the device. This
@@ -148,7 +148,7 @@ struct audio_output {
* in_audio_format, but may have been modified by
* plugin->open().
*/
- struct audio_format out_audio_format;
+ AudioFormat out_audio_format;
/**
* The buffer used to allocate the cross-fading result.