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

48 lines
957 B
Bash
Raw Normal View History

2020-09-06 15:33:21 +00:00
#!/bin/bash
2020-09-27 14:17:47 +00:00
VMAF_REPO="https://github.com/Netflix/vmaf.git"
2021-04-03 23:09:54 +00:00
VMAF_COMMIT="e23732666b24792fee70afbb830b2f1805db30d6"
2020-09-06 15:33:21 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$VMAF_REPO" "$VMAF_COMMIT" vmaf
cd vmaf
mkdir build && cd build
local myconf=(
--prefix="$FFBUILD_PREFIX"
--buildtype=release
--default-library=static
-Denable_tests=false
-Denable_docs=false
-Denable_avx512=true
)
if [[ $TARGET == win* ]]; then
myconf+=(
--cross-file=/cross.meson
)
else
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
}