From 2b73b0eb7bdd3c9d9e964698513385ea3c32b33e Mon Sep 17 00:00:00 2001 From: MartinEesmaa Date: Sun, 20 Oct 2024 14:17:19 +1100 Subject: [PATCH] EVC features of aarch64 is broken --- scripts.d/50-xevd.sh | 1 + scripts.d/50-xeve.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/scripts.d/50-xevd.sh b/scripts.d/50-xevd.sh index 152e9e4f08..7294152994 100755 --- a/scripts.d/50-xevd.sh +++ b/scripts.d/50-xevd.sh @@ -3,6 +3,7 @@ SCRIPT_REPO="https://github.com/mpeg5/xevd" ffbuild_enabled() { + [[ $TARGET == *arm64 ]] && return -1 return 0 } diff --git a/scripts.d/50-xeve.sh b/scripts.d/50-xeve.sh index 53395e689e..fc36bbf34c 100755 --- a/scripts.d/50-xeve.sh +++ b/scripts.d/50-xeve.sh @@ -3,6 +3,7 @@ SCRIPT_REPO="https://github.com/mpeg5/xeve" ffbuild_enabled() { + [[ $TARGET == *arm64 ]] && return -1 return 0 }