FFmpeg-Builds/scripts.d/45-vmaf.sh

52 lines
1.1 KiB
Bash
Raw Permalink Normal View History

2020-09-06 15:33:21 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://github.com/Netflix/vmaf.git"
2023-07-08 15:37:10 +00:00
SCRIPT_COMMIT="98bdd77b296da207ab42c3113ec8f30de58db197"
2020-09-06 15:33:21 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
2020-09-06 15:33:21 +00:00
2021-04-25 19:36:29 +00:00
# Kill build of unused and broken tools
echo > libvmaf/tools/meson.build
2020-09-06 15:33:21 +00:00
mkdir build && cd build
local myconf=(
--prefix="$FFBUILD_PREFIX"
--buildtype=release
--default-library=static
2021-04-15 17:58:12 +00:00
-Dbuilt_in_models=true
2020-09-06 15:33:21 +00:00
-Denable_tests=false
-Denable_docs=false
-Denable_avx512=true
2021-04-15 17:58:12 +00:00
-Denable_float=true
2020-09-06 15:33:21 +00:00
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-06 15:33:21 +00:00
myconf+=(
--cross-file=/cross.meson
)
else
2020-09-06 15:33:21 +00:00
echo "Unknown target"
return -1
fi
meson "${myconf[@]}" ../libvmaf
ninja -j"$(nproc)"
ninja install
2021-02-19 21:43:09 +00:00
sed -i 's/Libs.private:/Libs.private: -lstdc++/; t; $ a Libs.private: -lstdc++' "$FFBUILD_PREFIX"/lib/pkgconfig/libvmaf.pc
2020-09-06 15:33:21 +00:00
}
ffbuild_configure() {
echo --enable-libvmaf
}
ffbuild_unconfigure() {
echo --disable-libvmaf
}