FFmpeg-Builds/scripts.d/50-opencore-amr.sh

50 lines
983 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://git.code.sf.net/p/opencore-amr/code"
SCRIPT_COMMIT="7dba8c32238418ce0b316a852b2224df586ca896"
ffbuild_enabled() {
return 0
}
ffbuild_dockerdl() {
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" opencore
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR"/opencore
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
--enable-amrnb-encoder
--enable-amrnb-decoder
--disable-examples
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
}
ffbuild_configure() {
echo --enable-libopencore-amrnb --enable-libopencore-amrwb
}
ffbuild_unconfigure() {
echo --disable-libopencore-amrnb --disable-libopencore-amrwb
}