web-dev-qa-db-ja.com

iOS5用のFFmpeg

誰かがiOS5SDKを使用してffmpegライブラリをコンパイルできましたか? 4.3 SDKを使用しているが、iOS5には何も使用していないスクリプトを見つけました。古いsdkとarmv7で構築されたライブラリはiOS5と互換性があると思います。

これが私が使おうとしているコマンドです:

./configure \ --cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc \ --as='gas-preprocessor.pl /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' \ --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk \ --extra-ldflags=-L/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/usr/lib/system \ --target-os=darwin \ --Arch=arm \ --cpu=cortex-a8 \ --extra-cflags='-Arch armv7' \ --extra-ldflags='-Arch armv7' \ --prefix=compiled/armv7 \ --enable-pic \ --enable-cross-compile \ --disable-armv5te \ --disable-ffmpeg \ --disable-ffplay \ --disable-ffserver \ --disable-ffprobe \ --disable-doc

また、次のようなスクリプトを使用してみました。

#!/bin/tcsh -f

if (! -d armv7) mkdir armv7
if (! -d lib) mkdir lib

rm armv7/*.a

make clean

./configure --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver --enable-cross-compile --Arch=arm --target-os=darwin --cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc --as='gas-preprocessor/gas-preprocessor.pl /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk --cpu=cortex-a8 --extra-cflags='-Arch armv7' --extra-ldflags='-Arch armv7' --enable-pic

make

mv libavcodec/libavcodec.a armv7/
mv libavdevice/libavdevice.a armv7/
mv libavformat/libavformat.a armv7/
mv libavutil/libavutil.a armv7/
mv libswscale/libswscale.a armv7/

rm lib/*.a

cp armv7/*.a lib/

また、llvm-gcc-4.2だけでなくgcc-4.2にも切り替えようとしました。ただし、以下のコメントに示されている「不明なオプション」エラーが発生します。

どんな情報でも素晴らしいと感謝します。

15
brad_roush

UPDATED:私が使用するスクリプトを使用するように回答を完全に変更しました。

また、gas-preprocessor.plからhttps://github.com/yuvi/gas-preprocessorをダウンロードし、パスに配置して実行可能にする必要があります。

次に、スクリプト(たとえば、make_for_iphone.sh)を作成し、次のように記述します。

export PLATFORM="iPhoneOS"
export MIN_VERSION="4.0"
export MAX_VERSION="5.0"
export DEVROOT=/Developer/Platforms/${PLATFORM}.platform/Developer
export SDKROOT=$DEVROOT/SDKs/${PLATFORM}${MAX_VERSION}.sdk
export CC=$DEVROOT/usr/bin/llvm-gcc
export LD=$DEVROOT/usr/bin/ld
export CPP=$DEVROOT/usr/bin/cpp
export CXX=$DEVROOT/usr/bin/llvm-g++
export AR=$DEVROOT/usr/bin/ar
export LIBTOOL=$DEVROOT/usr/bin/libtool
export NM=$DEVROOT/usr/bin/nm
export CXXCPP=$DEVROOT/usr/bin/cpp
export RANLIB=$DEVROOT/usr/bin/ranlib

COMMONFLAGS="-pipe -gdwarf-2 -no-cpp-precomp -isysroot ${SDKROOT} -marm -fPIC"
export LDFLAGS="${COMMONFLAGS} -fPIC"
export CFLAGS="${COMMONFLAGS} -fvisibility=hidden"
export CXXFLAGS="${COMMONFLAGS} -fvisibility=hidden -fvisibility-inlines-hidden"

FFMPEG_LIBS="libavcodec libavdevice libavformat libavutil libswscale"

echo "Building armv6..."

make clean
./configure \
    --cpu=arm1176jzf-s \
    --extra-cflags='-Arch armv6 -miphoneos-version-min=${MIN_VERSION} -mthumb' \
    --extra-ldflags='-Arch armv6 -miphoneos-version-min=${MIN_VERSION}' \
    --enable-cross-compile \
    --Arch=arm \
    --target-os=darwin \
    --cc=${CC} \
    --sysroot=${SDKROOT} \
    --prefix=installed \
    --disable-network \
    --disable-decoders \
    --disable-muxers \
    --disable-demuxers \
    --disable-devices \
    --disable-parsers \
    --disable-encoders \
    --disable-protocols \
    --disable-filters \
    --disable-bsfs \
    --enable-decoder=h264 \
    --enable-decoder=svq3 \
    --enable-gpl \
    --enable-pic \
    --disable-doc
Perl -pi -e 's/HAVE_INLINE_ASM 1/HAVE_INLINE_ASM 0/' config.h
make -j3

mkdir -p build.armv6
for i in ${FFMPEG_LIBS}; do cp ./$i/$i.a ./build.armv6/; done

echo "Building armv7..."

make clean
./configure \
    --cpu=cortex-a8 \
    --extra-cflags='-Arch armv7 -miphoneos-version-min=${MIN_VERSION} -mthumb' \
    --extra-ldflags='-Arch armv7 -miphoneos-version-min=${MIN_VERSION}' \
    --enable-cross-compile \
    --Arch=arm \
    --target-os=darwin \
    --cc=${CC} \
    --sysroot=${SDKROOT} \
    --prefix=installed \
    --disable-network \
    --disable-decoders \
    --disable-muxers \
    --disable-demuxers \
    --disable-devices \
    --disable-parsers \
    --disable-encoders \
    --disable-protocols \
    --disable-filters \
    --disable-bsfs \
    --enable-decoder=h264 \
    --enable-decoder=svq3 \
    --enable-gpl \
    --enable-pic \
    --disable-doc
Perl -pi -e 's/HAVE_INLINE_ASM 1/HAVE_INLINE_ASM 0/' config.h
make -j3

mkdir -p build.armv7
for i in ${FFMPEG_LIBS}; do cp ./$i/$i.a ./build.armv7/; done

mkdir -p build.universal
for i in ${FFMPEG_LIBS}; do lipo -create ./build.armv7/$i.a ./build.armv6/$i.a -output ./build.universal/$i.a; done

for i in ${FFMPEG_LIBS}; do cp ./build.universal/$i.a ./$i/$i.a; done

make install

これにより、armv6バージョンとarmv7バージョンの両方がコンパイルされ、lipoを使用してファットライブラリに配置されます。 installedという名前のスクリプトを実行する下のフォルダーにインストールされます。

現時点では、HAVE_INLINE_ASM1から0に変更するために、Perlインライン置換を使用してインラインアセンブリをオフにする必要があることに注意してください。これは、gas-preprocessor.pl -- https://github.com/yuvi/gas-preprocessor/issues/16 のこの問題が原因です。

また、これにより、H264デコーダーを除くすべてのエンコーダー、デコーダー、マルチプレクサー、デマルチプレクサーなどがオフになっていることに注意してください。構成行を変更するだけで、ユースケースに必要なものをコンパイルできます。

これによりGPLコードが有効になったことも忘れないでください。そのため、iPhoneアプリにとってそれが何を意味するのかを知っておく必要があります。あなたが気づいていないなら、あなたはそれについていくらか読むべきです。

17
mattjgalloway

これがiOS6でのクロスコンパイル用の設定FFmpegです。アーチはARMv7です。

注:/usr/local/bin/内に gas-preprocessor.pl が必要です gas-preprocessor.pl)ができるまで続行しないでください binディレクトリ

  • FFmpeg 1.0 "Angel"を ここ からダウンロード

  • 解凍して、どこかに配置します。つまり、Desktopフォルダです。

  • ターミナルを開き、unzipped FFmpeg folderを参照します

  • 次のコマンドをコピーして貼り付けます(しばらくお待ちください

./configure --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver --enable-cross-compile --Arch = arm --target-os = darwin --cc =/Applications/Xcode .app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc --as = 'gas-preprocessor/gas-preprocessor.pl/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc '-sysroot = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk --cpu = cortex-a8 --extra- cflags = '-Arch armv7' --extra-ldflags = '-Arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' --enable- pic --enable-decoder = rawvideo --disable-asm

  • 次に、ターミナルmakeで次のコマンドを入力します(もう少し待つ

  • 終了したら、ターミナルにSudo make installと入力します(もう一度待つ

  • /usr/local/libに移動して、焼きたてのarmv7ライブラリを見つけます

  • 楽しい!

アレックス

3
dalexsoto

https://github.com/ciphor/ffmpeg4ios で「ffmpeg4ios」プロジェクトを作成しました。これはiOS5.0で正常にコンパイルされます。確認できます。

1
ciphor