aboutsummaryrefslogtreecommitdiff
path: root/src/itx_1d.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/itx_1d.c')
-rw-r--r--src/itx_1d.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/itx_1d.c b/src/itx_1d.c
index 037c258..8f75c65 100644
--- a/src/itx_1d.c
+++ b/src/itx_1d.c
@@ -1016,7 +1016,10 @@ void dav1d_inv_identity32_1d_c(int32_t *const c, const ptrdiff_t stride,
c[stride * i] *= 4;
}
-#if !(HAVE_ASM && TRIM_DSP_FUNCTIONS && ARCH_AARCH64)
+#if !(HAVE_ASM && TRIM_DSP_FUNCTIONS && ( \
+ ARCH_AARCH64 || \
+ (ARCH_ARM && (defined(__ARM_NEON) || defined(__APPLE__) || defined(_WIN32))) \
+))
void dav1d_inv_wht4_1d_c(int32_t *const c, const ptrdiff_t stride) {
assert(stride > 0);
const int in0 = c[0 * stride], in1 = c[1 * stride];