mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-29 22:24:28 +02:00
52 lines
1.1 KiB
Bash
Executable File
52 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/Netflix/vmaf.git"
|
|
SCRIPT_COMMIT="71f0f8d2b60c2bfbae53719b84eae6a7ea89255a"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
# Kill build of unused and broken tools
|
|
echo > libvmaf/tools/meson.build
|
|
|
|
mkdir build && cd build
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--buildtype=release
|
|
--default-library=static
|
|
-Dbuilt_in_models=true
|
|
-Denable_tests=false
|
|
-Denable_docs=false
|
|
-Denable_avx512=true
|
|
-Denable_float=true
|
|
)
|
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
|
myconf+=(
|
|
--cross-file=/cross.meson
|
|
)
|
|
else
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
meson "${myconf[@]}" ../libvmaf || cat meson-logs/meson-log.txt
|
|
ninja -j"$(nproc)"
|
|
ninja install
|
|
|
|
sed -i 's/Libs.private:/Libs.private: -lstdc++/; t; $ a Libs.private: -lstdc++' "$FFBUILD_PREFIX"/lib/pkgconfig/libvmaf.pc
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
[[ $ADDINS_STR == *4.4* ]] && return 0
|
|
[[ $ADDINS_STR == *5.0* ]] && return 0
|
|
echo --enable-libvmaf
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-libvmaf
|
|
}
|