diff options
author | Max Kellermann <max@duempel.org> | 2013-01-10 10:15:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-10 10:15:09 +0100 |
commit | d5516dee005075a7569890c0cea4235659687ea1 (patch) | |
tree | 969046fc869f266103afc06bd2e8e1bd9c201d33 /test/run_decoder.cxx | |
parent | 06e0741a5293b1db2ef5f2b5778e3669f2dea70e (diff) | |
download | mpd-d5516dee005075a7569890c0cea4235659687ea1.tar.gz mpd-d5516dee005075a7569890c0cea4235659687ea1.tar.xz mpd-d5516dee005075a7569890c0cea4235659687ea1.zip |
input_stream: convert to C++ (internally)
Diffstat (limited to '')
-rw-r--r-- | test/run_decoder.cxx (renamed from test/run_decoder.c) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/run_decoder.c b/test/run_decoder.cxx index d2f87c9ae..776c11e87 100644 --- a/test/run_decoder.c +++ b/test/run_decoder.cxx @@ -18,10 +18,12 @@ */ #include "config.h" +extern "C" { #include "io_thread.h" #include "decoder_list.h" +} #include "decoder_api.h" -#include "input_init.h" +#include "InputInit.hxx" #include "input_stream.h" #include "audio_format.h" #include "stdbin.h" |