From 5a6de7eee9d837e853b00ce265a492e17d61973a Mon Sep 17 00:00:00 2001 From: MartinEesmaa Date: Wed, 23 Oct 2024 20:31:30 +1100 Subject: [PATCH] Disable win32 for both shell scripts SVT-VP9 and SVT-HEVC are broken for win32 target. - Martin Eesmaa --- scripts.d/50-svthevc.sh | 1 + scripts.d/50-svtvp9.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/scripts.d/50-svthevc.sh b/scripts.d/50-svthevc.sh index aa482e9332..35d3b63ae0 100755 --- a/scripts.d/50-svthevc.sh +++ b/scripts.d/50-svthevc.sh @@ -3,6 +3,7 @@ SCRIPT_REPO="https://github.com/OpenVisualCloud/SVT-HEVC" ffbuild_enabled() { + [[ $TARGET == win32 ]] && return -1 [[ $TARGET == *arm64 ]] && return -1 return 0 } diff --git a/scripts.d/50-svtvp9.sh b/scripts.d/50-svtvp9.sh index 5f93bbe74c..70ee8eef83 100755 --- a/scripts.d/50-svtvp9.sh +++ b/scripts.d/50-svtvp9.sh @@ -3,6 +3,7 @@ SCRIPT_REPO="https://github.com/OpenVisualCloud/SVT-VP9" ffbuild_enabled() { + [[ $TARGET == win32 ]] && return -1 [[ $TARGET == *arm64 ]] && return -1 return 0 }