mpcdec: changed plugin name to "mpcdec"

The "mpcdec" plugin is based on the libmpcdec library.
This commit is contained in:
Max Kellermann 2009-03-27 19:58:50 +01:00
parent f5548a8654
commit 49e548e773

View File

@ -129,7 +129,7 @@ mpc_to_mpd_buffer(int32_t *dest, const MPC_SAMPLE_FORMAT *src,
} }
static void static void
mpc_decode(struct decoder *mpd_decoder, struct input_stream *is) mpcdec_decode(struct decoder *mpd_decoder, struct input_stream *is)
{ {
#ifdef MPC_IS_OLD_API #ifdef MPC_IS_OLD_API
mpc_decoder decoder; mpc_decoder decoder;
@ -353,8 +353,8 @@ mpcdec_tag_dup(const char *file)
static const char *const mpcdec_suffixes[] = { "mpc", NULL }; static const char *const mpcdec_suffixes[] = { "mpc", NULL };
const struct decoder_plugin mpcdec_decoder_plugin = { const struct decoder_plugin mpcdec_decoder_plugin = {
.name = "mpc", .name = "mpcdec",
.stream_decode = mpc_decode, .stream_decode = mpcdec_decode,
.tag_dup = mpcdec_tag_dup, .tag_dup = mpcdec_tag_dup,
.suffixes = mpcdec_suffixes, .suffixes = mpcdec_suffixes,
}; };