summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wtaymans@redhat.com>2020-04-03 10:22:58 +0200
committerWim Taymans <wtaymans@redhat.com>2020-04-03 10:22:58 +0200
commita87337cae868d2e62d8da833a96fb83de8007d8c (patch)
treebbe217f16d1265c4b06915b86aacb687e28939ad
parent22e590c7cc8e28c4684392ba5cbb919b61b71c6f (diff)
neon: fix fallback
-rw-r--r--spa/plugins/audioconvert/fmt-ops-neon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/spa/plugins/audioconvert/fmt-ops-neon.c b/spa/plugins/audioconvert/fmt-ops-neon.c
index 77769614..e77fe959 100644
--- a/spa/plugins/audioconvert/fmt-ops-neon.c
+++ b/spa/plugins/audioconvert/fmt-ops-neon.c
@@ -244,7 +244,7 @@ conv_f32d_to_s16_1s_neon(void *data, void * SPA_RESTRICT dst, const void * SPA_R
#else
uint32_t n;
for(n = 0; n < n_samples; n++) {
- *d = F32_TO_S16(s0[n]);
+ *d = F32_TO_S16(s[n]);
d += n_channels;
}
#endif