在OSX上为Android编译ffmpeg

时间:2017-10-20 10:40:34

标签: android macos ffmpeg compilation

我正在尝试在OSX 10.12.4上为Android编译ffmpeg。

以下是我遵循的步骤:

1°)编译pkg-config

here下载来源。提取物&& cd在pkg-config文件夹中。

export DST=/a/path/on/my/computer

./configure --with-internal-glib --prefix=$DST --exec-prefix=$DST
make -j2
make install

export PATH=$PATH:$DST/bin

2°)编译ffmpeg

here下载来源。提取物&& cd在ffmpeg文件夹中。

export NDK=/path/to/android-ndk-r15c
export PLATFORM_VERSION=android-26
export ARCH=arm
export PLATFORM=$NDK/platforms/$PLATFORM_VERSION/arch-$ARCH
export TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64

export PREFIX=$(pwd)/android/$ARCH

export ADDI_CFLAGS="-Os -fpic -marm"
export ADDI_CONFIGURE_FLAG=""
export ADDI_LDFLAGS=""

./configure \
  --prefix=$PREFIX \
  --enable-shared \
  --disable-static \
  --disable-doc \
  --disable-ffmpeg \
  --disable-ffplay \
  --disable-ffprobe \
  --disable-ffserver \
  --disable-symver \
  --disable-avdevice \
  \
  --pkg-config=pkg-config \
  \
  --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
  --target-os=linux \
  --arch=$ARCH \
  --enable-cross-compile \
  --sysroot=$PLATFORM \
  --extra-cflags="$ADDI_CFLAGS" \
  --extra-ldflags="$ADDI_LDFLAGS" \
  \
  $ADDI_CONFIGURE_FLAG

make -j2

失败并出现以下错误:

AR  libavfilter/libavfilter.a
AR  libavformat/libavformat.a
CC  libavcodec/aaccoder.o
In file included from /Users/Tim/Library/Android/android-ndk-r15c/platforms/android-26/arch-arm/usr/include/asm/termbits.h:19:0,
from /Users/Tim/Library/Android/android-ndk-r15c/platforms/android-26/arch-arm/usr/include/asm-generic/termios.h:21,
from /Users/Tim/Library/Android/android-ndk-r15c/platforms/android-26/arch-arm/usr/include/asm/termios.h:19,
from /Users/Tim/Library/Android/android-ndk-r15c/platforms/android-26/arch-arm/usr/include/linux/termios.h:22,
from /Users/Tim/Library/Android/android-ndk-r15c/platforms/android-26/arch-arm/usr/include/sys/ioctl.h:37,
from ./libavutil/timer.h:36,
from ./libavutil/internal.h:42,
from ./libavutil/common.h:467,
from libavcodec/mathops.h:27,
from libavcodec/aaccoder.c:38:
libavcodec/aaccoder.c: In function 'search_for_ms':
libavcodec/aaccoder.c:803:25: error: expected identifier or '(' before numeric constant
int B0 = 0, B1 = 0;
^
libavcodec/aaccoder.c:865:28: error: lvalue required as left operand of assignment
B0 += b1+b2;
^
libavcodec/aaccoder.c:866:25: error: 'B1' undeclared (first use in this function)
B1 += b3+b4;
^
libavcodec/aaccoder.c:866:25: note: each undeclared identifier is reported only once for each function it appears in
make: *** [libavcodec/aaccoder.o] Error 1
make: *** Waiting for unfinished jobs....

我可以通过重命名B0和amp;来解决这个错误。来源中的B1变量为A0& A1(不知道为什么它解决了这个问题),但随后在其他地方失败了。我猜我的配置有问题,我宁愿避免修改源代码。

所以问题是:

  • 有人知道这里有什么问题吗?我是否需要向gcc提供一些参数?
  • 是--target-os = linux正确,还是应该是--target-os = darwin? target-os是编译完成的OS,还是执行ffmpeg的地方?通过使用darwin,我可以使用--enable-static编译,但不能--enable-shared(我想要)。

注意:我需要自己编译,因为我只需要支持HTTPS的arm版本。因此,我无法使用现有的构建版本。

2 个答案:

答案 0 :(得分:0)

当我尝试构建最新版本的ffmpeg 3.4时,我也遇到了这个问题。我希望你能尝试3.3版本。我成功构建了它。 我怀疑最新版本是不稳定的,还有一些bug。 顺便说一句,你可以通过这篇文章得到一些答案: http://alientechlab.com/how-to-build-ffmpeg-for-android/

答案 1 :(得分:0)

Issue closed by FFmpeg team

--target-os=android 解决它

./configure \ 
... 
--target-os=android