Skip to content

Commit

Permalink
Disable win32 for both shell scripts
Browse files Browse the repository at this point in the history
SVT-VP9 and SVT-HEVC are broken for win32 target.

- Martin Eesmaa
  • Loading branch information
MartinEesmaa committed Oct 23, 2024
1 parent 4d84209 commit 5a6de7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts.d/50-svthevc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
SCRIPT_REPO="https://github.com/OpenVisualCloud/SVT-HEVC"

ffbuild_enabled() {
[[ $TARGET == win32 ]] && return -1
[[ $TARGET == *arm64 ]] && return -1
return 0
}
Expand Down
1 change: 1 addition & 0 deletions scripts.d/50-svtvp9.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
SCRIPT_REPO="https://github.com/OpenVisualCloud/SVT-VP9"

ffbuild_enabled() {
[[ $TARGET == win32 ]] && return -1
[[ $TARGET == *arm64 ]] && return -1
return 0
}
Expand Down

0 comments on commit 5a6de7e

Please sign in to comment.