From 49e548e773759043e5f99eaa12cb91b5f0b93371 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 27 Mar 2009 19:58:50 +0100 Subject: [PATCH] mpcdec: changed plugin name to "mpcdec" The "mpcdec" plugin is based on the libmpcdec library. --- src/decoder/mpcdec_plugin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/decoder/mpcdec_plugin.c b/src/decoder/mpcdec_plugin.c index 6e92b6c0e..26349f93a 100644 --- a/src/decoder/mpcdec_plugin.c +++ b/src/decoder/mpcdec_plugin.c @@ -129,7 +129,7 @@ mpc_to_mpd_buffer(int32_t *dest, const MPC_SAMPLE_FORMAT *src, } 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 mpc_decoder decoder; @@ -353,8 +353,8 @@ mpcdec_tag_dup(const char *file) static const char *const mpcdec_suffixes[] = { "mpc", NULL }; const struct decoder_plugin mpcdec_decoder_plugin = { - .name = "mpc", - .stream_decode = mpc_decode, + .name = "mpcdec", + .stream_decode = mpcdec_decode, .tag_dup = mpcdec_tag_dup, .suffixes = mpcdec_suffixes, };