diff options
author | Max Kellermann <max@duempel.org> | 2009-02-16 19:30:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-16 19:30:54 +0100 |
commit | cafaf33aa89f7002522712e12e26a2565e6d832d (patch) | |
tree | dc63655d6a3a3dd2ff9d1b549921af918a6b1e30 /src/decoder | |
parent | c5edb53797fb15b4753688b1a653bdfda53f25aa (diff) | |
download | mpd-cafaf33aa89f7002522712e12e26a2565e6d832d.tar.gz mpd-cafaf33aa89f7002522712e12e26a2565e6d832d.tar.xz mpd-cafaf33aa89f7002522712e12e26a2565e6d832d.zip |
renamed decoder plugin "aac" to "faad"
A decoder plugin should be named after the library which is used.
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/faad_plugin.c (renamed from src/decoder/aac_plugin.c) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/aac_plugin.c b/src/decoder/faad_plugin.c index 694075415..15fbf030e 100644 --- a/src/decoder/aac_plugin.c +++ b/src/decoder/faad_plugin.c @@ -460,8 +460,8 @@ static struct tag *aacTagDup(const char *file) static const char *const aac_suffixes[] = { "aac", NULL }; static const char *const aac_mimeTypes[] = { "audio/aac", "audio/aacp", NULL }; -const struct decoder_plugin aacPlugin = { - .name = "aac", +const struct decoder_plugin faad_decoder_plugin = { + .name = "faad", .stream_decode = aac_stream_decode, .tag_dup = aacTagDup, .suffixes = aac_suffixes, |