Skip to content

Commit

Permalink
Add missing declaration of index variable in non-volk builds
Browse files Browse the repository at this point in the history
  • Loading branch information
BatchDrake committed Dec 10, 2024
1 parent 44b8392 commit a243d44
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/sigutils/smoothpsd.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ SU_METHOD(su_smoothpsd, SUBOOL, feed, const SUCOMPLEX *data, SUSCOUNT size)
volk_32fc_x2_multiply_32fc(self->fft, self->fft, self->window_func,
self->params.fft_size);
#else
unsigned int i;
for (i = 0; i < self->params.fft_size; ++i)
self->fft[i] *= self->window_func[i];
#endif
Expand Down

0 comments on commit a243d44

Please sign in to comment.