You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/opus/files/opus-1.4-arm64-neon.patch

25 lines
888 B

https://bugs.gentoo.org/904739
https://github.com/xiph/opus/issues/273
https://github.com/xiph/opus/pull/267
From d94583359bcf8f1b52cc93b7ca6ced9664fb2a7e Mon Sep 17 00:00:00 2001
From: Vilius <orion1vi@protonmail.com>
Date: Sun, 27 Nov 2022 03:13:09 +0200
Subject: [PATCH] Meson: Fix unknown variable have_arm_intrinsics_or_asm
--- a/silk/meson.build
+++ b/silk/meson.build
@@ -25,6 +25,11 @@ if host_cpu_family in ['x86', 'x86_64'] and opus_conf.has('OPUS_HAVE_RTCD')
silk_sources += sources['SILK_SOURCES_X86_RTCD']
endif
+have_arm_intrinsics_or_asm = have_arm_ne10
+if (intrinsics_support.length() + asm_optimization.length() + inline_optimization.length()) > 0
+ have_arm_intrinsics_or_asm = true
+endif
+
if host_cpu_family in ['arm', 'aarch64'] and have_arm_intrinsics_or_asm
if opus_conf.has('OPUS_HAVE_RTCD')
silk_sources += sources['SILK_SOURCES_ARM_RTCD']