diff options
author | Max Kellermann <max@duempel.org> | 2008-11-03 16:48:12 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-03 16:48:12 +0100 |
commit | f70dccdce10f599be288431da166b5b09a53135c (patch) | |
tree | b98d0b53a523e9a6402fc09ccc69eba41a8afbb8 /src/decoder_list.c | |
parent | 9074f924e9258e6801d96d7dbc8b9d525b7c6e2a (diff) | |
download | mpd-f70dccdce10f599be288431da166b5b09a53135c.tar.gz mpd-f70dccdce10f599be288431da166b5b09a53135c.tar.xz mpd-f70dccdce10f599be288431da166b5b09a53135c.zip |
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 '')
-rw-r--r-- | src/decoder_list.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c index 68c053c2a..edd147f54 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 |