Commit c4d69f0a authored by Max Kellermann's avatar Max Kellermann

renamed decoder plugin "mpc" to "mpcdec"

This plugin is based on "libmpcdec".
parent 70523657
...@@ -271,7 +271,7 @@ mpd_SOURCES += decoder/mad_plugin.c ...@@ -271,7 +271,7 @@ mpd_SOURCES += decoder/mad_plugin.c
endif endif
if HAVE_MPCDEC if HAVE_MPCDEC
mpd_SOURCES += decoder/mpc_plugin.c mpd_SOURCES += decoder/mpcdec_plugin.c
endif endif
if HAVE_WAVPACK if HAVE_WAVPACK
......
...@@ -265,7 +265,7 @@ static struct tag *mpcTagDup(const char *file) ...@@ -265,7 +265,7 @@ static struct tag *mpcTagDup(const char *file)
static const char *const mpcSuffixes[] = { "mpc", NULL }; static const char *const mpcSuffixes[] = { "mpc", NULL };
const struct decoder_plugin mpcPlugin = { const struct decoder_plugin mpcdec_decoder_plugin = {
.name = "mpc", .name = "mpc",
.stream_decode = mpc_decode, .stream_decode = mpc_decode,
.tag_dup = mpcTagDup, .tag_dup = mpcTagDup,
......
...@@ -33,7 +33,7 @@ extern const struct decoder_plugin oggflac_decoder_plugin; ...@@ -33,7 +33,7 @@ extern const struct decoder_plugin oggflac_decoder_plugin;
extern const struct decoder_plugin audiofilePlugin; extern const struct decoder_plugin audiofilePlugin;
extern const struct decoder_plugin mp4ff_decoder_plugin; extern const struct decoder_plugin mp4ff_decoder_plugin;
extern const struct decoder_plugin faad_decoder_plugin; extern const struct decoder_plugin faad_decoder_plugin;
extern const struct decoder_plugin mpcPlugin; extern const struct decoder_plugin mpcdec_decoder_plugin;
extern const struct decoder_plugin wavpack_plugin; extern const struct decoder_plugin wavpack_plugin;
extern const struct decoder_plugin modplug_plugin; extern const struct decoder_plugin modplug_plugin;
extern const struct decoder_plugin mikmod_decoder_plugin; extern const struct decoder_plugin mikmod_decoder_plugin;
...@@ -65,7 +65,7 @@ static const struct decoder_plugin *const decoder_plugins[] = { ...@@ -65,7 +65,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&mp4ff_decoder_plugin, &mp4ff_decoder_plugin,
#endif #endif
#ifdef HAVE_MPCDEC #ifdef HAVE_MPCDEC
&mpcPlugin, &mpcdec_decoder_plugin,
#endif #endif
#ifdef HAVE_WAVPACK #ifdef HAVE_WAVPACK
&wavpack_plugin, &wavpack_plugin,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment