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/pcm/PcmMix.hxx | |
parent | 67f591a9ce60651da41afc499bd9a22e25314e35 (diff) | |
download | mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.gz mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.xz mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.zip |
audio_format: convert to C++
Diffstat (limited to 'src/pcm/PcmMix.hxx')
-rw-r--r-- | src/pcm/PcmMix.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pcm/PcmMix.hxx b/src/pcm/PcmMix.hxx index bb7110d04..b50a163fd 100644 --- a/src/pcm/PcmMix.hxx +++ b/src/pcm/PcmMix.hxx @@ -20,7 +20,7 @@ #ifndef MPD_PCM_MIX_HXX #define MPD_PCM_MIX_HXX -#include "audio_format.h" +#include "AudioFormat.hxx" #include "gcc.h" #include <stddef.h> @@ -44,6 +44,6 @@ gcc_warn_unused_result bool pcm_mix(void *buffer1, const void *buffer2, size_t size, - enum sample_format format, float portion1); + SampleFormat format, float portion1); #endif |