gpt4 book ai didi

android - 在 OSX 上为 Android 编译 ffmpeg

转载 作者:行者123 更新时间:2023-12-04 22:50:39 25 4
gpt4 key购买 nike

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

以下是我遵循的步骤:

1°) 编译 pkg-config

here 下载源代码.在 pkg-config 文件夹中提取 && cd。

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 下载源代码.在 ffmpeg 文件夹中提取 && cd。
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 和 B1 变量重命名为 A0 和 A1 来修复该错误(不知道为什么它解决了这个问题),但是它在其他地方失败了。我猜我的配置有问题,我宁愿避免修补源代码。

所以问题是:
  • 有人知道这里有什么问题吗?我需要给gcc一些参数吗?
  • --target-os=linux 是否正确,还是应该是--target-os=darwin? target-os 是完成编译的操作系统,还是将执行 ffmpeg 的操作系统?通过使用 darwin,我可以使用 --enable-static 进行编译,但不能使用 --enable-shared(我想要的)进行编译。

  • 注意:我需要自己编译它,因为我只想要一个支持 HTTPS 的 arm 版本。因此我不能使用现有的构建版本。

    最佳答案

    我在尝试构建最新版本的ffmpeg 3.4时也遇到了这个问题。希望您可以尝试3.3版本。我构建成功了。
    我怀疑最新版本不稳定并且有一些错误。
    顺便说一句,你可以通过这篇文章来回答:
    http://alientechlab.com/how-to-build-ffmpeg-for-android/

    关于android - 在 OSX 上为 Android 编译 ffmpeg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46847420/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com