From 7d80f36576a764197c3438c29c4d7cc54c588408 Mon Sep 17 00:00:00 2001 From: BtbN Date: Fri, 28 Mar 2025 22:47:21 +0100 Subject: [PATCH] Latest libvvenc should be fixed --- scripts.d/50-vvenc.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/scripts.d/50-vvenc.sh b/scripts.d/50-vvenc.sh index fd32d80..77ab0b7 100755 --- a/scripts.d/50-vvenc.sh +++ b/scripts.d/50-vvenc.sh @@ -1,15 +1,12 @@ #!/bin/bash SCRIPT_REPO="https://github.com/fraunhoferhhi/vvenc.git" -SCRIPT_COMMIT="bde56fd61d5d6fcd8fac4bab0faa4da813928bb3" +SCRIPT_COMMIT="22de8fc9e1f5ab7c4ca1cef6cecf0d9d9e42ca9d" ffbuild_enabled() { [[ $TARGET != *32 ]] || return -1 (( $(ffbuild_ffver) > 700 )) || return -1 - # vvenc force-enabled avx2 and equivalent compiler options, and uses a static initializer that promptly - # runs such instructions. Making resulting binaries malfunction on any but the very latest CPUs. - # Until upstream fixes this behaviour, force-disable vvenc. - return -1 + return 0 } ffbuild_dockerbuild() {