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

47 lines
942 B
Bash
Raw Normal View History

2020-09-19 22:46:24 +00:00
#!/bin/bash
2022-07-12 18:28:45 +00:00
SCRIPT_REPO="https://git.code.sf.net/p/opencore-amr/code"
SCRIPT_COMMIT="7ba9df63d310355f86cb594018fba999965c1388"
2020-09-19 22:46:24 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
2022-07-12 18:28:45 +00:00
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" opencore
2020-09-19 22:46:24 +00:00
cd 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
2020-09-19 22:46:24 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
2020-09-19 22:46:24 +00:00
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
}