diff options
author | Max Kellermann <max@duempel.org> | 2013-01-04 10:16:16 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-04 10:16:16 +0100 |
commit | 22f0a1547c86895b4284b5fdc63ab9c82f24a442 (patch) | |
tree | c011204fc1e1a31745e004a3e25d7f9f24f1067e /src/OutputThread.cxx | |
parent | de0ab43bc12be345d85779e444266153ff5be007 (diff) | |
download | mpd-22f0a1547c86895b4284b5fdc63ab9c82f24a442.tar.gz mpd-22f0a1547c86895b4284b5fdc63ab9c82f24a442.tar.xz mpd-22f0a1547c86895b4284b5fdc63ab9c82f24a442.zip |
buffer, pipe: convert to C++
Diffstat (limited to 'src/OutputThread.cxx')
-rw-r--r-- | src/OutputThread.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/OutputThread.cxx b/src/OutputThread.cxx index 75394703b..e88efd389 100644 --- a/src/OutputThread.cxx +++ b/src/OutputThread.cxx @@ -23,8 +23,6 @@ extern "C" { #include "output_api.h" #include "output_internal.h" -#include "chunk.h" -#include "pipe.h" #include "player_control.h" #include "pcm_mix.h" #include "filter_plugin.h" @@ -33,6 +31,9 @@ extern "C" { #include "notify.h" } +#include "MusicPipe.hxx" +#include "MusicChunk.hxx" + #include "mpd_error.h" #include "gcc.h" |