diff options
author | Max Kellermann <max@duempel.org> | 2013-01-28 20:43:01 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-28 21:32:14 +0100 |
commit | 88c17926e4b5d5d88025b62a84a8c83991f397ff (patch) | |
tree | e82bc9287a421599b0fb7e1fe3cf01409e3f8d27 /m4 | |
parent | 541192c9412398f0adbbaaa24c02875c49b63d72 (diff) | |
download | mpd-88c17926e4b5d5d88025b62a84a8c83991f397ff.tar.gz mpd-88c17926e4b5d5d88025b62a84a8c83991f397ff.tar.xz mpd-88c17926e4b5d5d88025b62a84a8c83991f397ff.zip |
decoder/mp4ff: delete obsolete plugin
The underlying library has been obsolete for many years.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/faad.m4 | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/m4/faad.m4 b/m4/faad.m4 index 1048c566c..7b5daabb1 100644 --- a/m4/faad.m4 +++ b/m4/faad.m4 @@ -158,40 +158,6 @@ int main() { CPPFLAGS=$oldcppflags fi -if test x$enable_aac = xyes; then - enable_mp4=yes - MP4FF_LIBS="-lmp4ff" - - oldcflags=$CFLAGS - oldlibs=$LIBS - oldcppflags=$CPPFLAGS - CFLAGS="$CFLAGS $FAAD_CFLAGS" - LIBS="$LIBS $FAAD_LIBS $MP4FF_LIBS" - CPPFLAGS=$CFLAGS - - AC_CHECK_HEADER(mp4ff.h,,enable_mp4=no) - - if test x$enable_mp4 = xyes; then - AC_CHECK_LIB(mp4ff,mp4ff_open_read,,enable_mp4=no) - fi - - if test x$enable_mp4 = xyes; then - AC_SUBST(MP4FF_LIBS) - AC_DEFINE(HAVE_MP4, 1, [Define to use FAAD2+mp4ff for MP4 decoding]) - else - AC_MSG_WARN([libmp4ff needed for MP4 support -- disabling MP4 support]) - unset MP4FF_LIBS - fi - - CFLAGS=$oldcflags - LIBS=$oldlibs - CPPFLAGS=$oldcppflags -else - enable_mp4=no - FAAD_CFLAGS="" - FAAD_LIBS="" -fi - AC_SUBST(FAAD_CFLAGS) AC_SUBST(FAAD_LIBS) |