comparison dsp/signalconditioning/Filter.cpp @ 209:ccd2019190bf msvc

Some MSVC fixes, including (temporarily, probably) renaming the FFT source file to avoid getting it mixed up with the Vamp SDK one in our object dir
author Chris Cannam
date Thu, 01 Feb 2018 16:34:08 +0000
parents ca658c7215a9
children fdaa63607c15
comparison
equal deleted inserted replaced
208:7eade513d470 209:ccd2019190bf
72 72
73 m_bufb.assign(m_bufb.size(), 0.0); 73 m_bufb.assign(m_bufb.size(), 0.0);
74 } 74 }
75 75
76 void 76 void
77 Filter::process(const double *const __restrict__ in, 77 Filter::process(const double *const QM_R__ in,
78 double *const __restrict__ out, 78 double *const QM_R__ out,
79 const int n) 79 const int n)
80 { 80 {
81 for (int s = 0; s < n; ++s) { 81 for (int s = 0; s < n; ++s) {
82 82
83 if (m_offb > 0) --m_offb; 83 if (m_offb > 0) --m_offb;