No libffmpeg.so for command line arguments after creating FFMPEG for android

I followed the roman10 tutorial and the build ends just fine. But I have .so files for everything except ffmpeg.so (or I see it as libffmpeg.so in some examples). So I don’t know how to get it. Do I need to change the configuration parameter? I use the following settings:

#!/bin/bash
NDK=$HOME/Desktop/adt/android-ndk-r9
SYSROOT=$NDK/platforms/android-9/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64
function build_one
{
./configure \
    --prefix=$PREFIX \
    --enable-shared \
    --disable-static \
    --disable-doc \
    --disable-ffmpeg \
    --disable-ffplay \
    --disable-ffprobe \
    --disable-ffserver \
    --disable-avdevice \
    --disable-doc \
    --disable-symver \
    --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
    --target-os=linux \
    --arch=arm \
    --enable-cross-compile \
    --sysroot=$SYSROOT \
    --extra-cflags="-Os -fpic $ADDI_CFLAGS" \
    --extra-ldflags="$ADDI_LDFLAGS" \
    $ADDITIONAL_CONFIGURE_FLAG
make clean
make
make install
}
CPU=arm
PREFIX=$(pwd)/android/$CPU 
ADDI_CFLAGS="-marm"
build_one

Do I need libffmpeg.so to call command line arguments?

+4
source share
1 answer

"--disable-ffmpeg" , , . ffmpeg.c, , . libav * (, jni-...), , ffmpeg , .

+4

Source: https://habr.com/ru/post/1531226/


All Articles