diff options
author | Max Kellermann <max@duempel.org> | 2009-03-27 19:58:50 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-27 19:58:50 +0100 |
commit | 49e548e773759043e5f99eaa12cb91b5f0b93371 (patch) | |
tree | c433b802b5a6028ed21134937f311eacad35d384 /src/decoder | |
parent | f5548a86543fa0cc0c0cc114240c5aef30950706 (diff) | |
download | mpd-49e548e773759043e5f99eaa12cb91b5f0b93371.tar.gz mpd-49e548e773759043e5f99eaa12cb91b5f0b93371.tar.xz mpd-49e548e773759043e5f99eaa12cb91b5f0b93371.zip |
mpcdec: changed plugin name to "mpcdec"
The "mpcdec" plugin is based on the libmpcdec library.
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/mpcdec_plugin.c | 6 |
1 files 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, }; |