diff options
author | Max Kellermann <max@duempel.org> | 2013-10-16 21:04:52 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-16 22:07:52 +0200 |
commit | 6b2b5af3440d8bd5c6ca6bde934610925d652e88 (patch) | |
tree | 96188739cd4d52aa133c9d448b14d7f74e61e5d7 /src/decoder/PcmDecoderPlugin.cxx | |
parent | f32fbd9ed13bc6017f72928a49c43c6bf73fd615 (diff) | |
download | mpd-6b2b5af3440d8bd5c6ca6bde934610925d652e88.tar.gz mpd-6b2b5af3440d8bd5c6ca6bde934610925d652e88.tar.xz mpd-6b2b5af3440d8bd5c6ca6bde934610925d652e88.zip |
util/byte_reverse: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/decoder/PcmDecoderPlugin.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/decoder/PcmDecoderPlugin.cxx b/src/decoder/PcmDecoderPlugin.cxx index 6996b583a..61062f7f9 100644 --- a/src/decoder/PcmDecoderPlugin.cxx +++ b/src/decoder/PcmDecoderPlugin.cxx @@ -22,12 +22,9 @@ #include "DecoderAPI.hxx" #include "InputStream.hxx" #include "util/Error.hxx" +#include "util/ByteReverse.hxx" #include "Log.hxx" -extern "C" { -#include "util/byte_reverse.h" -} - #include <glib.h> #include <unistd.h> #include <string.h> |