ports/multimedia/libvpx/files/patch-vpx__ports_aarch32__cpudetect.c
2024-11-02 02:01:11 +01:00

40 lines
1.2 KiB
C

- Assume NEON is enabled on armv7
- Implement runtime detection on FreeBSD
--- vpx_ports/aarch32_cpudetect.c.orig 2024-10-23 18:24:57 UTC
+++ vpx_ports/aarch32_cpudetect.c
@@ -12,7 +12,7 @@
#include "./vpx_config.h"
#include "arm_cpudetect.h"
-#if !CONFIG_RUNTIME_CPU_DETECT
+#if !CONFIG_RUNTIME_CPU_DETECT || defined(__ARM_NEON)
static int arm_get_cpu_caps(void) {
// This function should actually be a no-op. There is no way to adjust any of
@@ -57,10 +57,24 @@ static int arm_get_cpu_caps(void) {
return flags;
}
-#elif defined(__linux__) // end defined(VPX_USE_ANDROID_CPU_FEATURES)
+#elif defined(__linux__) || defined(__FreeBSD__) // end defined(VPX_USE_ANDROID_CPU_FEATURES)
#include <sys/auxv.h>
+#if defined(__FreeBSD__)
+static unsigned long getauxval(unsigned long type)
+{
+ /* Only AT_HWCAP* return unsigned long */
+ if (type != AT_HWCAP && type != AT_HWCAP2) {
+ return 0;
+ }
+
+ unsigned long ret = 0;
+ elf_aux_info(type, &ret, sizeof(ret));
+ return ret;
+}
+#endif
+
// Define hwcap values ourselves: building with an old auxv header where these
// hwcap values are not defined should not prevent features from being enabled.
#define VPX_AARCH32_HWCAP_NEON (1 << 12)