diff options
author | Max Kellermann <max@duempel.org> | 2013-07-29 08:10:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-30 08:31:02 +0200 |
commit | c75cb67c4406648314ce2a15daf8b632374d7913 (patch) | |
tree | 5e27b73f2c90e878631bfac5b60070505b094717 /src/OutputInternal.hxx | |
parent | cd1bb2bafa2653e5d4c7c9abf6f464bcdec693c5 (diff) | |
download | mpd-c75cb67c4406648314ce2a15daf8b632374d7913.tar.gz mpd-c75cb67c4406648314ce2a15daf8b632374d7913.tar.xz mpd-c75cb67c4406648314ce2a15daf8b632374d7913.zip |
pcm_buffer: convert to C++
Diffstat (limited to 'src/OutputInternal.hxx')
-rw-r--r-- | src/OutputInternal.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OutputInternal.hxx b/src/OutputInternal.hxx index f3b23d8f5..a0d376827 100644 --- a/src/OutputInternal.hxx +++ b/src/OutputInternal.hxx @@ -21,7 +21,7 @@ #define MPD_OUTPUT_INTERNAL_HXX #include "audio_format.h" -#include "pcm/pcm_buffer.h" +#include "pcm/PcmBuffer.hxx" #include "thread/Mutex.hxx" #include "thread/Cond.hxx" @@ -153,7 +153,7 @@ struct audio_output { /** * The buffer used to allocate the cross-fading result. */ - struct pcm_buffer cross_fade_buffer; + PcmBuffer cross_fade_buffer; /** * The filter object of this audio output. This is an |