FFmpeg-Builds/scripts.d/50-openh264.sh

54 lines
1.1 KiB
Bash
Raw Normal View History

2021-11-13 15:47:42 +00:00
#!/bin/bash
OPENH264_REPO="https://github.com/cisco/openh264.git"
2022-02-26 23:37:15 +00:00
OPENH264_COMMIT="cb2321f67c0347737353d53e7456001dca6f485b"
2021-11-13 15:47:42 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$OPENH264_REPO" "$OPENH264_COMMIT" openh264
cd openh264
local myconf=(
2021-11-14 13:49:36 +00:00
PREFIX="$FFBUILD_PREFIX"
BUILDTYPE=Release
DEBUGSYMBOLS=False
LIBDIR_NAME=lib
CC="$FFBUILD_CROSS_PREFIX"gcc
CXX="$FFBUILD_CROSS_PREFIX"g++
AR="$FFBUILD_CROSS_PREFIX"ar
2021-11-13 15:47:42 +00:00
)
2021-11-14 13:49:36 +00:00
if [[ $TARGET == win32 ]]; then
myconf+=(
OS=mingw_nt
ARCH=i686
)
elif [[ $TARGET == win64 ]]; then
myconf+=(
OS=mingw_nt
ARCH=x86_64
)
elif [[ $TARGET == linux64 ]]; then
2021-11-13 15:47:42 +00:00
myconf+=(
2021-11-14 13:49:36 +00:00
OS=linux
ARCH=x86_64
2021-11-13 15:47:42 +00:00
)
else
echo "Unknown target"
return -1
fi
2021-11-14 13:49:36 +00:00
make -j$(nproc) "${myconf[@]}" install-static
2021-11-13 15:47:42 +00:00
}
ffbuild_configure() {
echo --enable-libopenh264
}
ffbuild_unconfigure() {
echo --disable-libopenh264
}