fmt-ops: fix copy/paste error

This commit is contained in:
Wim Taymans 2020-03-30 11:02:13 -04:00
parent 527dc89365
commit 9b24a84ce6

View file

@ -257,7 +257,6 @@ conv_f32d_to_s16_neon(struct convert *conv, void * SPA_RESTRICT dst[], const voi
int16_t *d = dst[0];
uint32_t i = 0, n_channels = conv->n_channels;
for(; i + 1 < n_channels; i+=2)
for(; i + 1 < n_channels; i += 2)
conv_f32d_to_s16_2s_neon(conv, &d[i], &src[i], n_channels, n_samples);
for(; i < n_channels; i++)