diff options
author | Wim Taymans <wtaymans@redhat.com> | 2020-04-03 10:22:58 +0200 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2020-04-03 10:22:58 +0200 |
commit | a87337cae868d2e62d8da833a96fb83de8007d8c (patch) | |
tree | bbe217f16d1265c4b06915b86aacb687e28939ad | |
parent | 22e590c7cc8e28c4684392ba5cbb919b61b71c6f (diff) |
neon: fix fallback
-rw-r--r-- | spa/plugins/audioconvert/fmt-ops-neon.c | 2 |
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 |