diff options
author | Max Kellermann <max@duempel.org> | 2013-07-28 13:18:48 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-28 13:18:48 +0200 |
commit | 43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708 (patch) | |
tree | 70cd76be89e7aa8c7e92690eeabb331d31abf346 /Makefile.am | |
parent | 2277d143fa4e407bffa9cb169820c9612ebae7a0 (diff) | |
download | mpd-43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708.tar.gz mpd-43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708.tar.xz mpd-43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708.zip |
decoder_api: convert to C++
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am index c16d56aec..442e64609 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,10 +58,6 @@ mpd_headers = \ src/filter_internal.h \ src/command.h \ src/conf.h \ - src/decoder_plugin.h \ - src/decoder_command.h \ - src/decoder_api.h \ - src/decoder_plugin.h \ src/encoder_plugin.h \ src/encoder_api.h \ src/fd_util.h \ @@ -129,10 +125,12 @@ src_mpd_SOURCES = \ src/CommandLine.cxx src/CommandLine.hxx \ src/CrossFade.cxx src/CrossFade.hxx \ src/cue/CueParser.cxx src/cue/CueParser.hxx \ - src/decoder_error.h \ + src/DecoderError.hxx \ src/DecoderThread.cxx src/DecoderThread.hxx \ + src/DecoderCommand.hxx \ src/DecoderControl.cxx src/DecoderControl.hxx \ - src/DecoderAPI.cxx \ + src/DecoderAPI.cxx src/DecoderAPI.hxx \ + src/DecoderPlugin.hxx \ src/DecoderInternal.cxx src/DecoderInternal.hxx \ src/DecoderPrint.cxx src/DecoderPrint.hxx \ src/Directory.cxx src/Directory.hxx \ |