diff options
author | Max Kellermann <max@duempel.org> | 2013-07-28 20:25:45 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-28 20:25:45 +0200 |
commit | dd5ba062cc03d0de7fa2b46f16817f8c7c2b112e (patch) | |
tree | 3bf0273d15ce6a4a2b62ba344e80bbb4a3617e40 /src/decoder | |
parent | ba161ec572b98d3bcf9f735ff122133319fe896a (diff) | |
download | mpd-dd5ba062cc03d0de7fa2b46f16817f8c7c2b112e.tar.gz mpd-dd5ba062cc03d0de7fa2b46f16817f8c7c2b112e.tar.xz mpd-dd5ba062cc03d0de7fa2b46f16817f8c7c2b112e.zip |
tag_id3: convert to C++
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/DsdLib.cxx | 5 | ||||
-rw-r--r-- | src/decoder/MadDecoderPlugin.cxx | 6 |
2 files changed, 2 insertions, 9 deletions
diff --git a/src/decoder/DsdLib.cxx b/src/decoder/DsdLib.cxx index 40a553d91..5337612a9 100644 --- a/src/decoder/DsdLib.cxx +++ b/src/decoder/DsdLib.cxx @@ -28,10 +28,7 @@ #include "DecoderAPI.hxx" #include "util/bit_reverse.h" #include "tag_handler.h" - -extern "C" { -#include "tag_id3.h" -} +#include "TagId3.hxx" #include <unistd.h> #include <stdio.h> /* for SEEK_SET, SEEK_CUR */ diff --git a/src/decoder/MadDecoderPlugin.cxx b/src/decoder/MadDecoderPlugin.cxx index bbfd2f412..f8dd03701 100644 --- a/src/decoder/MadDecoderPlugin.cxx +++ b/src/decoder/MadDecoderPlugin.cxx @@ -21,11 +21,7 @@ #include "MadDecoderPlugin.hxx" #include "DecoderAPI.hxx" #include "conf.h" - -extern "C" { -#include "tag_id3.h" -} - +#include "TagId3.hxx" #include "TagRva2.hxx" #include "tag_handler.h" #include "audio_check.h" |