From: Fredrik Fornwall Date: Fri, 26 Aug 2016 09:45:36 +0000 (-0400) Subject: ffmpeg: Do not use libfaac encoder X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/aafa75a8bb00193fcbb1eac3fca45e57054d6512?ds=sidebyside ffmpeg: Do not use libfaac encoder The built-in ffmpeg AAC encoder is now recommended instead. --- diff --git a/packages/ffmpeg/build.sh b/packages/ffmpeg/build.sh index f439a007..cfd6409e 100644 --- a/packages/ffmpeg/build.sh +++ b/packages/ffmpeg/build.sh @@ -1,10 +1,11 @@ TERMUX_PKG_HOMEPAGE=https://www.ffmpeg.org/ TERMUX_PKG_DESCRIPTION="Tools and libraries to manipulate a wide range of multimedia formats and protocols" TERMUX_PKG_VERSION=3.1.2 +TERMUX_PKG_BUILD_REVISION=1 TERMUX_PKG_SRCURL=https://www.ffmpeg.org/releases/ffmpeg-${TERMUX_PKG_VERSION}.tar.xz TERMUX_PKG_FOLDERNAME=ffmpeg-$TERMUX_PKG_VERSION # libbz2 is used by matroska decoder: -TERMUX_PKG_DEPENDS="openssl, libbz2, libx264, xvidcore, libvorbis, libfaac, libmp3lame, liblzma" +TERMUX_PKG_DEPENDS="openssl, libbz2, libx264, xvidcore, libvorbis, libmp3lame, liblzma" TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="share/ffmpeg/examples" TERMUX_PKG_CONFLICTS="libav" @@ -40,7 +41,6 @@ termux_step_configure () { --enable-cross-compile \ --enable-gpl \ --enable-libmp3lame \ - --enable-libfaac \ --enable-libvorbis \ --enable-libx264 \ --enable-libxvid \