1 TERMUX_PKG_HOMEPAGE=https://ffmpeg.org
2 TERMUX_PKG_DESCRIPTION="Tools and libraries to manipulate a wide range of multimedia formats and protocols"
3 # NOTE: mpv has to be rebuilt and version bumped after updating ffmpeg.
4 TERMUX_PKG_VERSION=3.2.4
6 TERMUX_PKG_SRCURL=https://www.ffmpeg.org/releases/ffmpeg-${TERMUX_PKG_VERSION}.tar.xz
7 TERMUX_PKG_SHA256=6e38ff14f080c98b58cf5967573501b8cb586e3a173b591f3807d8f0660daf7a
8 TERMUX_PKG_FOLDERNAME=ffmpeg-$TERMUX_PKG_VERSION
9 # libbz2 is used by matroska decoder:
10 # libvpx is the VP8 & VP9 video encoder for WebM, see
11 # https://trac.ffmpeg.org/wiki/Encode/VP8 and https://trac.ffmpeg.org/wiki/Encode/VP9
12 TERMUX_PKG_DEPENDS="openssl, libbz2, libx264, libx265, xvidcore, libvorbis, libmp3lame, libopus, libvpx"
13 TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="share/ffmpeg/examples"
14 TERMUX_PKG_CONFLICTS="libav"
16 termux_step_configure () {
17 cd $TERMUX_PKG_BUILDDIR
19 export ASFLAGS="-no-integrated-as"
21 local _EXTRA_CONFIGURE_FLAGS=""
22 if [ $TERMUX_ARCH = "arm" ]; then
24 _EXTRA_CONFIGURE_FLAGS="--enable-neon"
25 elif [ $TERMUX_ARCH = "i686" ]; then
27 # Specify --disable-asm to prevent text relocations on i686,
28 # see https://trac.ffmpeg.org/ticket/4928
29 _EXTRA_CONFIGURE_FLAGS="--disable-asm"
30 elif [ $TERMUX_ARCH = "x86_64" ]; then
32 elif [ $TERMUX_ARCH = "aarch64" ]; then
34 _EXTRA_CONFIGURE_FLAGS="--enable-neon"
36 termux_error_exit "Unsupported arch: $TERMUX_ARCH"
39 # --disable-lzma to avoid problem with shared library clashes, see
40 # https://github.com/termux/termux-packages/issues/511
41 # Only used for LZMA compression support for tiff decoder.
42 $TERMUX_PKG_SRCDIR/configure \
47 --cross-prefix=${TERMUX_HOST_PLATFORM}- \
53 --enable-cross-compile \
65 --prefix=$TERMUX_PREFIX \
67 $_EXTRA_CONFIGURE_FLAGS