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.
5 TERMUX_PKG_SRCURL=https://www.ffmpeg.org/releases/ffmpeg-${TERMUX_PKG_VERSION}.tar.xz
6 TERMUX_PKG_SHA256=599e7f7c017221c22011c4037b88bdcd1c47cd40c1e466838bc3c465f3e9569d
7 TERMUX_PKG_FOLDERNAME=ffmpeg-$TERMUX_PKG_VERSION
8 # libbz2 is used by matroska decoder:
9 # libvpx is the VP8 & VP9 video encoder for WebM, see
10 # https://trac.ffmpeg.org/wiki/Encode/VP8 and https://trac.ffmpeg.org/wiki/Encode/VP9
11 TERMUX_PKG_DEPENDS="openssl, libbz2, libx264, libx265, xvidcore, libvorbis, libmp3lame, libopus, libvpx"
12 TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="share/ffmpeg/examples"
13 TERMUX_PKG_CONFLICTS="libav"
15 termux_step_configure () {
16 cd $TERMUX_PKG_BUILDDIR
18 export ASFLAGS="-no-integrated-as"
20 local _EXTRA_CONFIGURE_FLAGS=""
21 if [ $TERMUX_ARCH = "arm" ]; then
23 _EXTRA_CONFIGURE_FLAGS="--enable-neon"
24 elif [ $TERMUX_ARCH = "i686" ]; then
26 # Specify --disable-asm to prevent text relocations on i686,
27 # see https://trac.ffmpeg.org/ticket/4928
28 _EXTRA_CONFIGURE_FLAGS="--disable-asm"
29 elif [ $TERMUX_ARCH = "x86_64" ]; then
31 elif [ $TERMUX_ARCH = "aarch64" ]; then
33 _EXTRA_CONFIGURE_FLAGS="--enable-neon"
35 termux_error_exit "Unsupported arch: $TERMUX_ARCH"
38 # --disable-lzma to avoid problem with shared library clashes, see
39 # https://github.com/termux/termux-packages/issues/511
40 # Only used for LZMA compression support for tiff decoder.
41 $TERMUX_PKG_SRCDIR/configure \
46 --cross-prefix=${TERMUX_HOST_PLATFORM}- \
52 --enable-cross-compile \
64 --prefix=$TERMUX_PREFIX \
66 $_EXTRA_CONFIGURE_FLAGS