aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-03 16:48:12 +0100
committerMax Kellermann <max@duempel.org>2008-11-03 16:48:12 +0100
commitf70dccdce10f599be288431da166b5b09a53135c (patch)
treeb98d0b53a523e9a6402fc09ccc69eba41a8afbb8 /src/decoder_list.c
parent9074f924e9258e6801d96d7dbc8b9d525b7c6e2a (diff)
configure.ac: separate the "aac" and "mp4" decoder tests
MPD used to have a copy of the mp4ff library. Since that has been removed, AAC suport was disabled when there was no libmp4ff. Separate the libmp4ff test, and enable AAC support no matter if libmp4ff is available.
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r--src/decoder_list.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c
index 68c053c2..edd147f5 100644
--- a/src/decoder_list.c
+++ b/src/decoder_list.c
@@ -50,9 +50,11 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&audiofilePlugin,
#endif
#ifdef HAVE_FAAD
- &mp4Plugin,
&aacPlugin,
#endif
+#ifdef HAVE_MP4
+ &mp4Plugin,
+#endif
#ifdef HAVE_MPCDEC
&mpcPlugin,
#endif