aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-30 17:18:48 +0100
committerMax Kellermann <max@duempel.org>2013-01-30 17:18:48 +0100
commit01dd540d7ea062d08c5c6000422dbba197511efc (patch)
tree17f30dd6a3de1cbde161b50a5a7da54fd3a6ace2
parent814208063300d9791d1695e1dbbd784ec5818280 (diff)
decoder_list: convert to C++
-rw-r--r--Makefile.am3
-rw-r--r--src/CommandLine.cxx2
-rw-r--r--src/DecoderList.cxx (renamed from src/decoder_list.c)4
-rw-r--r--src/DecoderList.hxx (renamed from src/decoder_list.h)8
-rw-r--r--src/DecoderPrint.cxx2
-rw-r--r--src/DecoderThread.cxx2
-rw-r--r--src/Main.cxx2
-rw-r--r--src/SongUpdate.cxx4
-rw-r--r--src/TagFile.cxx2
-rw-r--r--src/UpdateSong.cxx5
-rw-r--r--src/decoder_plugin.h8
-rw-r--r--test/dump_playlist.cxx5
-rw-r--r--test/read_tags.cxx4
-rw-r--r--test/run_decoder.cxx4
14 files changed, 25 insertions, 30 deletions
diff --git a/Makefile.am b/Makefile.am
index 4b2d8d75..482e3892 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -77,7 +77,6 @@ mpd_headers = \
src/gerror.h \
src/glib_compat.h \
src/gcc.h \
- src/decoder_list.h \
src/decoder/pcm_decoder_plugin.h \
src/input_stream.h \
src/text_input_stream.h \
@@ -465,7 +464,7 @@ libdecoder_plugins_a_SOURCES = \
src/decoder/dsdlib.h \
src/decoder_buffer.c \
src/decoder_plugin.c \
- src/decoder_list.c
+ src/DecoderList.cxx src/DecoderList.hxx
libdecoder_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \
$(VORBIS_CFLAGS) $(TREMOR_CFLAGS) \
$(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS)) \
diff --git a/src/CommandLine.cxx b/src/CommandLine.cxx
index 5384fc6d..0de211fd 100644
--- a/src/CommandLine.cxx
+++ b/src/CommandLine.cxx
@@ -22,7 +22,7 @@
#include "ls.hxx"
#include "Log.hxx"
#include "conf.h"
-#include "decoder_list.h"
+#include "DecoderList.hxx"
#include "decoder_plugin.h"
#include "OutputList.hxx"
#include "output_plugin.h"
diff --git a/src/decoder_list.c b/src/DecoderList.cxx
index 80f6db1f..da9c3fcc 100644
--- a/src/decoder_list.c
+++ b/src/DecoderList.cxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2012 The Music Player Daemon Project
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -18,7 +18,7 @@
*/
#include "config.h"
-#include "decoder_list.h"
+#include "DecoderList.hxx"
#include "decoder_plugin.h"
#include "conf.h"
#include "mpd_error.h"
diff --git a/src/decoder_list.h b/src/DecoderList.hxx
index d0a6ade7..8dab8724 100644
--- a/src/decoder_list.h
+++ b/src/DecoderList.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -17,10 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#ifndef MPD_DECODER_LIST_H
-#define MPD_DECODER_LIST_H
-
-#include <stdbool.h>
+#ifndef MPD_DECODER_LIST_HXX
+#define MPD_DECODER_LIST_HXX
struct decoder_plugin;
diff --git a/src/DecoderPrint.cxx b/src/DecoderPrint.cxx
index 70c713e9..719a499e 100644
--- a/src/DecoderPrint.cxx
+++ b/src/DecoderPrint.cxx
@@ -19,7 +19,7 @@
#include "config.h"
#include "DecoderPrint.hxx"
-#include "decoder_list.h"
+#include "DecoderList.hxx"
#include "decoder_plugin.h"
#include "Client.hxx"
diff --git a/src/DecoderThread.cxx b/src/DecoderThread.cxx
index ac89b54c..b7b0bf78 100644
--- a/src/DecoderThread.cxx
+++ b/src/DecoderThread.cxx
@@ -30,9 +30,9 @@
#include "decoder_api.h"
#include "tag.h"
#include "InputStream.hxx"
+#include "DecoderList.hxx"
extern "C" {
-#include "decoder_list.h"
#include "replay_gain_ape.h"
#include "uri.h"
}
diff --git a/src/Main.cxx b/src/Main.cxx
index 83baf4ca..ecea5984 100644
--- a/src/Main.cxx
+++ b/src/Main.cxx
@@ -50,13 +50,13 @@
#include "fs/Path.hxx"
#include "PlaylistRegistry.hxx"
#include "ZeroconfGlue.hxx"
+#include "DecoderList.hxx"
extern "C" {
#include "daemon.h"
#include "stats.h"
#include "audio_config.h"
#include "pcm_resample.h"
-#include "decoder_list.h"
}
#include "mpd_error.h"
diff --git a/src/SongUpdate.cxx b/src/SongUpdate.cxx
index ce678fe0..e0a8aca1 100644
--- a/src/SongUpdate.cxx
+++ b/src/SongUpdate.cxx
@@ -29,10 +29,10 @@ extern "C" {
#include "fs/Path.hxx"
#include "tag.h"
#include "input_stream.h"
+#include "decoder_plugin.h"
+#include "DecoderList.hxx"
extern "C" {
-#include "decoder_list.h"
-#include "decoder_plugin.h"
#include "tag_ape.h"
#include "tag_id3.h"
#include "tag_handler.h"
diff --git a/src/TagFile.cxx b/src/TagFile.cxx
index f2a88abd..046778bd 100644
--- a/src/TagFile.cxx
+++ b/src/TagFile.cxx
@@ -22,9 +22,9 @@
extern "C" {
#include "uri.h"
-#include "decoder_list.h"
}
+#include "DecoderList.hxx"
#include "decoder_plugin.h"
#include "input_stream.h"
diff --git a/src/UpdateSong.cxx b/src/UpdateSong.cxx
index 7994ea75..676ba48e 100644
--- a/src/UpdateSong.cxx
+++ b/src/UpdateSong.cxx
@@ -27,10 +27,7 @@
#include "Directory.hxx"
#include "song.h"
#include "decoder_plugin.h"
-
-extern "C" {
-#include "decoder_list.h"
-}
+#include "DecoderList.hxx"
#include <glib.h>
diff --git a/src/decoder_plugin.h b/src/decoder_plugin.h
index 933ba675..b7ab738b 100644
--- a/src/decoder_plugin.h
+++ b/src/decoder_plugin.h
@@ -190,6 +190,10 @@ decoder_plugin_container_scan( const struct decoder_plugin *plugin,
return plugin->container_scan(pathname, tnum);
}
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/**
* Does the plugin announce the specified file name suffix?
*/
@@ -204,4 +208,8 @@ bool
decoder_plugin_supports_mime_type(const struct decoder_plugin *plugin,
const char *mime_type);
+#ifdef __cplusplus
+}
+#endif
+
#endif
diff --git a/test/dump_playlist.cxx b/test/dump_playlist.cxx
index ec09bcb2..6e1f4858 100644
--- a/test/dump_playlist.cxx
+++ b/test/dump_playlist.cxx
@@ -24,16 +24,13 @@
#include "input_stream.h"
#include "conf.h"
#include "decoder_api.h"
+#include "DecoderList.hxx"
#include "InputInit.hxx"
#include "IOThread.hxx"
#include "PlaylistRegistry.hxx"
#include "PlaylistPlugin.hxx"
#include "fs/Path.hxx"
-extern "C" {
-#include "decoder_list.h"
-}
-
#include <glib.h>
#include <unistd.h>
diff --git a/test/read_tags.cxx b/test/read_tags.cxx
index ddd278ff..1ceddf1d 100644
--- a/test/read_tags.cxx
+++ b/test/read_tags.cxx
@@ -19,9 +19,7 @@
#include "config.h"
#include "IOThread.hxx"
-extern "C" {
-#include "decoder_list.h"
-}
+#include "DecoderList.hxx"
#include "decoder_api.h"
#include "InputInit.hxx"
#include "InputStream.hxx"
diff --git a/test/run_decoder.cxx b/test/run_decoder.cxx
index 288b83f9..d5c7c313 100644
--- a/test/run_decoder.cxx
+++ b/test/run_decoder.cxx
@@ -19,9 +19,7 @@
#include "config.h"
#include "IOThread.hxx"
-extern "C" {
-#include "decoder_list.h"
-}
+#include "DecoderList.hxx"
#include "decoder_api.h"
#include "InputInit.hxx"
#include "input_stream.h"