diff --git a/scripts.d/50-openh264.sh b/scripts.d/50-openh264.sh new file mode 100755 index 0000000..f86ebc0 --- /dev/null +++ b/scripts.d/50-openh264.sh @@ -0,0 +1,46 @@ +#!/bin/bash + +OPENH264_REPO="https://github.com/cisco/openh264.git" +OPENH264_COMMIT="40913c2a3a10fa3b8dc9e7685214ba1bf19fd11b" + +ffbuild_enabled() { + return 0 +} + +ffbuild_dockerbuild() { + git-mini-clone "$OPENH264_REPO" "$OPENH264_COMMIT" openh264 + cd openh264 + + mkdir bdir && cd bdir + + local myconf=( + --prefix="$FFBUILD_PREFIX" + --buildtype=release + --default-library=static + -Dtests=disabled + ) + + if [[ $TARGET == win* || $TARGET == linux* ]]; then + myconf+=( + --cross-file=/cross.meson + ) + else + echo "Unknown target" + return -1 + fi + + meson "${myconf[@]}" .. + ninja -j$(nproc) + ninja install + + rm "$FFBUILD_PREFIX"/lib/libopenh264.dll.a + rm "$FFBUILD_PREFIX"/bin/libopenh264*.dll +} + +ffbuild_configure() { + echo --enable-libopenh264 +} + +ffbuild_unconfigure() { + echo --disable-libopenh264 +}